/* ==============================================
   TheRawnak — Ultra Modern 2026
   Design: Organic Arch / Warm Stone / Editorial
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
    --bg: #F7F0E8;
    --bg2: #EFE6DA;
    --bg3: #E8DBCB;
    --white: #FFFFFF;
    --accent: #B8886F;
    --accent2: #9E7260;
    --accent-soft: rgba(184,136,111,0.12);
    --terra: #C4764E;
    --text: #2E2823;
    --text2: #5C524A;
    --text3: #9A8E84;
    --text4: #BFB5AB;
    --radius: 20px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.15;
}

em { font-family: 'Cormorant', serif; font-weight: 500; }

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

img { max-width: 100%; display: block; }

a { color: inherit; }

/* === TOPBAR MARQUEE === */
.topbar {
    background: var(--text);
    overflow: hidden;
    white-space: nowrap;
}

.topbar-marquee { overflow: hidden; }

.topbar-track {
    display: inline-flex;
    gap: 32px;
    align-items: center;
    animation: marquee 30s linear infinite;
    padding: 10px 0;
    font-family: 'Cormorant', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--bg);
    letter-spacing: 1px;
}

.topbar-sep { opacity: 0.3; font-size: 0.6rem; }

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

/* === NAV === */
.nav-main {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247,240,232,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease);
}

.nav-main.scrolled { background: rgba(247,240,232,0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.04); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--text);
}

.nav-logo-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 6px;
}

.nav-links { display: flex; gap: 36px; }

.nav-links a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text2);
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.nav-action-link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: var(--text2);
    transition: all 0.3s;
    background: none; border: none; cursor: pointer;
    font-size: 1.1rem;
}

.nav-action-link:hover { background: var(--accent-soft); color: var(--accent2); }

.nav-cart {
    position: relative;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: var(--text2);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.nav-cart:hover { background: var(--accent-soft); color: var(--accent2); }

.nav-cart-count {
    position: absolute;
    top: 2px; right: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

.nav-burger {
    width: 40px; height: 40px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 0;
}

.nav-burger span {
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-open .nav-burger span:first-child { transform: rotate(45deg) translate(2.5px,2.5px); }
.menu-open .nav-burger span:last-child { transform: rotate(-45deg) translate(2.5px,-2.5px); }

.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 90;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.menu-open .mobile-menu { opacity: 1; pointer-events: all; }

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--text);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-bg-arch {
    position: absolute;
    top: -10%; right: -5%;
    width: 55vw; height: 120%;
    background: var(--bg2);
    border-radius: 0 0 0 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-over {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-h1 em {
    color: var(--accent);
    font-family: 'Cormorant', serif;
    font-size: 1.15em;
    font-weight: 500;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text2);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    max-width: 500px;
    margin-left: auto;
}

.hero-mosaic-1 { grid-row: 1 / 3; align-self: center; }
.hero-mosaic-2 { grid-column: 2; }
.hero-mosaic-3 { grid-column: 2; }

.arch-frame {
    border-radius: 200px 200px var(--radius) var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg3);
}

.arch-frame picture { display: contents; }

.arch-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.7s var(--ease);
}

.arch-frame:hover img { transform: scale(1.06); }

.arch-frame--lg { max-width: 400px; }

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    z-index: 2;
}

.hero-scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text3);
}

.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* === BTN PILL === */
.btn-pill {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 14px 34px;
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    border-radius: var(--radius-pill);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.35s var(--ease);
    cursor: pointer;
}

.btn-pill:hover {
    background: var(--accent2);
    border-color: var(--accent2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184,136,111,0.3);
}

.btn-pill--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--text3);
}

.btn-pill--ghost:hover {
    border-color: var(--text);
    background: transparent;
    color: var(--text);
    box-shadow: none;
}

.btn-pill--dark {
    background: var(--text);
    border-color: var(--text);
    color: var(--bg);
}

.btn-pill--dark:hover {
    background: #1a1512;
    border-color: #1a1512;
    color: var(--bg);
}

.btn-pill--white {
    background: #fff;
    border-color: #fff;
    color: var(--text);
}

.btn-pill--full { width: 100%; }

/* === VALUES === */
.values-strip { padding: 4rem 0; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(0,0,0,0.03);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.value-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 0.8rem;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text2);
    line-height: 1.7;
}

/* === SECTIONS === */
.page-section { padding: 6rem 0; }

.section-collection { padding: 6rem 0; }

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 20px;
}

.section-tag::before, .section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px; height: 1px;
    background: var(--accent);
}

.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 0.5rem;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--text2);
    max-width: 500px;
    margin: 0 auto;
    font-style: italic;
}

/* === PRODUCT GRID === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-grid--full {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.product-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* === PRODUCT CARD === */
.pcard {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(0,0,0,0.03);
}

.pcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    border-color: transparent;
}

.pcard-img-link { display: block; text-decoration: none; }

.pcard-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg2);
}

.pcard-img-wrap picture { display: contents; }

.pcard-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s var(--ease);
}

.pcard:hover .pcard-img-wrap img { transform: scale(1.06); }

.pcard-tag {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 14px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
}

.pcard-tag--pack { background: var(--terra); }
.pcard-tag--oos { background: #b91c1c; }

.pcard-info { padding: 1.4rem 1.5rem; }

.pcard-cat {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

.pcard-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0.3rem 0;
}

.pcard-name a { text-decoration: none; transition: color 0.2s; }
.pcard-name a:hover { color: var(--accent); }

.pcard-desc {
    font-size: 0.84rem;
    color: var(--text2);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pcard-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.pcard-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.pcard-price small { font-size: 0.7rem; font-weight: 400; color: var(--text3); }

.pcard-add {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--text);
    color: var(--bg);
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--spring);
    font-size: 0.9rem;
}

.pcard-add:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

/* Category pills */
.cat-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cat-pill {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--text4);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text2);
    transition: all 0.3s;
}

.cat-pill:hover { border-color: var(--text); color: var(--text); }

.cat-pill.active {
    background: var(--text);
    border-color: var(--text);
    color: var(--bg);
}

/* === QUOTE === */
.quote-break {
    padding: 5rem 0;
    background: var(--bg2);
}

.quote-block {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--accent);
    opacity: 0.15;
    line-height: 0;
    position: absolute;
    top: -1rem; left: 50%;
    transform: translateX(-50%);
}

.quote-block p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.quote-block cite {
    display: block;
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

/* === PACKS === */
.section-packs { padding: 6rem 0; }

.packs-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pack-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s var(--ease);
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.pack-card-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.pack-card-img picture { display: contents; }

.pack-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s var(--ease);
}

.pack-card:hover .pack-card-img img { transform: scale(1.06); }

.pack-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46,40,35,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.pack-card:hover .pack-card-overlay { opacity: 1; }

.pack-card-body { padding: 1.5rem; }

.pack-card-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terra);
}

.pack-card-body h3 {
    font-size: 1.2rem;
    margin: 0.3rem 0 0.5rem;
}

.pack-card-body p {
    font-size: 0.85rem;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.pack-card-price {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
}

/* === STORY === */
.story-section { padding: 6rem 0; background: var(--bg2); }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text { max-width: 480px; }

.story-text p {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-text .btn-pill { margin-top: 0.5rem; }

/* === CTA === */
.cta-final {
    padding: 6rem 0;
    background: var(--text);
    color: var(--bg);
}

.cta-final h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--bg);
    margin-bottom: 0.8rem;
}

.cta-final p {
    color: var(--text4);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* === DETAIL === */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.detail-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg2);
}

.detail-img-frame picture { display: contents; }

.detail-img-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s var(--ease);
}

.detail-img-frame:hover img { transform: scale(1.03); }

/* === Gallery thumbnails === */
.detail-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.detail-thumb {
    flex: 0 0 auto;
    width: 72px;
    height: 88px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg2);
    cursor: pointer;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.detail-thumb picture { display: contents; }

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-thumb:hover {
    border-color: var(--accent-soft);
    transform: translateY(-2px);
}

.detail-thumb--active {
    border-color: var(--accent);
}

@media (max-width: 560px) {
    .detail-thumb { width: 60px; height: 74px; }
}

.detail-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 0.5rem; }

.detail-badge {
    padding: 4px 12px;
    background: var(--accent-soft);
    color: var(--accent2);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
}

.detail-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }

.detail-price-row { margin-bottom: 1.5rem; }

.detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent2);
}

.detail-desc {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.detail-spec {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg2);
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.detail-spec i { font-size: 1.1rem; color: var(--accent); }
.detail-spec small { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); }
.detail-spec span { font-size: 0.9rem; }

.detail-form { display: flex; gap: 12px; margin: 1.5rem 0; flex-wrap: wrap; }

.detail-qty {
    display: flex;
    border: 1.5px solid var(--text4);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.detail-qty button {
    width: 44px; height: 44px;
    background: none; border: none;
    font-size: 1.1rem; cursor: pointer;
    transition: background 0.2s;
}

.detail-qty button:hover { background: var(--bg2); }

.detail-qty input {
    width: 44px; text-align: center;
    border: none; background: none;
    font-weight: 600; font-size: 1rem;
}

.detail-qty input:focus { outline: none; }

.detail-form .btn-pill { flex: 1; min-width: 200px; }

.detail-trust {
    display: flex; gap: 16px;
    flex-wrap: wrap;
}

.detail-trust > div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg2);
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text2);
}

.detail-trust i { color: var(--accent); font-size: 1rem; }

.related-section { margin-top: 5rem; }
.related-title { font-size: 1.5rem; margin-bottom: 2rem; text-align: center; }

.crumbs {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 2.5rem;
    font-size: 0.82rem; color: var(--text3);
}

.crumbs a { text-decoration: none; transition: color 0.2s; }
.crumbs a:hover { color: var(--accent); }
.crumbs .current { color: var(--text); font-weight: 500; }

/* === CART === */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.cart-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cart-row-product { display: flex; align-items: center; gap: 16px; flex: 1; }

.cart-row-img {
    width: 80px; height: 80px;
    border-radius: var(--radius);
    object-fit: cover;
}

.cart-row-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 600; margin: 0;
}

.cart-row-dim { font-size: 0.78rem; color: var(--text3); }
.cart-row-price { font-weight: 500; min-width: 80px; }
.cart-row-total { font-weight: 700; min-width: 80px; }

.mini-qty {
    display: flex;
    border: 1.5px solid var(--text4);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.mini-qty button, .mini-qty span {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none;
    font-size: 0.85rem; cursor: pointer;
}

.mini-qty span { font-weight: 600; cursor: default; }

.cart-row-del {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(220,53,69,0.2);
    background: none; color: #dc3545;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.cart-row-del:hover { background: #dc3545; color: #fff; border-color: #dc3545; }

.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 100px;
}

.cart-summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.92rem;
    color: var(--text2);
}

.cart-summary-total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1.5px solid var(--text4);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

/* === CHECKOUT === */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.checkout-form label { font-size: 0.82rem; font-weight: 600; color: var(--text); }

.checkout-form .form-control, .checkout-form .form-select {
    border: 1.5px solid var(--text4);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.92rem;
    background: var(--white);
    transition: border-color 0.2s;
}

.checkout-form .form-control:focus, .checkout-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.pay-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 1.5rem; }

.pay-opt input { display: none; }

.pay-opt-box {
    border: 1.5px solid var(--text4);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.pay-opt-box i { display: block; font-size: 1.5rem; color: var(--text3); margin-bottom: 0.4rem; transition: color 0.3s; }
.pay-opt-box span { font-size: 0.78rem; font-weight: 600; }

.pay-opt input:checked + .pay-opt-box { border-color: var(--accent); background: var(--accent-soft); }
.pay-opt input:checked + .pay-opt-box i { color: var(--accent); }

.checkout-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 100px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.88rem;
}

.checkout-item img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.checkout-item small { display: block; color: var(--text3); }

.checkout-totals { margin-top: 1rem; }
.checkout-totals > div { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.88rem; color: var(--text2); }
.checkout-grand { font-size: 1.15rem; font-weight: 700; color: var(--text); padding-top: 0.8rem !important; margin-top: 0.5rem; border-top: 1.5px solid var(--text4); }

/* === CONFIRM === */
.confirm-wrap {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.confirm-check {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(25,135,84,0.1), rgba(25,135,84,0.05));
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem; color: #198754;
}

.confirm-sub { color: var(--text2); font-size: 1rem; margin-bottom: 2rem; }

.confirm-details {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
}

.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.confirm-grid small { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 2px; }

.confirm-details hr { border: none; height: 1px; background: rgba(0,0,0,0.06); margin: 1.2rem 0; }

.confirm-item { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.92rem; }
.confirm-item small { color: var(--text3); }
.confirm-total { font-weight: 700; font-size: 1.1rem; padding-top: 0.8rem !important; border-top: 1.5px solid var(--text4); margin-top: 0.5rem; color: var(--accent2); }

.confirm-payment-note {
    background: rgba(13,110,253,0.05);
    border: 1px solid rgba(13,110,253,0.12);
    border-radius: var(--radius);
    padding: 1.2rem;
    margin-top: 1.5rem;
    text-align: left;
    display: flex; gap: 12px;
    font-size: 0.88rem; color: var(--text2);
}

.confirm-payment-note i { color: #0d6efd; font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.confirm-payment-note p { margin: 0; }

.confirm-actions { display: flex; gap: 12px; justify-content: center; margin-top: 2rem; }

/* === TRACK === */
.narrow-wrap { max-width: 700px; margin: 0 auto; }

.track-search {
    display: flex; gap: 12px; margin-bottom: 2rem;
}

.track-search input {
    flex: 1;
    border: 1.5px solid var(--text4);
    border-radius: var(--radius-pill);
    padding: 14px 24px;
    font-size: 0.95rem;
    background: var(--white);
}

.track-search input:focus { outline: none; border-color: var(--accent); }

.track-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.track-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.track-header h3 { font-size: 1.4rem; margin: 0; }

.track-status {
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.track-status--pending { background: #e9ecef; color: #495057; }
.track-status--confirmed { background: #cfe2ff; color: #084298; }
.track-status--shipped { background: #cff4fc; color: #055160; }
.track-status--delivered { background: #d1e7dd; color: #0f5132; }
.track-status--cancelled { background: #f8d7da; color: #842029; }

.text-accent { color: var(--accent2); }

.track-bar {
    height: 4px;
    background: var(--bg2);
    border-radius: 4px;
    position: relative;
    margin-bottom: 1rem;
}

.track-bar-fill {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    background: var(--accent);
    border-radius: 4px;
    transition: width 0.8s var(--ease);
}

.track-steps { display: flex; justify-content: space-between; }

.track-step { text-align: center; }

.track-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--bg2);
    margin: 0 auto 6px;
    transition: all 0.3s;
}

.track-step.done .track-dot { background: var(--accent); }

.track-step span { font-size: 0.72rem; color: var(--text3); }
.track-step.done span { color: var(--text); font-weight: 600; }

/* === AUTH === */
.auth-wrap {
    max-width: 440px;
    margin: 0 auto;
}

.auth-wrap--wide { max-width: 560px; }

.auth-alt {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.88rem;
    color: var(--text2);
}

.auth-alt a { color: var(--accent); font-weight: 600; text-decoration: none; }

/* Social login buttons */
.auth-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--bg3);
    color: var(--text);
    background: var(--white);
}

.btn-social:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-1px);
}

.btn-social svg { flex-shrink: 0; }

/* Auth divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
    color: var(--text3);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bg3);
}

/* Auth options (remember + forgot) */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -0.5rem 0 0.5rem;
    font-size: 0.82rem;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text2);
    cursor: pointer;
}

.auth-remember input[type="checkbox"] {
    accent-color: var(--accent);
}

.auth-forgot {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.auth-forgot:hover { text-decoration: underline; }

/* Terms checkbox */
.auth-terms {
    margin: 0.5rem 0 1rem;
    font-size: 0.82rem;
    color: var(--text2);
}

.auth-terms label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.auth-terms input[type="checkbox"] {
    accent-color: var(--accent);
    margin-top: 3px;
}

.auth-terms a {
    color: var(--accent);
    text-decoration: underline;
}

/* Profile security */
.profile-action-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg2);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-size: 0.88rem;
    transition: all 0.3s;
}

.profile-action-link:hover {
    background: var(--bg3);
}

.profile-action-link i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* === PROFILE === */
.profile-header { display: flex; align-items: center; gap: 20px; margin-bottom: 3rem; }

.profile-avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 700;
    text-transform: uppercase;
}

.profile-name { font-size: 1.5rem; margin: 0; }
.profile-email { color: var(--text2); font-size: 0.88rem; margin: 0; }

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.profile-orders {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    position: sticky; top: 100px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
    transition: color 0.2s;
}

.order-row:hover { color: var(--accent); }
.order-row:last-child { border-bottom: none; }
.order-row small { color: var(--text3); }
.order-row-total { font-weight: 700; color: var(--accent2); }

/* === ALERTS === */
.alert-rawnak {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    position: relative;
    margin-bottom: 1rem;
}

.alert-success { background: #d1e7dd; color: #0f5132; }
.alert-danger { background: #f8d7da; color: #842029; }
.alert-warning { background: rgba(184,136,111,0.1); color: var(--accent2); }

.alert-close {
    position: absolute;
    top: 50%; right: 14px;
    transform: translateY(-50%);
    background: none; border: none;
    font-size: 1.2rem; cursor: pointer;
    opacity: 0.5;
}

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-state i { font-size: 3rem; color: var(--text4); margin-bottom: 1rem; display: block; }
.empty-state h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text2); margin-bottom: 1.5rem; }
.empty-state--sm { padding: 2rem; }
.empty-state--sm i { font-size: 2rem; }

/* === SCROLL REVEAL === */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal].in-view .hero-mosaic-1 { animation: fadeUp 0.8s 0.1s var(--ease) both; }
[data-reveal].in-view .hero-mosaic-2 { animation: fadeUp 0.8s 0.25s var(--ease) both; }
[data-reveal].in-view .hero-mosaic-3 { animation: fadeUp 0.8s 0.4s var(--ease) both; }

/* Cap the stagger at 8 positions max (0.64s) so cards further down
   in a long grid don't fall progressively out-of-sync with scroll. */
.pcard[data-reveal] { transition-delay: calc(min(var(--i, 0), 8) * 0.08s); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 6rem 0 3rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-bg-arch { display: none; }
    .hero-scroll-hint { display: none; }

    /* Hero mosaic → horizontal scroll strip */
    .hero-right { order: -1; }
    .hero-mosaic {
        display: flex;
        gap: 14px;
        max-width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 0 12px;
        scrollbar-width: none;
    }
    .hero-mosaic::-webkit-scrollbar { display: none; }
    .hero-mosaic-item {
        flex: 0 0 60%;
        scroll-snap-align: center;
    }
    .hero-mosaic-1 { grid-row: auto; }
    .hero-mosaic-2,
    .hero-mosaic-3 { grid-column: auto; }
    .arch-frame { aspect-ratio: 3/4; }

    .values-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .packs-showcase { grid-template-columns: 1fr; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .detail-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .profile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .product-grid { grid-template-columns: 1fr; }
    .product-grid--4 { grid-template-columns: 1fr 1fr; }
    .hero-mosaic-item { flex: 0 0 75%; }
    .cart-row { flex-wrap: wrap; gap: 12px; }
    .cart-row-price, .cart-row-total { min-width: auto; }
    .pay-options { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .confirm-grid { grid-template-columns: 1fr; }
    .hero-h1 { font-size: 2.5rem; }
}

/* === FOOTER === */
.site-footer {
    background: var(--text);
    color: rgba(247,240,232,0.5);
    position: relative;
    padding: 0 0 2rem;
}

/* Arch top edge — architectural curve like plaster walls */
.footer-arch-edge {
    height: 60px;
    background: var(--bg);
    border-radius: 0 0 50% 50%;
    margin-bottom: 0;
}

/* Brand statement */
.footer-brand {
    text-align: center;
    padding: 4.5rem 0 2.5rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--bg);
    display: block;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-ar-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.footer-ar-main {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 600;
    color: var(--accent);
    margin: 0;
    line-height: 1.8;
}

.footer-ar-sub {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--accent);
    margin: 0;
    line-height: 1.8;
}

/* Divider with diamond accent */
.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 3rem;
}

.footer-divider span {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Content area */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-nav {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
    flex: 1;
}

.footer-col h6 {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-col a, .footer-col span {
    display: block;
    font-family: 'Cormorant', serif;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    text-decoration: none;
    transition: color 0.3s, letter-spacing 0.3s;
}

.footer-col a:hover {
    color: var(--bg);
    letter-spacing: 0.5px;
}

.footer-col i {
    margin-right: 8px;
    color: rgba(184,136,111,0.4);
    font-size: 0.8rem;
}

/* Social block */
.footer-social-block {
    text-align: right;
    flex-shrink: 0;
}

.footer-social-block h6 {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255,255,255,0.02);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184,136,111,0.25);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: rgba(247,240,232,0.3);
}

.footer-bottom-sep {
    font-size: 0.5rem;
    opacity: 0.4;
}

/* Footer responsive */
@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-nav {
        justify-content: center;
        gap: 3rem;
    }
    .footer-social-block { text-align: center; }
    .footer-col a:hover { letter-spacing: normal; }
}

@media (max-width: 768px) {
    .footer-arch-edge { height: 40px; }
    .footer-brand { padding: 3rem 0 2rem; }
    .footer-nav { gap: 2rem; }
    .footer-content { padding: 2rem 0; }
}

@media (max-width: 576px) {
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }
}

/* === LIFESTYLE BANNER === */
.lifestyle-banner {
    padding: 0;
    overflow: hidden;
}

.lifestyle-img-wrap {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
}

.lifestyle-img-wrap picture { display: contents; }

.lifestyle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(46,40,35,0.6) 0%, rgba(46,40,35,0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.lifestyle-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--bg);
    margin-bottom: 0.5rem;
}

.lifestyle-overlay p {
    font-size: 1.05rem;
    color: rgba(247,240,232,0.7);
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 1.2rem;
}

/* === TEXTURE DIVIDER === */
.texture-divider {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.texture-divider picture { display: contents; }

.texture-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texture-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46,40,35,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
}

.texture-overlay h2 {
    font-family: 'Cormorant', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-style: italic;
    font-weight: 500;
    color: #fff;
}

.texture-overlay .section-tag::before,
.texture-overlay .section-tag::after {
    background: rgba(255,255,255,0.5);
}

/* === UNBOXING ROW === */
.unboxing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.unboxing-img {
    height: 100%;
    overflow: hidden;
}

.unboxing-img picture { display: contents; }

.unboxing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    transition: transform 0.6s var(--ease);
}

.unboxing-row:hover .unboxing-img img {
    transform: scale(1.04);
}

.unboxing-text {
    padding: 2.5rem 2.5rem 2.5rem 0;
}

.unboxing-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.unboxing-text p {
    font-size: 0.92rem;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.unboxing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.unboxing-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text2);
}

.unboxing-features i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
}

/* === FLAT LAY SECTION === */
.flatlay-section {
    padding: 4rem 0;
}

.flatlay-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease);
    min-height: 420px;
}

.flatlay-card:hover {
    box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}

.flatlay-card picture {
    display: block;
    height: 100%;
}

.flatlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

.flatlay-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flatlay-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.flatlay-content p {
    font-size: 0.92rem;
    color: var(--text2);
    line-height: 1.8;
}

/* === BEACH SECTION === */
.beach-section {
    padding: 6rem 0;
    background: var(--bg2);
}

.beach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.beach-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.beach-img picture { display: contents; }

.beach-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: transform 0.6s var(--ease);
}

.beach-img:hover img {
    transform: scale(1.03);
}

.beach-text {
    max-width: 460px;
}

.beach-text p {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 991px) {
    .lifestyle-img-wrap { height: 40vh; }
    .lifestyle-overlay { padding: 2rem; }
    .texture-divider { height: 200px; }
    .unboxing-row { grid-template-columns: 1fr; }
    .unboxing-text { padding: 2rem; }
    .flatlay-card { grid-template-columns: 1fr; }
    .beach-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 576px) {
    .lifestyle-overlay h2 { font-size: 1.6rem; }
    .texture-divider { height: 160px; }
}
