:root {
    --bg-color: #ece0cf;
    --text-color: #3b2f24;
    --clay-red: #8c5c36;
    --wood-light: #fff5e8;
    --wood-dark: #6a4329;
    --panel-bg: rgba(255,247,233,0.96);
}

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

body {
    background-color: var(--bg-color);
    background-image: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 12%), repeating-linear-gradient(180deg, rgba(59,44,31,0.03) 0 1px, transparent 1px 38px);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Navigation */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 3rem 5%; background: rgba(255,247,233,0.85); border-bottom: 1px solid rgba(140,92,54,0.14); backdrop-filter: blur(12px); position: relative; z-index: 1100; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; letter-spacing: 6px; color: var(--wood-dark); text-transform: uppercase; }
.logo-link { text-decoration: none; display: inline-flex; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { text-decoration: none; color: var(--text-color); font-size: 0.7rem; letter-spacing: 2px; }

/* THE HYBRID SCROLLER (Auto + Manual) */
.marquee-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    background: rgba(181, 155, 109, 0.05);
    margin-bottom: 3.5rem;
    padding: 2rem 0;
    cursor: grab;
    scrollbar-width: none;
}
.marquee-container::-webkit-scrollbar { display: none; }

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    /* This handles the autoscroll */
    animation: autoScroll 40s linear infinite;
}

/* Pause autoscroll when user interacts */
.marquee-container:hover .marquee-content,
.marquee-container:active .marquee-content {
    animation-play-state: paused;
}


.scroll-item {
    width: 280px;
    flex-shrink: 0;
    display: grid;
    gap: 1.2rem;
    text-align: left;
    background: linear-gradient(180deg, rgba(255,249,239,0.98), rgba(248,234,217,0.95));
    border: 1px solid rgba(140,92,54,0.18);
    border-radius: 32px;
    padding: 1rem;
    box-shadow: 0 24px 70px rgba(84,56,34,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    overflow: hidden;
    animation: floatCard 8s ease-in-out infinite alternate;
}
.scroll-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 44px 120px rgba(0,0,0,0.16);
    border-color: rgba(166,124,82,0.32);
    background: rgba(255,255,255,1);
}

.scroll-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    pointer-events: none;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), filter 0.6s ease;
}

.scroll-item h4 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #4b3b2d;
}

.scroll-code {
    margin-top: -0.6rem;
    font-size: 0.62rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(75,59,45,0.72);
}

.scroll-item:hover img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.05);
}

@keyframes autoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Gallery Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 60px; padding: 0 5% 5rem; }
.product-grid .product-card { opacity: 0; transform: translateY(28px); animation: cardReveal 0.85s ease forwards; }
.product-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.product-grid .product-card:nth-child(2) { animation-delay: 0.18s; }
.product-grid .product-card:nth-child(3) { animation-delay: 0.26s; }
.product-grid .product-card:nth-child(4) { animation-delay: 0.34s; }
.product-grid .product-card:nth-child(5) { animation-delay: 0.42s; }
.product-grid .product-card:nth-child(6) { animation-delay: 0.50s; }
.product-grid .product-card:nth-child(7) { animation-delay: 0.58s; }
.product-grid .product-card:nth-child(8) { animation-delay: 0.66s; }
.product-grid .product-card:nth-child(9) { animation-delay: 0.74s; }
.product-grid .product-card:nth-child(10) { animation-delay: 0.82s; }
.hero-model-section { position: relative; overflow: hidden; padding: 4rem 0 3rem; }
.hero-model-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255,243,223,0.18), transparent 35%), linear-gradient(180deg, rgba(255,247,235,0.92), rgba(239,226,207,0.8));
    pointer-events: none;
}
.hero-model-content { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; max-width: 1200px; margin: 0 auto; align-items: center; }
.hero-model-copy { position: relative; z-index: 1; padding: 1rem 0; }
.hero-model-copy .small-label { letter-spacing: 6px; text-transform: uppercase; color: var(--clay-red); font-size: 0.8rem; margin-bottom: 1rem; }
.hero-model-copy h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.02; margin: 0 0 1.2rem; }
.hero-model-copy p { max-width: 520px; opacity: 0.75; line-height: 1.8; }
.hero-model-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-model-visual img { width: 100%; max-width: 560px; border-radius: 28px; box-shadow: 0 32px 100px rgba(0,0,0,0.14); animation: heroFloat 12s ease-in-out infinite alternate; }
.story-page { padding: 5rem 5%; max-width: 1180px; margin: 0 auto; background: var(--panel-bg); border: 1px solid rgba(140,92,54,0.16); border-radius: 40px; box-shadow: 0 40px 120px rgba(90,56,32,0.1); backdrop-filter: blur(14px); position: relative; overflow: hidden; }
.story-page::before { content: ''; position: absolute; top: -40px; right: -40px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,232,209,0.4), transparent 60%); border-radius: 50%; pointer-events: none; }
.story-page::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(166,124,82,0.14), transparent 60%); border-radius: 50%; pointer-events: none; }
.story-header { max-width: 760px; margin: 0 auto 3rem; text-align: center; position: relative; }
.story-header::after { content: ''; width: 80px; height: 2px; background: rgba(166,124,82,0.8); display: block; margin: 1.5rem auto 0; }
.story-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 4vw, 3.8rem); line-height: 1.05; margin: 1rem 0 1.5rem; color: #3a2f25; }
.story-header .story-intro { max-width: 720px; margin: 0 auto; opacity: 0.78; line-height: 1.95; letter-spacing: 0.01em; }
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; position: relative; }
.story-copy { background: rgba(255,247,233,0.98); border: 1px solid rgba(140,92,54,0.14); border-radius: 32px; padding: 2.75rem; box-shadow: 0 30px 90px rgba(90,56,32,0.08); position: relative; z-index: 2; }
.story-copy p { color: rgba(61,61,61,0.82); line-height: 1.88; margin-bottom: 1.5rem; }
.story-copy p:last-child { margin-bottom: 2rem; }
.story-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.story-badges span { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1rem; border-radius: 999px; background: rgba(166,124,82,0.1); color: #5e4b3d; font-size: 0.9rem; letter-spacing: 0.02em; }
.story-highlights { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.story-highlights li { position: relative; padding-left: 1.4rem; color: rgba(61,61,61,0.82); font-size: 0.98rem; }
.story-highlights li::before { content: '•'; position: absolute; left: 0; top: 0.1rem; color: var(--clay-red); font-size: 1.3rem; line-height: 1; }
.story-images { display: grid; gap: 1.5rem; position: relative; }
.story-image { overflow: hidden; border-radius: 32px; position: relative; background: #fff; }
.story-image::before { content: ''; position: absolute; inset: 0; border-radius: 32px; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 55%); }
.story-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease, filter 0.7s ease; }
.story-image-large { min-height: 620px; transform: translate(40px, -56px); box-shadow: 0 40px 130px rgba(0,0,0,0.14); }
.story-image-stack { position: absolute; top: 6%; left: -8%; width: 46%; display: grid; gap: 1.5rem; z-index: 1; }
.story-image-small { min-height: 260px; box-shadow: 0 30px 90px rgba(0,0,0,0.12); }
.story-image-small.story-image-top { transform: translateY(0); }
.story-image-small.story-image-bottom { transform: translateY(1.5rem); }
.story-image:hover img { transform: scale(1.03); filter: saturate(1.05) contrast(1.02); }
.story-image-tag { position: absolute; bottom: 1rem; left: 1rem; padding: 0.75rem 1rem; border-radius: 999px; background: rgba(255,244,229,0.94); color: #4a3a2b; backdrop-filter: blur(12px); font-size: 0.95rem; letter-spacing: 0.02em; }
.story-image-tag.small { font-size: 0.85rem; padding: 0.65rem 0.9rem; }
@media (max-width: 1200px) {
    .story-image-large { transform: translateX(20px); }
    .story-image-stack { left: -4%; width: 46%; }
}
@media (max-width: 980px) {
    .story-grid { grid-template-columns: 1fr; }
    .story-image-large { min-height: 420px; transform: translateX(0); }
    .story-image-stack { position: static; width: 100%; transform: none; }
    .story-image-small.story-image-bottom { transform: translateY(0); }
}
.collections-page { padding: 4rem 5%; }
.collections-page .product-grid { max-width: 1340px; margin: 0 auto; gap: 48px; padding-top: 2rem; }
.collections-page .collections-intro { max-width: 980px; margin: 0 auto; padding: 0 0 2rem; }
.collections-page .collections-intro div { margin: 0 auto; }
.collections-page .product-card {
    min-height: 460px;
    background: rgba(255,249,239,0.92);
    border: 1px solid rgba(140,92,54,0.16);
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(80,52,30,0.1);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    position: relative;
}
.collections-page .product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(166, 124, 82, 0.12), rgba(255,255,255,0));
    pointer-events: none;
}
.collections-page .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 42px 110px rgba(0,0,0,0.16);
    border-color: rgba(166, 124, 82, 0.28);
    background: rgba(255,255,255,0.95);
}
.product-detail-page { padding: 4rem 5%; }
.product-detail-page .detail-back {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--clay-red);
    text-decoration: none;
    letter-spacing: 1px;
}
.product-detail-page .detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.12);
}
.detail-meta { padding: 0; }
.detail-meta .small-label { letter-spacing: 5px; text-transform: uppercase; color: var(--clay-red); font-size: 0.8rem; }
.detail-meta h2 { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; margin: 1rem 0; }
.detail-code {
    margin: -0.25rem 0 1rem;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(140,92,54,0.82);
}
.detail-description { margin: 1rem 0 1.5rem; opacity: 0.75; line-height: 1.8; }
.detail-price {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clay-red);
    border: 1px solid rgba(140,92,54,0.3);
    border-radius: 999px;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.detail-info-list { display: grid; gap: 0.9rem; margin-bottom: 1.8rem; }
.detail-info-list div { background: rgba(255,255,255,0.08); padding: 1rem 1.2rem; border-radius: 18px; }
.detail-option-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.detail-option-row div { background: rgba(255,255,255,0.08); padding: 1rem 1.2rem; border-radius: 18px; }
.detail-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(280px, 100%);
    padding: 1rem 1.4rem;
    background: var(--clay-red);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.8px;
}
.image-container { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 28px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35); }
.image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 35%);
    opacity: 0.7;
    pointer-events: none;
}
.image-container img { width: 100%; height: 100%; object-fit: cover; transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.secondary-img { position: absolute; top: 0; left: 0; opacity: 0; }
.product-card:hover .secondary-img { opacity: 1; }
.product-card:hover .primary-img { transform: scale(1.1); opacity: 0; }
.product-card:hover .image-container img { transform: scale(1.06) rotate(0.35deg); filter: saturate(1.05); }
.product-card:hover .info { transform: translateY(-6px); }
.product-card[data-page] { cursor: pointer; }

.info { padding: 20px 0; text-align: center; }
.info h3 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.5rem; }
.product-code {
    margin-top: 0.35rem;
    font-size: 0.68rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(106,67,41,0.78);
}
.price-enquire {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clay-red);
    border: 1px solid rgba(140,92,54,0.35);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
.product-card:hover .price-enquire { opacity: 1; }

/* Transitions */
.animate-in { animation: slideUpFade 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cardReveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFloat { from { transform: translateY(0px); } to { transform: translateY(-12px); } }
@keyframes floatCard { from { transform: translateY(0); } to { transform: translateY(-10px); } }
.home-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
    will-change: opacity, transform;
}
.home-section.visible {
    opacity: 1;
    transform: translateY(0);
}
.home-section + .home-section {
    margin-top: 4rem;
}
.footer { padding: 4rem; text-align: center; font-size: 0.6rem; letter-spacing: 3px; opacity: 0.5; }

.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 1rem 1.4rem;
    gap: 0.65rem;
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.95), rgba(247, 194, 142, 0.95));
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    box-shadow: 0 24px 70px rgba(166, 124, 82, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 80px rgba(166, 124, 82, 0.35);
    background: linear-gradient(135deg, rgba(166, 124, 82, 1), rgba(247, 194, 142, 1));
}

.whatsapp-float span {
    font-weight: 600;
}

.contact-page { padding: 4rem 5%; }
.contact-top { display: grid; grid-template-columns: minmax(300px, 1.5fr) minmax(280px, 1fr); gap: 2rem; margin-bottom: 3rem; }
.contact-map-panel,
.contact-info-panel,
.contact-card { background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(61, 61, 61, 0.1); backdrop-filter: blur(14px); border-radius: 30px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); }
.map-frame { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 24px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.contact-map-panel { padding: 1.5rem; }
.contact-info-panel { padding: 2rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.small-label { text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; color: var(--clay-red); margin-bottom: 1rem; }
.contact-info-panel h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.05; }
.contact-location { color: rgba(61, 61, 61, 0.75); line-height: 1.8; margin-bottom: 2rem; max-width: 28rem; }
.contact-link { color: var(--clay-red); text-decoration: none; font-weight: 600; letter-spacing: 0.05em; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.contact-card { padding: 2rem; min-height: 220px; display: flex; flex-direction: column; gap: 1rem; }
.contact-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(166, 124, 82, 0.12); color: var(--clay-red); font-size: 1.2rem; }
.contact-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-top: 0.5rem; }
.contact-card p { color: rgba(61, 61, 61, 0.75); line-height: 1.8; }
.contact-card a { margin-top: auto; color: var(--clay-red); text-decoration: none; font-weight: 600; }
@media (max-width: 900px) {
    .contact-top { grid-template-columns: 1fr; }
}

/* ─── Hamburger Button ─── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: 1px solid rgba(140,92,54,0.25);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--wood-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay when menu is open */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44,28,15,0.45);
    z-index: 999;
}
.nav-overlay.open { display: block; }

/* ─── Tablet (≤ 860px) ─── */
@media (max-width: 860px) {
    .navbar { padding: 1.4rem 5%; }

    .nav-hamburger { display: flex; }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100dvh;
        background: #fff7e9;
        border-left: 1px solid rgba(140,92,54,0.15);
        box-shadow: -20px 0 60px rgba(0,0,0,0.12);
        padding: 5rem 2rem 2rem;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        list-style: none;
    }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; border-bottom: 1px solid rgba(140,92,54,0.1); }
    .nav-links a {
        display: block;
        padding: 1.2rem 0;
        font-size: 0.85rem;
        letter-spacing: 3px;
        color: var(--text-color);
    }

    /* Hero section stacked */
    .hero-model-content { grid-template-columns: 1fr; text-align: center; padding: 0 5%; }
    .hero-model-copy p { max-width: 100%; }
    .hero-model-visual img { max-width: 420px; }

    /* Detail page stacked */
    .product-detail-page .detail-grid { grid-template-columns: 1fr; gap: 2rem; }
    .detail-meta h2 { font-size: 2.6rem; }

    /* Story grid already has its own 980px query, just reinforce */
    .story-page { padding: 3rem 4%; }
}

/* ─── Mobile (≤ 600px) ─── */
@media (max-width: 600px) {
    .navbar { padding: 1.2rem 4%; }
    .logo { font-size: 1.3rem; letter-spacing: 4px; }

    /* Marquee scroll items */
    .scroll-item { width: 210px; }
    .scroll-item img { height: 260px; }

    /* Product grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 0 4% 4rem;
    }
    .collections-page .product-grid { gap: 18px; padding-top: 1rem; }
    .collections-page .product-card { min-height: 0; border-radius: 20px; }
    .image-container { border-radius: 16px; }
    .info h3 { font-size: 1rem; }
    .product-code,
    .scroll-code,
    .detail-code { letter-spacing: 1.7px; }
    .product-code { font-size: 0.56rem; }
    .price-enquire { font-size: 0.58rem; letter-spacing: 1.5px; padding: 0.28rem 0.65rem; }

    /* Home gallery title */
    .home-section h1 { font-size: 2.5rem !important; }

    /* Hero */
    .hero-model-content { gap: 1.5rem; }
    .hero-model-copy h2 { font-size: 2rem; }
    .hero-model-visual img { max-width: 100%; border-radius: 20px; }

    /* Detail page */
    .product-detail-page { padding: 2rem 4%; }
    .detail-meta h2 { font-size: 2rem; }
    .detail-code { font-size: 0.62rem; }
    .detail-description { font-size: 0.88rem; }
    .detail-info-list div,
    .detail-option-row div { font-size: 0.85rem; padding: 0.8rem 1rem; }
    .detail-action { width: 100%; }
    .detail-price { font-size: 0.7rem; }

    /* Story page */
    .story-page { padding: 2.5rem 4%; border-radius: 24px; }
    .story-header h2 { font-size: 2rem; }
    .story-copy { padding: 1.8rem; border-radius: 20px; }

    /* WhatsApp float button */
    .whatsapp-float {
        min-width: 0;
        padding: 0.75rem 1.1rem;
        font-size: 0.82rem;
        right: 1rem;
        bottom: 1rem;
    }

    /* Contact */
    .contact-card { min-height: 0; }
    .contact-info-panel h2 { font-size: 2rem; }

    /* Footer */
    .footer { padding: 2.5rem 1rem; font-size: 0.55rem; }
}

/* ─── Very small screens (≤ 380px) ─── */
@media (max-width: 380px) {
    .product-grid { grid-template-columns: 1fr; }
    .logo { font-size: 1.1rem; letter-spacing: 3px; }
}
