/* ==========================================================================
   UMMAH GIFT — Islamic gifts store · Emerald + Gold
   ========================================================================== */

:root {
    --bg:            #faf6ee;
    --bg-2:          #f2ebd8;
    --bg-3:          #ebe0c3;
    --surface:       #ffffff;

    --primary:       #0f4c3a;      /* deep emerald */
    --primary-2:     #08301f;
    --primary-3:     #1a6f5a;
    --accent:        #d4a656;      /* rich gold */
    --accent-2:      #b8891f;
    --accent-3:      #f4d99a;      /* light gold */

    --text:          #2d2416;
    --text-2:        #5a4d38;
    --text-3:        #8a7c62;

    --border:        #ebe0c3;
    --border-strong: #d4c294;

    --wa:            #25d366;

    --radius:        6px;
    --radius-lg:     12px;
    --radius-xl:     20px;
    --shadow-sm:     0 2px 8px rgba(45, 36, 22, .08);
    --shadow-md:     0 12px 30px -10px rgba(15, 76, 58, .2);
    --shadow-lg:     0 30px 60px -20px rgba(15, 76, 58, .3);
    --shadow-gold:   0 10px 30px -6px rgba(212, 166, 86, .5);

    --grad-gold:     linear-gradient(135deg, #d4a656 0%, #f4d99a 50%, #d4a656 100%);
    --grad-emerald:  linear-gradient(135deg, #0f4c3a 0%, #1a6f5a 100%);

    --container:     1240px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', system-ui, sans-serif;
    background:
        radial-gradient(600px 400px at 90% 10%, rgba(212, 166, 86, .1), transparent 60%),
        radial-gradient(500px 400px at 5% 40%, rgba(15, 76, 58, .05), transparent 60%),
        var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.15;
    color: var(--primary);
}
h1 em, h2 em, h3 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .01em;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
    white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
    background: var(--grad-emerald);
    color: #fff;
    box-shadow: 0 12px 28px -8px rgba(15, 76, 58, .4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(15, 76, 58, .55);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--border-strong);
}
.btn-outline:hover {
    border-color: var(--primary);
    background: var(--surface);
}
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; }

/* Topbar */
.topbar {
    background: var(--primary);
    color: rgba(255, 255, 255, .8);
    font-size: .82rem;
    padding: 10px 0;
}
.topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar span, .topbar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}
.topbar svg { width: 14px; height: 14px; opacity: .7; }
.tb-social {
    color: var(--accent);
    font-weight: 700;
}
.tb-social:hover { color: var(--accent-3); }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(250, 246, 238, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .2s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-img {
    width: 52px; height: 52px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(212, 88, 138, .2);
    background: #fff;
    padding: 2px;
    transition: transform .3s;
}
.brand:hover .brand-logo-img { transform: scale(1.05); }
.footer .brand-logo-img {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}
.brand-mark {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    color: var(--accent);
    background: transparent;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark-light { color: var(--accent-3); }
.brand-text b {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--primary);
    line-height: 1;
}
.brand-text span {
    display: block;
    font-size: .68rem;
    color: var(--text-3);
    letter-spacing: .06em;
    margin-top: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.nav { display: flex; gap: 2px; }
.nav a {
    padding: 8px 14px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-2);
    border-radius: var(--radius);
    transition: color .2s, background .2s;
}
.nav a:hover { color: var(--primary); background: rgba(15, 76, 58, .06); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-wa {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    background: var(--wa);
    color: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: 0 6px 16px -4px rgba(37, 211, 102, .5);
}
.header-wa:hover { transform: scale(1.1); }
.header-wa svg { width: 18px; height: 18px; }

.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
}
.menu-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: .2s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    padding: 40px 0 90px;
    overflow: hidden;
}
.ornament {
    position: absolute;
    left: 0; right: 0;
    color: var(--accent);
    opacity: .3;
    pointer-events: none;
    height: 20px;
}
.ornament svg { width: 100%; height: 100%; }
.ornament-top { top: 30px; }
.ornament-bot { bottom: 30px; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.arabic-line {
    font-family: 'Amiri', 'Cormorant Garamond', serif;
    direction: rtl;
    font-size: 1.4rem;
    color: var(--accent-2);
    margin-bottom: 12px;
    font-weight: 500;
    opacity: .85;
    letter-spacing: .04em;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .02em;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 50% { transform: scale(1.4); opacity: .5; } }

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.05;
    margin-bottom: 22px;
}
.hero-lead {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 540px;
    padding-top: 24px;
    border-top: 1px solid var(--border-strong);
}
.hero-perks b {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.hero-perks span {
    display: block;
    font-size: .78rem;
    color: var(--text-3);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* Hero visual — gift box */
.hero-visual {
    position: relative;
    height: 500px;
    display: grid;
    place-items: center;
}
.hero-box {
    position: relative;
    width: 300px;
    height: 340px;
    animation: bob 5s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(-16px); } }
.box-lid {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 110px;
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
    border-radius: 12px 12px 4px 4px;
    box-shadow:
        0 15px 35px -10px rgba(15, 76, 58, .5),
        inset 0 -4px 12px rgba(0, 0, 0, .25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    z-index: 3;
}
.box-ornament {
    width: 60px; height: 60px;
    color: var(--accent);
    margin-bottom: 6px;
}
.box-ornament svg { width: 100%; height: 100%; }
.box-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: .85rem;
    color: var(--accent-3);
    letter-spacing: .3em;
}
.box-body {
    position: absolute;
    top: 100px; left: 20px; right: 20px;
    bottom: 20px;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border-radius: 4px 4px 12px 12px;
    box-shadow:
        0 25px 50px -15px rgba(45, 36, 22, .25),
        inset 0 4px 12px rgba(0, 0, 0, .1);
    padding: 30px;
    display: grid;
    place-items: center;
}
.box-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    place-items: center;
}
.box-item {
    width: 60px; height: 60px;
    display: grid; place-items: center;
    background: var(--bg-3);
    border: 2px solid var(--accent);
    border-radius: 50%;
    font-size: 1.8rem;
    box-shadow: var(--shadow-sm);
    animation: bob 4s ease-in-out infinite;
}
.box-item.i1 { animation-delay: 0s; }
.box-item.i2 { animation-delay: -1s; }
.box-item.i3 { animation-delay: -2s; }
.box-item.i4 { animation-delay: -3s; }

.box-ribbon {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background: var(--accent);
    box-shadow: 0 0 15px rgba(212, 166, 86, .5);
    z-index: 2;
    opacity: .95;
}
.box-ribbon::after {
    content: '';
    position: absolute;
    top: 100px; left: -12px;
    width: 48px; height: 20px;
    background: var(--accent-2);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 50%, 0 100%);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-md);
    transform: rotate(8deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    animation: bob 4s ease-in-out infinite -1s;
}
.hero-badge span { font-size: 1.4rem; margin-bottom: 4px; }
.hero-badge b {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--accent-2);
    font-size: .85rem;
    letter-spacing: .05em;
}

/* Trust bar */
.trust {
    background: var(--primary);
    color: #fff;
    padding: 40px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.trust-item b {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 700;
}
.trust-item span {
    display: block;
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: .04em;
}

/* Sections */
.section { padding: 100px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(15, 76, 58, .04), transparent); }
.section-dark { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: rgba(255, 255, 255, .9); }
.section-dark h2 { color: #fff; }

.section-head {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}
.section-caps {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--accent-2);
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 0 40px;
    position: relative;
    margin-bottom: 20px;
}
.section-caps::before,
.section-caps::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px; height: 1px;
    background: var(--accent);
}
.section-caps::before { left: 0; }
.section-caps::after { right: 0; }
.section-caps.light { color: var(--accent-3); }
.section-caps.light::before,
.section-caps.light::after { background: var(--accent-3); }

.section-head h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}
.section-head p {
    color: var(--text-2);
    font-size: 1.02rem;
    max-width: 620px;
    margin: 0 auto;
}
.section-dark .section-head p { color: rgba(255, 255, 255, .75); }

/* Boxes */
.boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.box-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    box-shadow: var(--shadow-sm);
}
.box-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.box-card.popular {
    border: 2px solid var(--accent);
    box-shadow: 0 20px 50px -15px rgba(212, 166, 86, .35);
    transform: translateY(-6px);
}
.box-badge {
    position: absolute;
    top: 20px; left: 20px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--accent-3);
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    z-index: 3;
}
.box-card.popular .box-badge { background: var(--accent); color: var(--primary); }
.box-star {
    position: absolute;
    top: 16px; right: 20px;
    color: var(--accent);
    font-size: 2rem;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(212, 166, 86, .5);
}
.box-visual {
    aspect-ratio: 3/2;
    background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
    display: grid;
    place-items: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.box-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .4), transparent 60%);
}
.box-preview {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--box-c1), var(--box-c2));
    border-radius: 12px;
    display: grid;
    place-items: center;
    position: relative;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, .3);
    z-index: 1;
}
.box-preview::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    background: var(--accent);
}
.box-preview::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 12px;
    background: var(--accent);
    transform: translateY(-50%);
}
.box-icon {
    font-size: 3rem;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}

/* Real photo variants */
.box-visual.box-visual-photo {
    padding: 0;
    aspect-ratio: 3/2;
    background: var(--bg-2);
}
.box-visual.box-visual-photo::before { display: none; }
.box-visual-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.box-card:hover .box-visual-photo img { transform: scale(1.05); }

.product-photo.product-photo-real {
    padding: 0;
    background: var(--bg-2);
}
.product-photo-real::before { display: none; }
.product-photo-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-photo-real img { transform: scale(1.06); }

.ig-post.ig-post-photo {
    background: var(--bg-2);
}
.ig-post-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.ig-post-photo:hover img { transform: scale(1.08); }

/* Photo showcase (real product photos) */
.showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.showcase-main {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    box-shadow: var(--shadow-md);
    transition: transform .3s;
}
.showcase-main:hover { transform: scale(1.01); }
.showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.showcase-main:hover img { transform: scale(1.05); }
.showcase-caption {
    position: absolute;
    left: 20px; right: 20px; bottom: 20px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.showcase-caption span {
    font-size: .75rem;
    color: var(--accent-2);
    font-weight: 700;
    letter-spacing: .06em;
}
.showcase-caption b {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--primary);
    margin-top: 4px;
    font-weight: 700;
}

.showcase-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
}
.showcase-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    box-shadow: var(--shadow-sm);
    transition: transform .3s;
}
.showcase-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.showcase-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.showcase-thumb:hover img { transform: scale(1.06); }
.showcase-cta {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    color: #fff;
}
.showcase-cta div { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.showcase-cta b { font-size: .82rem; font-weight: 700; line-height: 1.3; }
.showcase-cta:hover { transform: translateY(-4px) scale(1.02); }

@media (max-width: 800px) {
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-side { grid-template-columns: 1fr 1fr; }
}

.box-content {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.box-content h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: .02em;
}
.box-content > p {
    color: var(--text-2);
    font-size: .93rem;
    margin-bottom: 18px;
    line-height: 1.5;
}
.box-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    flex-grow: 1;
}
.box-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: .9rem;
    color: var(--text);
    line-height: 1.4;
}
.box-list i {
    color: var(--accent);
    font-size: .7rem;
    font-style: normal;
}
.box-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px dashed var(--border-strong);
}
.box-price > div {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--text-3);
    font-size: .82rem;
}
.box-price b {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}
.boxes-note {
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 20px;
    background: rgba(212, 166, 86, .1);
    border: 1px dashed var(--accent);
    border-radius: var(--radius-lg);
    color: var(--text);
    font-size: .95rem;
}
.boxes-note b { color: var(--accent-2); }

/* Inside grid */
.inside-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.inside-item {
    padding: 32px 26px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    box-shadow: var(--shadow-sm);
}
.inside-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.inside-icon {
    width: 70px; height: 70px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-gold);
}
.inside-item h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}
.inside-item p {
    color: var(--text-2);
    font-size: .92rem;
    line-height: 1.55;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.product-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--pc1), var(--pc2));
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}
.product-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .4), transparent 60%);
}
.prod-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .2));
    position: relative;
    z-index: 1;
}
.product-card h4 {
    padding: 18px 20px 6px;
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 700;
}
.product-card p {
    padding: 0 20px;
    color: var(--text-2);
    font-size: .82rem;
    margin-bottom: 14px;
}
.product-price {
    padding: 12px 20px;
    background: var(--bg-2);
    border-top: 1px dashed var(--border-strong);
}
.product-price b {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
}

/* Bloggers */
.bloggers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.blogger-card {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
}
.blogger-card.featured {
    border-color: var(--accent);
    box-shadow: 0 15px 40px -15px rgba(212, 166, 86, .3);
}
.blogger-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.blogger-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    margin-bottom: 14px;
}
.blogger-info { margin-bottom: 14px; }
.blogger-info b {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
}
.blogger-handle {
    font-size: .78rem;
    color: var(--accent-2);
    font-weight: 600;
    letter-spacing: .04em;
}
.blogger-card p {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.55;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 18px;
}
.blogger-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-2);
    font-size: .82rem;
    font-weight: 700;
    transition: color .2s, gap .2s;
}
.blogger-link:hover { color: var(--primary); gap: 12px; }

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.review {
    padding: 28px 26px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform .25s, box-shadow .25s;
    box-shadow: var(--shadow-sm);
}
.review:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.review-stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.review p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 18px;
}
.review footer { padding-top: 14px; border-top: 1px dashed var(--border-strong); }
.review footer b {
    display: block;
    font-size: .95rem;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2px;
}
.review footer span {
    display: block;
    font-size: .78rem;
    color: var(--text-3);
}

/* FAQ */
.faq-container { max-width: 860px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: border-color .2s;
    overflow: hidden;
}
.faq[open] { border-color: var(--accent); }
.faq summary {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
    font-family: 'Playfair Display', serif;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    display: grid;
    place-items: center;
    width: 28px; height: 28px;
    background: var(--bg-2);
    color: var(--accent-2);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform .3s, background .2s, color .2s;
    flex-shrink: 0;
}
.faq[open] summary::after {
    content: '−';
    background: var(--accent);
    color: #fff;
}
.faq p {
    padding: 0 24px 22px;
    color: var(--text-2);
    font-size: .95rem;
    line-height: 1.65;
}

/* Order form */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.order-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 16px 0 20px;
    line-height: 1.15;
}
.order-content > p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 24px;
    font-size: 1rem;
}
.order-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.order-perks li {
    padding-left: 28px;
    position: relative;
    color: rgba(255, 255, 255, .9);
    font-size: .95rem;
}
.order-perks li::before {
    content: '✦';
    position: absolute;
    left: 0; top: 0;
    color: var(--accent);
    font-size: 1rem;
}

.order-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.os-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    transition: transform .2s, background .2s;
}
.os-btn svg { width: 18px; height: 18px; }
.os-ig { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); box-shadow: 0 8px 20px -6px rgba(220, 39, 67, .5); }
.os-wa { background: var(--wa); box-shadow: 0 8px 20px -6px rgba(37, 211, 102, .5); }
.os-btn:hover { transform: translateY(-3px); }

.order-form {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .04em;
    text-transform: uppercase;
}
.field input, .field select, .field textarea {
    padding: 12px 14px;
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    color: #fff;
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, .3);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, .3); }
.field select { cursor: pointer; }
.field select option { background: var(--primary); color: #fff; }
.field textarea { resize: vertical; min-height: 80px; }

.order-form .btn { grid-column: 1 / -1; padding: 16px; background: var(--grad-gold); color: var(--primary); border: none; }
.order-form .btn:hover { transform: translateY(-2px); }
.form-note {
    grid-column: 1 / -1;
    text-align: center;
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    margin-top: -6px;
}
.form-success {
    grid-column: 1 / -1;
    display: none;
    padding: 14px;
    background: rgba(74, 222, 128, .12);
    border: 1px solid rgba(74, 222, 128, .35);
    border-radius: var(--radius);
    color: #86efac;
    text-align: center;
    font-weight: 600;
}
.form-success.show { display: block; }

/* Footer */
.footer {
    padding: 70px 0 24px;
    background: var(--primary-2);
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}
.footer .brand-text b { color: #fff; }
.footer .brand-text span { color: rgba(255, 255, 255, .5); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 24px;
}
.footer h4 {
    color: var(--accent-3);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 18px;
    font-family: 'Manrope', sans-serif;
}
.footer > .container > .footer-grid > div:first-child p {
    color: rgba(255, 255, 255, .6);
    max-width: 320px;
    font-size: .88rem;
    margin-top: 16px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li, .footer ul a {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    transition: color .2s;
}
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .4);
    font-size: .78rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* Floating actions */
.fab-wa {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 54px; height: 54px;
    display: grid; place-items: center;
    background: var(--wa);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .55);
    z-index: 80;
    transition: transform .2s;
    animation: bob 3s ease-in-out infinite;
}
.fab-wa svg { width: 28px; height: 28px; }
.fab-wa:hover { transform: scale(1.1); animation: none; }

.to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px; height: 46px;
    display: grid; place-items: center;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    z-index: 80;
}
.to-top svg { width: 18px; height: 18px; }
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--accent); color: var(--primary); }

/* Responsive */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; height: 400px; }
    .boxes-grid { grid-template-columns: 1fr; }
    .box-card.popular { transform: none; }
    .order-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 900px) {
    .nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 20px; right: 20px;
        flex-direction: column;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 14px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: all .25s;
    }
    .nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .nav a { padding: 12px 16px; }
    .menu-toggle { display: flex; }
    .hide-md { display: none; }
    .hero-perks { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .section-head { margin-bottom: 40px; }
    .order-form { padding: 22px; grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .brand-text span { display: none; }
}
@media (max-width: 500px) {
    .container { padding: 0 16px; }
    .btn { padding: 12px 20px; font-size: .87rem; }
    .hero-badge { right: 0; transform: rotate(6deg); }
    .hero-box { width: 240px; height: 300px; }
    .box-lid { height: 90px; }
    .box-body { top: 80px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed; inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: grid; place-items: center;
    transition: opacity .6s ease, visibility .6s;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner {
    text-align: center;
    color: var(--accent);
}
.preloader-star {
    width: 100px; height: 100px;
    animation: pl-spin 2s ease-in-out infinite;
    margin: 0 auto 20px;
}
@keyframes pl-spin {
    50% { transform: rotate(180deg) scale(.85); }
    100% { transform: rotate(360deg) scale(1); }
}
.preloader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .35em;
    color: var(--accent);
    margin-bottom: 12px;
}
.preloader-sub {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-3);
    opacity: .8;
    font-size: 1.1rem;
    letter-spacing: .05em;
    direction: rtl;
}

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--grad-gold);
    z-index: 9998;
    box-shadow: 0 0 12px rgba(212, 166, 86, .6);
    transition: width .1s linear;
}

/* ==========================================================================
   Hero stars & Islamic pattern
   ========================================================================== */
.hero-stars {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hs {
    position: absolute;
    color: var(--accent);
    font-size: 1.4rem;
    opacity: .55;
    animation: star-float 8s ease-in-out infinite;
}
.hs.s1 { top: 10%;  left: 8%;   font-size: 1.6rem; animation-delay: 0s; }
.hs.s2 { top: 15%;  right: 12%; font-size: 2rem;   animation-delay: -2s; opacity: .7; }
.hs.s3 { top: 60%;  left: 5%;   font-size: 1.2rem; animation-delay: -4s; }
.hs.s4 { top: 40%;  right: 8%;  font-size: 1.5rem; animation-delay: -1s; }
.hs.s5 { top: 75%;  right: 20%; font-size: 1.1rem; animation-delay: -3s; }
.hs.s6 { top: 30%;  left: 45%;  font-size: 1.4rem; animation-delay: -5s; opacity: .35; }
.hs.s7 { top: 80%;  left: 25%;  font-size: 1.3rem; animation-delay: -6s; }
.hs.s8 { top: 20%;  left: 65%;  font-size: 1rem;   animation-delay: -7s; opacity: .4; }
@keyframes star-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: .55; }
    50%      { transform: translateY(-30px) scale(1.15); opacity: .85; }
}

.islamic-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .04;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20px 20px, var(--primary) 3px, transparent 3px),
        radial-gradient(circle at 60px 60px, var(--accent) 2px, transparent 2px);
    background-size: 80px 80px;
}

/* ==========================================================================
   Occasions grid
   ========================================================================== */
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.occasion {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, border-color .25s, box-shadow .25s;
    cursor: pointer;
}
.occasion:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.occasion:hover .occ-icon {
    transform: scale(1.1) rotate(-4deg);
}
.occ-icon {
    width: 68px; height: 68px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 14px;
    box-shadow: var(--shadow-gold);
    transition: transform .3s;
}
.occasion b {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 700;
}
.occasion span {
    font-size: .82rem;
    color: var(--text-3);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    line-height: 1.4;
}

/* ==========================================================================
   Compare table
   ========================================================================== */
.compare-wrap {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 6px;
}
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 640px;
}
.compare-table th,
.compare-table td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: .93rem;
    color: var(--text);
}
.compare-table td:first-child,
.compare-table th:first-child {
    text-align: left;
    color: var(--text-2);
    font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table thead th {
    padding: 22px 18px;
    background: var(--bg-2);
    border-bottom: 2px solid var(--accent);
}
.compare-table thead th:first-child { background: transparent; border-bottom: none; }
.ct-h {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.ct-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary);
    color: var(--accent-3);
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
}
.ct-h b {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
}
.ct-h em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--accent-2);
    font-weight: 600;
}
.ct-highlight {
    background: rgba(212, 166, 86, .1) !important;
}
.ct-highlight .ct-badge {
    background: var(--accent);
    color: var(--primary);
}
.ct-actions td { padding: 18px; background: var(--bg-2); border-bottom: none; }
.ct-actions td.ct-highlight { background: rgba(212, 166, 86, .18); }

/* ==========================================================================
   Instagram feed grid
   ========================================================================== */
.ig-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-width: 900px;
    margin: 0 auto;
}
.ig-post {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--ic1), var(--ic2));
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.ig-post:hover {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: var(--shadow-md);
}
.ig-emoji {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .3));
}
.ig-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 39, 67, .85), rgba(188, 24, 136, .85));
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
}
.ig-overlay svg { width: 32px; height: 32px; }
.ig-post:hover .ig-overlay { opacity: 1; }

/* ==========================================================================
   Sticky mini order bar
   ========================================================================== */
.sticky-order {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 200%);
    z-index: 85;
    max-width: 620px;
    width: calc(100% - 40px);
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    box-shadow: 0 20px 50px -10px rgba(15, 76, 58, .3);
    padding: 8px 8px 8px 20px;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), opacity .3s;
    opacity: 0;
    pointer-events: none;
}
.sticky-order.show {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}
.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sticky-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 1;
    min-width: 0;
}
.sticky-emoji {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.sticky-info b {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: .92rem;
    color: var(--primary);
    line-height: 1.2;
    font-weight: 700;
}
.sticky-info span {
    display: block;
    font-size: .74rem;
    color: var(--text-3);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}
.sticky-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.sticky-wa {
    background: var(--wa);
    color: #fff;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 100px;
    font-weight: 700;
    font-size: .82rem;
    transition: transform .2s;
}
.sticky-wa:hover { transform: translateY(-2px); }
.sticky-close {
    position: absolute;
    top: -10px; right: -10px;
    width: 28px; height: 28px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: .8rem;
    box-shadow: var(--shadow-sm);
    transition: background .2s;
}
.sticky-close:hover { background: var(--accent); color: var(--primary); }

@media (max-width: 700px) {
    .sticky-info span { display: none; }
    .sticky-info b { font-size: .82rem; }
    .sticky-wa span { display: none; }
    .ig-feed { grid-template-columns: repeat(3, 1fr); }
    .occasions-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .occasions-grid { grid-template-columns: 1fr; }
    .compare-wrap { border-radius: var(--radius); }
    .compare-table th, .compare-table td { padding: 10px 8px; font-size: .82rem; }
}

/* ==========================================================================
   HOW TO ORDER — steps
   ========================================================================== */
.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 12px;
    align-items: center;
}
.step {
    padding: 30px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
}
.step:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.step-num {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    display: grid; place-items: center;
    background: var(--grad-emerald);
    color: var(--accent);
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 16px -4px rgba(15, 76, 58, .4);
    border: 2px solid var(--accent);
}
.step-icon {
    font-size: 2.4rem;
    margin: 8px auto 14px;
    display: inline-block;
}
.step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}
.step p {
    color: var(--text-2);
    font-size: .85rem;
    line-height: 1.5;
}
.step-arrow {
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 700;
    opacity: .5;
}

@media (max-width: 900px) {
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .step-arrow { transform: rotate(90deg); }
}

/* ==========================================================================
   Ramadan / holiday banner
   ========================================================================== */
.section-banner { padding: 20px 0; }
.ramadan-banner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 48px;
    background: linear-gradient(135deg, #0a3d2e 0%, var(--primary) 50%, #1a6f5a 100%);
    color: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(15, 76, 58, .45);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: center;
}
.rb-glow {
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 166, 86, .35), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}
.rb-content { position: relative; z-index: 2; }
.rb-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .06em;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.ramadan-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #fff;
    margin-bottom: 14px;
    font-weight: 700;
}
.ramadan-banner h3 em { color: var(--accent); }
.ramadan-banner p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.02rem;
    margin-bottom: 24px;
    max-width: 500px;
}
.ramadan-banner p b { color: var(--accent-3); }
.ramadan-banner .btn-primary {
    background: var(--grad-gold);
    color: var(--primary);
    box-shadow: 0 12px 30px -6px rgba(212, 166, 86, .5);
}

.rb-visual {
    position: relative;
    height: 200px;
    display: grid;
    place-items: center;
}
.rb-moon {
    font-size: 8rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .3));
    animation: bob 5s ease-in-out infinite;
    z-index: 1;
}
.rb-stars {
    position: absolute;
    inset: 0;
}
.rb-stars span {
    position: absolute;
    color: var(--accent-3);
    font-size: 1.6rem;
    animation: star-float 4s ease-in-out infinite;
}
.rb-stars span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.rb-stars span:nth-child(2) { top: 20%; right: 15%; animation-delay: -1s; font-size: 2rem; }
.rb-stars span:nth-child(3) { bottom: 15%; left: 20%; animation-delay: -2s; font-size: 1.3rem; }
.rb-stars span:nth-child(4) { bottom: 25%; right: 10%; animation-delay: -3s; font-size: 1.5rem; }

@media (max-width: 800px) {
    .ramadan-banner { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
    .ramadan-banner p { margin-inline: auto; }
    .rb-visual { height: 140px; }
    .rb-moon { font-size: 5rem; }
}

/* ==========================================================================
   Instagram section — enhanced (stories + profile + real posts)
   ========================================================================== */
.ig-section {
    background: linear-gradient(180deg, transparent, rgba(212, 166, 86, .04), transparent);
}

/* Story highlights */
.ig-highlights {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 40px;
}
.ig-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    transition: transform .25s;
}
.ig-story:hover { transform: translateY(-4px); }
.story-ring {
    width: 72px; height: 72px;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888, #d4a656, #0f4c3a);
    padding: 3px;
    border-radius: 50%;
    box-shadow: 0 8px 20px -6px rgba(220, 39, 67, .35);
    transition: transform .25s;
}
.ig-story:hover .story-ring { transform: rotate(-8deg) scale(1.05); }
.story-inner {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.6rem;
    border: 3px solid var(--bg);
}
.ig-story span {
    font-size: .78rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: .02em;
}

/* IG profile card */
.ig-profile {
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-md);
}
.ig-avatar {
    width: 92px; height: 92px;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    padding: 3px;
    border-radius: 50%;
}
.ig-avatar .story-inner {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .05em;
    overflow: hidden;
    padding: 0;
    background: #fff !important;
}
.ig-avatar-img { padding: 0 !important; }
.ig-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.ig-profile-info { min-width: 0; }
.ig-username {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.ig-username b {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}
.ig-verified {
    display: inline-grid;
    place-items: center;
    width: 18px; height: 18px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 700;
}
.ig-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: .85rem;
    color: var(--text-2);
}
.ig-stats b { color: var(--primary); }
.ig-profile-info p {
    font-size: .85rem;
    color: var(--text);
    line-height: 1.5;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* Enhanced IG posts */
.ig-feed { position: relative; }
.ig-post {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--ic1), var(--ic2));
    border-radius: 4px;
    overflow: hidden;
    display: block;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.ig-tile {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 14px;
    justify-content: space-between;
    color: #fff;
}
.ig-tile-icon {
    font-size: 3.4rem;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .3));
    margin-top: 20%;
    z-index: 1;
}
.ig-tile-caption {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .82rem;
    text-align: center;
    color: rgba(255, 255, 255, .95);
    padding: 8px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .3));
    border-radius: 4px;
    line-height: 1.3;
}
.ig-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 39, 67, .8), rgba(188, 24, 136, .8));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    opacity: 0;
    transition: opacity .3s;
    font-size: .95rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}
.ig-post:hover { transform: scale(1.03); z-index: 2; box-shadow: var(--shadow-md); }
.ig-post:hover .ig-hover { opacity: 1; }
.ig-badge-carousel, .ig-badge-video {
    position: absolute;
    top: 8px; right: 8px;
    color: #fff;
    background: rgba(0, 0, 0, .5);
    padding: 3px 7px;
    border-radius: 4px;
    font-size: .7rem;
    line-height: 1;
    backdrop-filter: blur(4px);
    z-index: 2;
}

@media (max-width: 700px) {
    .ig-highlights { gap: 14px; }
    .story-ring { width: 60px; height: 60px; }
    .story-inner { font-size: 1.3rem; }
    .ig-story span { font-size: .7rem; }
    .ig-profile { grid-template-columns: auto 1fr; gap: 16px; padding: 18px; }
    .ig-profile .btn { grid-column: 1 / -1; justify-content: center; width: 100%; }
    .ig-avatar { width: 72px; height: 72px; }
    .ig-stats { gap: 10px; font-size: .75rem; }
    .ig-tile-icon { font-size: 2.2rem; margin-top: 10%; }
    .ig-tile-caption { font-size: .68rem; padding: 4px; }
}

/* ==========================================================================
   Delivery partners
   ========================================================================== */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.dp-card {
    padding: 24px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, border-color .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.dp-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.dp-card.highlight {
    background: linear-gradient(135deg, rgba(212, 166, 86, .1), transparent);
    border-color: var(--accent);
}
.dp-logo {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 14px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}
.dp-kaspi   { background: linear-gradient(135deg, #f43e34, #b41f14); }
.dp-wb      { background: linear-gradient(135deg, #cb11ab, #7d0d69); font-size: .85rem; }
.dp-cdek    { background: linear-gradient(135deg, #158e40, #0a5c26); font-size: .75rem; }
.dp-kazpost { background: linear-gradient(135deg, #f5ba00, #a67b00); color: #0f4c3a; }
.dp-yandex  { background: linear-gradient(135deg, #fc3f1d, #a52510); }
.dp-self    { background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-size: 1.5rem; }

.dp-card b {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    color: var(--primary);
    font-weight: 700;
}
.dp-card span {
    display: block;
    font-size: .78rem;
    color: var(--text-3);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    line-height: 1.4;
    margin-top: 2px;
}
