:root {
    --gold: #C4963A;
    --gold-light: #E8C97A;
    --gold-dark: #8B6520;
    --rose: #C97A8A;
    --rose-light: #F0BFCA;
    --rose-pale: #FAF0F2;
    --teal: #2D6B5A;
    --teal-light: #4A9680;
    --cream: #FBF5E9;
    --cream-dark: #F0E6CC;
    --cream-mid: #F5ECD7;
    --dark: #2A1F12;
    --dark-mid: #4A3828;
    --text: #3D2B18;
    --text-muted: #7A6252;
    --border: #DFC99A;
    --white: #FFFFFF;
    --font-display: 'Aref Ruqaa Ink', 'Cairo', serif;
    --font-body: 'Cairo', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 50px;
    --shadow-sm: 0 2px 12px rgba(42, 31, 18, .07);
    --shadow-md: 0 8px 30px rgba(42, 31, 18, .12);
    --shadow-lg: 0 20px 60px rgba(42, 31, 18, .18);
}

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

html {
    scroll-behavior: smooth
}

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

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

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

ul {
    list-style: none
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--cream-dark)
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    padding: .7rem 1.8rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gold);
    transition: all .3s;
    box-shadow: 0 4px 18px rgba(196, 150, 58, .3)
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196, 150, 58, .4)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dark-mid);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    padding: .7rem 1.8rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    transition: all .3s
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 245, 233, .96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm)
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem
}

.nav-links {
    display: flex;
    gap: 2rem
}

.nav-links a {
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    color: var(--dark-mid);
    position: relative;
    transition: color .2s
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width .3s
}

.nav-links a:hover {
    color: var(--gold)
}

.nav-links a:hover::after {
    width: 100%
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
    cursor: pointer
}

.logo-svg {
    width: 54px;
    height: 54px;
    filter: drop-shadow(0 2px 6px rgba(196, 150, 58, .25))
}

.logo-text {
    text-align: center
}

.logo-ar {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    letter-spacing: .03em
}

.logo-sub {
    display: block;
    font-size: .62rem;
    color: var(--gold);
    letter-spacing: .14em;
    margin-top: 2px;
    font-weight: 600
}

.nav-actions {
    display: flex;
    gap: .6rem;
    align-items: center
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
    color: var(--dark-mid);
    transition: all .2s;
    position: relative
}

.icon-btn svg {
    width: 18px;
    height: 18px
}

.icon-btn:hover {
    background: var(--rose-light);
    color: var(--rose)
}

.badge {
    position: absolute;
    top: -4px;
    left: -4px;
    background: var(--rose);
    color: white;
    font-size: .6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    overflow: hidden
}

.hero-bg-motif {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    pointer-events: none;
    opacity: .5
}

.hero-bg-motif svg {
    width: 100%;
    height: 100%
}

.hero-content {
    flex: 1;
    max-width: 500px;
    animation: slideInRight .9s ease both
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .82rem;
    color: var(--gold);
    letter-spacing: .12em;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.eyebrow-line {
    flex: 1;
    max-width: 50px;
    height: 1px;
    background: var(--gold);
    opacity: .5
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 10vw, 7.5rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .05em;
    animation: slideInRight .9s ease both .08s
}

.hero-title .line2 {
    color: var(--gold)
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 2.2;
    margin-bottom: 2.5rem;
    animation: fadeIn .8s ease both .2s
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeIn .8s ease both .3s
}

.hero-visual {
    flex: 1;
    max-width: 440px;
    position: relative;
    animation: slideInLeft .9s ease both .12s
}

.hero-frame {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 10px;
    background: linear-gradient(135deg, var(--gold-light), var(--cream-dark), var(--rose-light))
}

.frame-corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: var(--gold-dark);
    border-style: solid
}

.fc-tl {
    top: -2px;
    right: -2px;
    border-width: 3px 3px 0 0;
    border-radius: 0 6px 0 0
}

.fc-tr {
    top: -2px;
    left: -2px;
    border-width: 3px 0 0 3px;
    border-radius: 6px 0 0 0
}

.fc-bl {
    bottom: -2px;
    right: -2px;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 6px 0
}

.fc-br {
    bottom: -2px;
    left: -2px;
    border-width: 0 0 3px 3px;
    border-radius: 0 0 0 6px
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s
}

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

.img-overlay-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 31, 18, .3) 0%, transparent 60%);
    pointer-events: none
}

.hero-tag-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: var(--white);
    color: var(--rose);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .82rem;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-md)
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border);
    animation: floatBadge 3s ease-in-out infinite
}

.fb1 {
    bottom: 24px;
    right: -28px
}

.fb2 {
    top: 50px;
    left: -28px;
    animation-delay: 1.5s
}

.fb-num {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold)
}

.fb-label {
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: 2px
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.marquee-bar {
    background: var(--gold);
    overflow: hidden;
    padding: 11px 0;
    white-space: nowrap
}

.marquee-track {
    display: inline-flex;
    gap: 2.5rem;
    animation: marquee 22s linear infinite
}

.mq-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em
}

.mq-sep {
    width: 5px;
    height: 5px;
    background: var(--white);
    border-radius: 50%;
    opacity: .6;
    flex-shrink: 0
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 4rem auto;
    padding: 0 2rem
}

.feat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.feat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--rose));
    transform: scaleX(0);
    transition: transform .3s
}

.feat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px)
}

.feat-card:hover::after {
    transform: scaleX(1)
}

.feat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--cream-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold)
}

.feat-icon svg {
    width: 22px;
    height: 22px
}

.feat-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .4rem
}

.feat-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.9
}

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

.ornament-line {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem
}

.ornament-line svg {
    width: 220px
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem
}

.section-sub {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.9
}

.products {
    max-width: 1280px;
    margin: 2rem auto 5rem;
    padding: 0 2rem
}

.tabs {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap
}

.tab {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    padding: .45rem 1.3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    color: var(--text-muted);
    background: transparent;
    transition: all .25s
}

.tab:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(196, 150, 58, .3)
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--cream-dark);
    transition: all .35s;
    box-shadow: var(--shadow-sm);
    cursor: pointer
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px)
}

.prod-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--cream-mid)
}

.prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.product-card:hover .prod-img-wrap img {
    transform: scale(1.05)
}

.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center
}

.placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    pointer-events: none
}

.placeholder-inner p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: .85rem;
    font-weight: 500
}

.prod-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px
}

.badge-teal {
    background: var(--teal)
}

.badge-rose {
    background: var(--rose)
}

.prod-wish {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all .2s;
    opacity: 0
}

.product-card:hover .prod-wish {
    opacity: 1
}

.prod-wish:hover {
    color: var(--rose);
    transform: scale(1.1)
}

.prod-wish svg {
    width: 15px;
    height: 15px
}

.prod-info {
    padding: 1.1rem 1.2rem 1.3rem
}

.prod-cat-label {
    font-size: .72rem;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: .07em;
    margin-bottom: .3rem;
    text-transform: uppercase
}

.prod-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
    line-height: 1.3
}

.prod-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: .9rem;
    flex-wrap: wrap
}

.price-new {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-dark)
}

.price-old {
    font-family: var(--font-body);
    font-size: .85rem;
    color: var(--text-muted);
    text-decoration: line-through
}

.price-badge {
    background: var(--rose-pale);
    color: var(--rose);
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid var(--rose-light)
}

.add-cart-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    justify-content: center;
    background: var(--cream-mid);
    color: var(--dark-mid);
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border);
    transition: all .25s
}

.add-cart-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold)
}

.add-cart-btn svg {
    flex-shrink: 0
}

.view-all-wrap {
    text-align: center;
    margin-top: 2.5rem
}

.about {
    position: relative;
    background: var(--dark);
    padding: 6rem 2rem;
    overflow: hidden
}

.about-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 15% 50%, rgba(196, 150, 58, .08), transparent 50%), radial-gradient(circle at 85% 20%, rgba(201, 122, 138, .07), transparent 40%)
}

.about-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%), repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
    background-size: 28px 28px
}

.about-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem
}

.about-visual {
    position: relative;
    flex: 1;
    max-width: 400px
}

.about-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(196, 150, 58, .25);
    box-shadow: 0 0 50px rgba(196, 150, 58, .12)
}

.about-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center top;
    filter: sepia(8%) contrast(1.04)
}

.about-stat-card {
    position: absolute;
    border-radius: var(--radius-md);
    padding: .9rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
    background: var(--gold);
    color: var(--white);
    bottom: -18px;
    right: -22px
}

.sc2 {
    bottom: auto;
    top: -18px;
    right: auto;
    left: -22px;
    background: var(--rose)
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700
}

.stat-label {
    font-size: .72rem;
    opacity: .9
}

.about-text {
    flex: 1
}

.about-eyebrow {
    font-size: .82rem;
    color: var(--gold);
    letter-spacing: .18em;
    font-weight: 700;
    margin-bottom: 1rem
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem
}

.about-divider {
    margin-bottom: 1.5rem
}

.about-divider svg {
    width: 130px
}

.about-body {
    font-size: .97rem;
    color: rgba(255, 255, 255, .72);
    line-height: 2.3;
    margin-bottom: 1rem
}

.about-body strong {
    color: var(--gold);
    font-weight: 700
}

.about-body em {
    color: var(--rose-light);
    font-style: normal
}

.about-tags {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem
}

.about-tags span {
    background: rgba(196, 150, 58, .12);
    border: 1px solid rgba(196, 150, 58, .3);
    color: var(--gold-light);
    font-size: .78rem;
    padding: 4px 12px;
    border-radius: 18px
}

.wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 13px 20px 13px 16px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 700;
    transition: all .3s;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .2)
}

.wa-float:hover {
    background: #1ebe5d;
    box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
    transform: translateY(-3px) scale(1.03)
}

.wa-float-label {
    white-space: nowrap
}

.wa-float-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50px;
    border: 2px solid #25D366;
    opacity: 0;
    animation: waPulse 2.5s ease-out infinite
}

@keyframes waPulse {
    0% {
        opacity: .7;
        transform: scale(1)
    }

    100% {
        opacity: 0;
        transform: scale(1.25)
    }
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .75);
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 0
}

.footer-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
    background-size: 22px 22px
}

.footer-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white)
}

.footer-logo-sub {
    font-size: .6rem;
    color: var(--gold);
    letter-spacing: .12em;
    margin-top: 2px
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(196, 150, 58, .25)
}

.footer-links a {
    display: block;
    font-size: .87rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: .55rem;
    transition: color .2s, padding-right .2s
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-right: 5px
}

.social-links {
    display: flex;
    gap: .65rem;
    margin-bottom: 1rem
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    transition: all .2s
}

.social-link svg {
    width: 17px;
    height: 17px
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px)
}

.wa-social:hover {
    background: #25D366;
    border-color: #25D366
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .87rem;
    color: rgba(255, 255, 255, .55)
}

.footer-bottom {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(196, 150, 58, .18);
    padding: 1.4rem 0;
    text-align: center;
    font-size: .82rem;
    color: rgba(255, 255, 255, .35)
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all .35s;
    backdrop-filter: blur(4px)
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible
}

.product-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 480px;
    max-width: 95vw;
    height: 100%;
    background: var(--white);
    z-index: 201;
    transform: translateX(-100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    box-shadow: 8px 0 40px rgba(0, 0, 0, .2)
}

.product-drawer.open {
    transform: translateX(0)
}

.drawer-close {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    width: 100%;
    padding: 14px 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    align-items: center;
    gap: 8px;
    color: var(--dark-mid);
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color .2s
}

.drawer-close:hover {
    color: var(--rose)
}

.drawer-body {
    padding: 0 1.4rem 2rem
}

.drawer-main-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    margin-bottom: .8rem;
    background: var(--cream-mid)
}

.drawer-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .2s
}

.drawer-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 1.5rem
}

.thumb {
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .2s;
    background: var(--cream-mid)
}

.thumb.active {
    border-color: var(--gold)
}

.thumb:hover {
    border-color: var(--gold-light)
}

.drawer-cat-label {
    font-size: .72rem;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: .4rem
}

.drawer-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem
}

.drawer-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .5rem
}

.drawer-price-new {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark)
}

.drawer-price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through
}

.drawer-discount-badge {
    background: var(--rose-pale);
    color: var(--rose);
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 14px;
    border: 1px solid var(--rose-light)
}

.drawer-divider {
    height: 1px;
    background: var(--border);
    margin: 1.2rem 0
}

.drawer-desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 1.5rem
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.drawer-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    padding: .85rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gold);
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(196, 150, 58, .3)
}

.drawer-add-cart:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark)
}

.drawer-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: transparent;
    color: #25D366;
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 700;
    padding: .8rem;
    border-radius: var(--radius-xl);
    border: 2px solid #25D366;
    transition: all .25s;
    text-decoration: none
}

.drawer-whatsapp:hover {
    background: #25D366;
    color: var(--white)
}

.toast {
    position: fixed;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    padding: .7rem 1.8rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.toast.show {
    transform: translateX(-50%) translateY(0)
}

@media(max-width:1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr
    }

    .features {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .hero {
        flex-direction: column-reverse;
        padding: 1.5rem 1.2rem 2rem;
        min-height: auto;
        text-align: center;
        gap: 2rem
    }

    .hero-content {
        max-width: 100%;
        order: 2
    }

    .hero-eyebrow {
        justify-content: center
    }

    .hero-title {
        font-size: 3.8rem;
        align-items: center;
        line-height: 1.15
    }

    .hero-desc {
        font-size: .95rem;
        line-height: 2;
        margin-bottom: 1.8rem
    }

    .hero-actions {
        justify-content: center;
        gap: .8rem
    }

    .hero-visual {
        max-width: 100%;
        width: 100%;
        order: 1;
        padding: 0 1.5rem
    }

    .hero-img {
        height: 280px
    }

    .fb1,
    .fb2 {
        display: none
    }

    .hero-bg-motif {
        width: 320px;
        height: 320px
    }

    .nav-links {
        display: none
    }

    .nav-inner {
        padding: 0 1rem
    }

    .about-inner {
        flex-direction: column;
        gap: 3rem
    }

    .about-visual {
        max-width: 100%;
        width: 100%
    }

    .about-stat-card.sc2 {
        display: none
    }

    .about-img {
        height: 300px
    }

    .about {
        padding: 4rem 1.2rem
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer {
        padding-top: 3rem
    }

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

    .prod-img-wrap {
        height: 180px
    }

    .placeholder-inner svg {
        width: 32px;
        height: 32px
    }

    .placeholder-inner p {
        font-size: .75rem
    }

    .prod-info {
        padding: .75rem .8rem 1rem
    }

    .prod-name {
        font-size: .88rem;
        margin-bottom: .4rem
    }

    .prod-cat-label {
        font-size: .65rem
    }

    .price-new {
        font-size: .95rem
    }

    .price-old {
        font-size: .75rem
    }

    .price-badge {
        font-size: .6rem;
        padding: 1px 6px
    }

    .prod-prices {
        gap: 5px;
        margin-bottom: .6rem
    }

    .add-cart-btn {
        font-size: .75rem;
        padding: 7px 10px;
        gap: 5px
    }

    .add-cart-btn svg {
        width: 13px;
        height: 13px
    }

    .prod-badge {
        font-size: .62rem;
        padding: 2px 8px
    }

    .products {
        padding: 0 1rem
    }

    .tabs {
        gap: .4rem
    }

    .tab {
        font-size: .8rem;
        padding: .35rem .9rem
    }

    .wa-float {
        bottom: 20px;
        left: 16px;
        padding: 11px 14px 11px 12px;
        font-size: .82rem
    }

    .features {
        padding: 0 1rem;
        gap: .8rem;
        margin: 2.5rem auto
    }
}

@media(max-width:480px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem
    }

    .hero-title {
        font-size: 3.2rem;
        line-height: 1.15
    }

    .hero-visual {
        padding: 0
    }

    .products-grid {
        gap: .75rem
    }

    .prod-img-wrap {
        height: 150px
    }

    .prod-name {
        font-size: .82rem
    }
}