:root {
    --color-bg: #f5e6d3;
    --color-bg-light: #faf3eb;
    --color-primary: #e8735a;
    --color-primary-dark: #d45a42;
    --color-secondary: #7cb342;
    --color-accent: #ff6b9d;
    --color-purple: #9c64a6;
    --color-blue: #4a90d9;
    --color-yellow: #f4c542;
    --color-green: #5a9e6f;
    --color-text: #4a3728;
    --color-text-light: #7a6555;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 230, 211, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-btn {
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245, 230, 211, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 100px 2rem 2rem;
    position: relative;
    overflow: hidden;
    background: url('../img/donfoinicio.png') center/cover no-repeat;
}




.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 120px);
}

.hero-left {
    padding: 2rem;
    text-align: left;
}

.hero-crown {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 200, 0, 0.8));
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: rgba(0, 0, 0, 0.6);
    color: #ff8c69;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-family: var(--font-title);
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #3d2b1f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
}

.highlight {
    color: #e8735a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #5a9e6f, #7cb342);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff8c69;
    font-size: 0.9rem;
}

.location-icon {
    width: 20px;
    height: 20px;
    color: #ff8c69;
}

/* Hero Center - Magic Box */
.hero-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-box-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.magic-box-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatBox 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(255, 200, 100, 0.9)) drop-shadow(0 0 80px rgba(255, 150, 50, 0.5));
}

@keyframes floatBox {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: #ffd700;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ffaa00;
}

.sparkle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; right: 20%; animation-delay: 0.3s; }
.sparkle:nth-child(3) { top: 50%; left: 10%; animation-delay: 0.6s; }
.sparkle:nth-child(4) { top: 40%; right: 15%; animation-delay: 0.9s; }
.sparkle:nth-child(5) { bottom: 30%; left: 25%; animation-delay: 1.2s; }
.sparkle:nth-child(6) { bottom: 25%; right: 25%; animation-delay: 1.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Hero Right */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-icon-box {
    width: 100px;
    height: 100px;
    background: rgba(139, 109, 71, 0.8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b9d, #e8735a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

.icon-circle::after {
    content: '';
    color: white;
    font-size: 1.5rem;
}

/* Hero Card */
.hero-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 280px;
    text-align: center;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-badge {
    background: #e8735a;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.card-header h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #3d2b1f;
}

.card-header p {
    color: #7a6555;
    font-size: 0.85rem;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-label {
    font-size: 0.75rem;
    color: #7a6555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.5rem;
    color: #e8735a;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #e8735a;
    font-family: var(--font-title);
}

.btn-primary {
    background: #5a9e6f;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #4a8e5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(90, 158, 111, 0.4);
}

.btn-secondary {
    background: #9c64a6;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: #8b5496;
    transform: translateY(-2px);
}

.merch-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.merch-item {
    width: 40px;
    height: 40px;
    background: var(--color-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.palm, .leaf {
    display: none;
}

.star {
    position: absolute;
    color: var(--color-yellow);
    font-size: 1.5rem;
    opacity: 0.5;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 { top: 15%; left: 20%; animation-delay: 0s; }
.star-2 { top: 30%; right: 25%; animation-delay: 0.5s; }
.star-3 { bottom: 20%; right: 15%; animation-delay: 1s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Boxes Map Section */
.boxes-map-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #f5e6d3 0%, #faf3eb 100%);
    position: relative;
    overflow: hidden;
}

.boxes-map-container{
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.map-subtitle {
    color: var(--color-text-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.map-scene{
    width: 100%;
    height: 100vh;

    background-image: url("../img/fondojhope.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}
/* River path */
.map-river {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 200px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffb6c1 20%, 
        #ff9eb5 40%, 
        #ff9eb5 60%, 
        #ffb6c1 80%, 
        transparent 100%);
    border-radius: 100px;
    opacity: 0.6;
}

.map-river::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 150px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffc0cb 20%, 
        #ffb0c0 40%, 
        #ffb0c0 60%, 
        #ffc0cb 80%, 
        transparent 100%);
    border-radius: 80px;
}

/* Center cabin */
.map-cabin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.cabin-roof {
    width: 80px;
    height: 40px;
    background: linear-gradient(135deg, #8b6f47, #6b5235);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    margin: 0 auto;
}

.cabin-body {
    width: 60px;
    height: 50px;
    background: linear-gradient(145deg, #a08060, #806040);
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
}

/* Map boxes */
.map-box {
    position: absolute;
    width: 120px;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 5;
}

.map-box:hover {
    transform: scale(1.1);
    z-index: 15;
}

.box-label {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.box-desc {
    font-size: 0.7rem;
    color: var(--color-text-light);
    margin-top: 0.3rem;
    line-height: 1.3;
}

/* Box positions and colors */
.pandora-box {
    top: 15%;
    left: 10%;
    background: linear-gradient(135deg, #ffe4e8, #ffd0d8);
    border: 2px solid #ff9eb5;
}

.dance-box {
    top: 15%;
    right: 10%;
    background: linear-gradient(135deg, #e4f0ff, #d0e4ff);
    border: 2px solid #9ec5ff;
}

.amazon-box {
    bottom: 30%;
    left: 8%;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border: 2px solid #9ec59e;
}

.art-box {
    bottom: 30%;
    right: 12%;
    background: linear-gradient(135deg, #f0e4ff, #e4d0ff);
    border: 2px solid #c59eff;
}

.hope-box {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fff8e4, #ffe8c0);
    border: 2px solid #ffc870;
}

.hope-box:hover {
    transform: translateX(-50%) scale(1.1);
}

/* Decorative leaves */
.map-leaf {
    position: absolute;
    width: 80px;
    height: 60px;
    opacity: 0.6;
    z-index: 2;
}

.leaf-tl {
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #9c64a6, #7cb342);
    border-radius: 0 50% 50% 50%;
    transform: rotate(-45deg);
}

.leaf-tr {
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #e8735a, #f4c542);
    border-radius: 50% 0 50% 50%;
    transform: rotate(45deg);
}

.leaf-bl {
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #4a90d9, #7cb342);
    border-radius: 50% 50% 50% 0;
    transform: rotate(135deg);
}

.leaf-br {
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ff6b9d, #9c64a6);
    border-radius: 50% 50% 0 50%;
    transform: rotate(-135deg);
}

/* Palms */
.map-palm {
    position: absolute;
    width: 30px;
    height: 50px;
    background: linear-gradient(135deg, #7cb342, #5a9e6f);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.4;
    z-index: 1;
}

.palm-1 { top: 25%; left: 25%; transform: rotate(-20deg); }
.palm-2 { top: 30%; right: 20%; transform: rotate(15deg); }
.palm-3 { bottom: 25%; left: 30%; transform: rotate(-10deg); }
.palm-4 { bottom: 20%; right: 25%; transform: rotate(25deg); }

/* Boat */
.map-boat {
    position: absolute;
    bottom: 15%;
    left: 20%;
    width: 40px;
    height: 15px;
    background: #8b6f47;
    border-radius: 0 0 20px 20px;
    z-index: 3;
}

.map-boat::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #6b5235;
}

/* Location tag */
.map-location {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.heart {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Box Detail Sections */
.box-detail-section {
    padding: 6rem 2rem;
    min-height: 80vh;
}

.box-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.box-detail-title {
    font-family: var(--font-title);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.box-detail-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.box-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail-tag {
    background: rgba(232, 115, 90, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.box-detail-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

/* Section Colors */
.pandora-section {
    background: linear-gradient(135deg, #fff5f7bb 0%, #ffe8ece1 100%);
}

.pandora-section .box-detail-title {
    color: var(--color-accent);
}

.dance-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4e8 100%);
}

.dance-section .box-detail-title {
    color: var(--color-blue);
}

.art-section {
    background: linear-gradient(135deg, #f8f0ff 0%, #ffe8f5 100%);
}

.art-section .box-detail-title {
    color: var(--color-purple);
}

.amazon-section {
    background: linear-gradient(135deg, #f0fff0 0%, #e8f5e8 100%);
}

.amazon-section .box-detail-title {
    color: var(--color-green);
}

.hope-section {
    background: linear-gradient(135deg, #fff8f0 0%, #fff0e0 100%);
}

.hope-section .box-detail-title {
    color: var(--color-primary);
}

/* Box 3D */
.box-3d {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(145deg, #8b6f47, #6b5235);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.box-3d::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.8;
}

.pandora-3d::before { background: radial-gradient(circle, var(--color-accent), var(--color-primary)); }
.dance-3d::before { background: radial-gradient(circle, var(--color-blue), var(--color-secondary)); }
.hope-3d::before { background: radial-gradient(circle, var(--color-yellow), var(--color-primary)); }

/* Art Categories */
.art-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.art-category {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.art-category:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 1.5rem;
}

/* Amazon Features */
.amazon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 1.5rem;
}

/* Hope Messages */
.hope-messages {
    margin: 2rem 0;
}

.hope-messages p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Merch Section */
.merch-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
}

.merch-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.merch-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.merch-tshirt {
    width: 150px;
    height: 180px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tshirt-design {
    text-align: center;
    font-weight: 700;
    color: var(--color-secondary);
}

.tshirt-design span {
    display: block;
    font-size: 0.8rem;
}

.tshirt-design span:first-child {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.merch-bag {
    width: 120px;
    height: 150px;
    background: var(--color-secondary);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bag-design {
    text-align: center;
    font-weight: 700;
    color: white;
}

.bag-design span {
    display: block;
    font-size: 0.7rem;
}

.bag-design span:first-child {
    font-size: 1.2rem;
}

.merch-keychain {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.keychain-flower {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 50%;
}

.merch-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-icon {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        order: 2;
    }

    .hero-center {
        order: 1;
    }

    .hero-right {
        order: 3;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-box-container {
        width: 300px;
        height: 300px;
    }

    .box-detail-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .box-detail-left {
        order: 2;
    }

    .box-detail-right {
        order: 1;
    }

    .merch-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .box-detail-title {
        font-size: 2rem;
    }

    .map-scene {
        height: 500px;
    }

    .map-box {
        width: 100px;
        padding: 0.8rem;
    }

    .box-label {
        font-size: 0.75rem;
    }

    .box-desc {
        font-size: 0.6rem;
    }

    .amazon-features {
        grid-template-columns: 1fr;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
