/* Home Specific Styles */
.horizontal-scroll { display: flex; overflow-x: auto; padding: 0 10px; gap: 10px; scrollbar-width: none; -ms-overflow-style: none; }
@media (min-width: 768px) { .horizontal-scroll { padding: 0 20px; gap: 20px; } }
.horizontal-scroll::-webkit-scrollbar { display: none; }
.section-container { margin-bottom: 24px; }
@media (min-width: 768px) { .section-container { margin-bottom: 44px; } }

/* ── Premium Section Heading ── */
.section-header { display: flex; justify-content: space-between; align-items: center; padding: 0 12px 14px; }
@media (min-width:768px) { .section-header { padding: 0 24px 18px; } }

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #fff;
    position: relative;
    margin: 0;
    padding-left: 12px;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    min-height: 14px;
    background: var(--gold-gradient);
    border-radius: 2px;
}
/* Standalone usage (no .section-header wrapper) */
.section-container > .section-title { margin: 0 12px 14px; }
@media (min-width:768px) {
    .section-title { font-size: 20px; padding-left: 14px; }
    .section-title::before { width: 5px; }
    .section-container > .section-title { margin: 0 24px 18px; }
}

/* "See All" link beside heading */
.section-see-all { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--gold-primary); text-decoration: none; white-space: nowrap; transition: all 0.3s ease; }
.section-see-all i { font-size: 10px; transition: transform 0.3s; }
.section-see-all:hover { color: var(--gold-light); }
.section-see-all:hover i { transform: translateX(3px); }

/* S1: Hero Slider */
.hero-slider { margin: 10px 10px 20px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.6); height: 200px; position: relative; }
@media (min-width: 768px) { .hero-slider { margin: 20px 20px 40px; border-radius: 24px; height: 420px; } }
@media (min-width: 1100px) { .hero-slider { height: 520px; } }

/* All slides stacked, only active visible */
.slide { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity 0.7s ease-in-out; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
@media (min-width: 768px) { .slide { padding: 40px 48px; } }
.slide::after { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%), linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); }

/* Slide Badge (top-right) */
.slide-badge { position:absolute; top:12px; right:12px; z-index:3; background:rgba(0,0,0,0.6); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.15); color:#fff; font-size:10px; font-weight:700; padding:5px 10px; border-radius:20px; letter-spacing:0.5px; }
@media (min-width:768px) { .slide-badge { font-size:12px; top:20px; right:20px; } }

/* Slide Content */
.slide-content { position:relative; z-index:2; }
.slide-tag { display:inline-block; background:var(--gold-gradient); color:#000; font-size:9px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; padding:3px 10px; border-radius:20px; margin-bottom:8px; }
@media (min-width:768px) { .slide-tag { font-size:11px; margin-bottom:12px; } }
.slide-content h2 { font-size:22px; font-weight:800; margin-bottom:5px; line-height:1.2; letter-spacing:-0.5px; }
.slide-content p { color:rgba(255,255,255,0.75); font-size:12px; margin-bottom:14px; font-weight:400; }
@media (min-width:768px) { .slide-content h2 { font-size:44px; margin-bottom:10px; } .slide-content p { font-size:17px; margin-bottom:24px; } }

/* Dual Action Buttons */
.slide-actions { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.slide-ghost-btn { background:transparent; border:1.5px solid rgba(255,255,255,0.6); color:#fff; padding:9px 18px; border-radius:8px; font-size:13px; font-weight:600; cursor:pointer; font-family:inherit; transition:all 0.3s ease; }
.slide-ghost-btn:hover { background:rgba(255,255,255,0.12); border-color:#fff; }
@media (min-width:768px) { .slide-ghost-btn { padding:12px 24px; font-size:15px; } }

/* Slide Progress Bar — Silky Platinum × Gold */
.slide-progress { position:absolute; bottom:0; left:0; width:100%; height:3px; background:rgba(255,255,255,0.06); z-index:5; }
.slide-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
        #e8e0d5 0%,
        #d4af37 20%,
        #b8892a 45%,
        #e5c35a 70%,
        #c0c0c0 100%
    );
    background-size: 300% 100%;
    animation: bar-shimmer 3s ease-in-out infinite;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 10px rgba(229, 195, 90, 0.45), 0 0 2px rgba(192,192,192,0.3);
}
@keyframes bar-shimmer {
    0%   { background-position: 150% 0; }
    100% { background-position: -150% 0; }
}

/* S2: Category Section */
.cat-section { margin-bottom: 20px; }
@media (min-width:768px) { .cat-section { margin-bottom: 40px; } }

/* Section Header */
.cat-section-header { display:flex; justify-content:space-between; align-items:center; padding: 0 12px 14px; }
@media (min-width:768px) { .cat-section-header { padding: 0 24px 18px; } }
.cat-sec-left { display:flex; align-items:center; gap:10px; }
.cat-sec-icon { width:30px; height:30px; border-radius:8px; background:rgba(184,137,42,0.15); border:1px solid rgba(184,137,42,0.3); display:flex; align-items:center; justify-content:center; color:var(--gold-primary); font-size:13px; }
.cat-sec-left h3 { font-size:16px; font-weight:700; color:#fff; }
@media (min-width:768px) { .cat-sec-left h3 { font-size:20px; } }
.cat-view-all { display:flex; align-items:center; gap:6px; font-size:12px; font-weight:600; color:var(--gold-primary); text-decoration:none; border:1px solid rgba(184,137,42,0.3); padding:5px 12px; border-radius:20px; transition:all 0.3s cubic-bezier(0.175,0.885,0.32,1.275); }
.cat-view-all:hover { background:rgba(184,137,42,0.12); border-color:var(--gold-primary); color:var(--gold-light); transform:translateX(2px); }
.cat-view-all i { font-size:10px; transition:transform 0.3s; }
.cat-view-all:hover i { transform:translateX(3px); }

/* Scrollable Strip */
.category-slider { display:flex; overflow-x:auto; padding: 4px 12px 16px; gap: 14px; scrollbar-width:none; -ms-overflow-style:none; }
.category-slider::-webkit-scrollbar { display:none; }
@media (min-width:768px) { .category-slider { padding: 4px 24px 20px; gap: 24px; } }

/* Each Category Item */
.cat-item { display:flex; flex-direction:column; align-items:center; gap:8px; cursor:pointer; text-decoration:none; flex-shrink:0; transition:transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275); }
.cat-item:hover { transform:translateY(-6px); }

/* Icon Wrapper with Gold Ring */
.cat-icon-wrap { position:relative; width:58px; height:58px; border-radius:50%; padding:3px; background:var(--bg-dark); border:2px solid rgba(184,137,42,0.25); box-shadow:0 4px 14px rgba(0,0,0,0.35); transition:border-color 0.3s, box-shadow 0.4s, transform 0.35s; }
@media (min-width:768px) { .cat-icon-wrap { width:80px; height:80px; padding:4px; } }
.cat-item:hover .cat-icon-wrap { border-color:var(--gold-primary); box-shadow:0 0 0 3px rgba(184,137,42,0.2), 0 8px 20px rgba(0,0,0,0.5); }

/* Photo Icon inside */
.cat-icon { width:100%; height:100%; border-radius:50%; overflow:hidden; }

/* Floating Emoji */
.cat-emoji { position:absolute; bottom:-2px; right:-2px; font-size:14px; line-height:1; filter:drop-shadow(0 1px 2px rgba(0,0,0,0.7)); }
@media (min-width:768px) { .cat-emoji { font-size:18px; } }

/* Sale Badge */
.cat-badge-sale { position:absolute; top:-4px; right:-4px; background:var(--danger); color:#fff; font-size:7px; font-weight:900; padding:2px 5px; border-radius:8px; letter-spacing:0.5px; border:1.5px solid var(--bg-dark); animation:pulse-dot 1.6s infinite; }

/* Category Label */
.cat-label { font-size:11px; font-weight:600; color:var(--text-secondary); transition:color 0.3s; white-space:nowrap; text-align:center; }
@media (min-width:768px) { .cat-label { font-size:13px; } }
.cat-item:hover .cat-label { color:var(--gold-light); }


/* ── Top Trending Section Header ── */
.trend-section { padding-top: 0; }
.trend-heading-bg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 14px;
    margin-bottom: 2px;
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(30,28,20,0.95) 60%, rgba(15,25,15,0.95) 100%);
    border-bottom: 1px solid rgba(184,137,42,0.15);
    position: relative;
    overflow: hidden;
}
/* Shimmer sweep across the background */
.trend-heading-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(184,137,42,0.06) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: hdr-shimmer 4s ease-in-out infinite;
}
@keyframes hdr-shimmer {
    0%,100% { background-position: -100% 0; }
    50%      { background-position: 200% 0; }
}
/* Left side */
.trend-heading-left { display:flex; align-items:center; gap:10px; position:relative; z-index:1; }
/* Fire icon circle */
.trend-icon-wrap {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(207,87,57,0.3), rgba(184,137,42,0.2));
    border: 1px solid rgba(207,87,57,0.4);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    animation: fire-pulse 2s ease-in-out infinite;
}
@keyframes fire-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(207,87,57,0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(207,87,57,0); }
}
.trend-icon-fire {
    font-size: 16px;
    background: linear-gradient(135deg, #ff6b35, #f7c59f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fire-flicker 1.5s ease-in-out infinite alternate;
}
@keyframes fire-flicker {
    from { filter: drop-shadow(0 0 4px rgba(255,107,53,0.8)); transform: scale(1); }
    to   { filter: drop-shadow(0 0 8px rgba(247,197,159,0.9)); transform: scale(1.1) rotate(-3deg); }
}
/* Title */
.trend-title-wrap { display:flex; flex-direction:column; gap:1px; }
.trend-main-title {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
@media (min-width:768px) { .trend-main-title { font-size: 20px; } }
.trend-title-gold {
    background: linear-gradient(90deg, #d4af37, #f5e17a, #b8860b, #d4af37);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-flow 3s linear infinite;
}
@keyframes gold-flow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.trend-subtitle { font-size: 9px; color: var(--text-secondary); opacity: 0.7; letter-spacing: 0.3px; }
/* Right side */
.trend-heading-right { display:flex; align-items:center; gap:10px; position:relative; z-index:1; }
/* LIVE badge */
.trend-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #4dc97a;
    background: rgba(37,170,80,0.12);
    border: 1px solid rgba(37,170,80,0.3);
    padding: 2px 8px;
    border-radius: 20px;
}
.trend-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4dc97a;
    animation: live-blink 1.2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes live-blink {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.3; transform: scale(0.6); }
}

/* Trending scroll row */
.trending-scroll { padding: 4px 12px 16px; gap: 12px; }
@media (min-width:768px) { .trending-scroll { padding: 4px 24px 20px; gap: 20px; } }

@property --ba {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.trend-card {
    flex: 0 0 140px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 14px;
    background:
        linear-gradient(var(--bg-card-solid), var(--bg-card-solid)) padding-box,
        conic-gradient(from var(--ba), #4dc97a 0%, #e5e4e2 25%, #d4af37 50%, #e5e4e2 75%, #4dc97a 100%) border-box;
    border: 1.5px solid transparent;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.4s ease;
    animation: border-spin 3s linear infinite;
}
@media (min-width:768px) { .trend-card { flex: 0 0 200px; border-radius: 18px; } }
.trend-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.7); }

@keyframes border-spin { to { --ba: 360deg; } }

/* Image wrap */
.trend-img-wrap { position: relative; width: 100%; height: 170px; overflow: hidden; border-radius: 13px 13px 0 0; }
@media (min-width:768px) { .trend-img-wrap { height: 240px; border-radius: 17px 17px 0 0; } }
.trend-img { width:100%; height:100%; transition: transform 0.5s ease; }
.trend-card:hover .trend-img { transform: scale(1.07); }

/* Status badges — top-left, very small */
.trend-badge { position:absolute; top:6px; left:6px; font-size:7px; font-weight:900; padding:1px 5px; border-radius:3px; letter-spacing:0.4px; z-index:2; backdrop-filter:blur(4px); line-height:1.5; text-transform:uppercase; }
.trend-badge.hot   { background:rgba(207,87,57,0.9); color:#fff; }
.trend-badge.new   { background:rgba(60,120,200,0.9); color:#fff; }
.trend-badge.sale  { background:rgba(184,137,42,0.9); color:#000; }

/* Wishlist heart — small gold glass */
.trend-fav {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(184,137,42,0.4);
    background: rgba(184,137,42,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.85);
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
    box-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.trend-fav:hover {
    background: rgba(207,102,121,0.8);
    border-color: rgba(207,102,121,0.5);
    color: #fff;
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(207,102,121,0.45);
}
.trend-fav:active { transform: scale(0.88); }
/* ── Wishlisted (active) state ── */
.trend-fav.wishlisted {
    background: rgba(220, 38, 38, 0.85);
    border-color: rgba(220,38,38,0.6);
    color: #fff;
    box-shadow: 0 0 10px rgba(220,38,38,0.5), 0 2px 6px rgba(0,0,0,0.3);
    animation: heart-pop 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
.trend-fav.wishlisted:hover { background: rgba(185,28,28,0.9); transform: scale(1.15); }
@keyframes heart-pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}
@media (min-width: 768px) {
    .trend-fav { width: 26px; height: 26px; font-size: 11px; bottom: 8px; right: 8px; }
}

/* Info block */
.trend-info { padding: 8px 9px 10px; display:flex; flex-direction:column; gap:3px; }
.trend-brand { display:none; }
/* Name + SKU row */
.trend-name-row { display:flex; align-items:flex-start; justify-content:space-between; gap:4px; }
.trend-name { font-size:11px; font-weight:600; color:#fff; line-height:1.3; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; flex:1; min-width:0; }
@media (min-width:768px) { .trend-name { font-size:13px; } }
/* SKU + Colours meta row */
.trend-meta-row { display:flex; align-items:center; justify-content:space-between; gap:4px; }
/* SKU — right side, gold premium */
.trend-sku { display:inline-block; font-size:8px; font-weight:700; color:var(--gold-primary); background:rgba(184,137,42,0.12); padding:1px 5px; border-radius:4px; white-space:nowrap; letter-spacing:0.4px; font-family:monospace; line-height:1.6; }
/* Colour count text */
/* Colour count — animated running gradient */
.trend-clr-count {
    font-size: 8px;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.4px;
    background: linear-gradient(90deg, #4dc97a, #e5e4e2, #d4af37, #4dc97a, #e5e4e2);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: clr-run 3s linear infinite;
}
@keyframes clr-run {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
/* Size boxes */
.trend-sizes { display:flex; gap:3px; flex-wrap:nowrap; margin-top:3px; }
.t-size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 16px;
    font-size: 7px;
    font-weight: 800;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 3px;
    padding: 0 3px;
    cursor: pointer;
    letter-spacing: 0.4px;
    transition: all 0.2s;
    white-space: nowrap;
}
.t-size:hover  { background:rgba(184,137,42,0.2); border-color:rgba(184,137,42,0.5); color:var(--gold-light); transform:scale(1.08); }
.t-size.active { background:rgba(184,137,42,0.25); border-color:var(--gold-primary); color:var(--gold-light); }
/* Myntra-style rating pill inside image */
.trend-rating-pill {
    position: absolute;
    bottom: 6px;
    left: 6px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(0,0,0,0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(245,197,24,0.35);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 3px;
    letter-spacing: 0.3px;
    line-height: 1.6;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.trend-rating-pill i {
    color: #f5c518;
    font-size: 7px;
    filter: drop-shadow(0 0 2px rgba(245,197,24,0.6));
}
@media (min-width: 768px) {
    .trend-rating-pill { font-size: 10px; padding: 2px 8px; gap: 4px; border-radius: 5px; bottom: 8px; left: 8px; }
    .trend-rating-pill i { font-size: 9px; }
}
/* Price row */
.trend-price-row { display:flex; align-items:center; justify-content:space-between; gap:5px; flex-wrap:nowrap; margin-top:4px; }
.trend-price {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.3px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 40%, #e5e4e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.15));
}
@media (min-width:768px) { .trend-price { font-size: 17px; } }
/* Currency symbol — small gold */
.trend-curr {
    font-size: 9px;
    font-weight: 700;
    vertical-align: super;
    line-height: 0;
    background: linear-gradient(135deg, #d4af37, #f5e17a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 1px;
}
/* Discount tag — green, right side */
.trend-disc {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 8px;
    font-weight: 800;
    color: #4dc97a;
    background: rgba(37,170,80,0.12);
    border-radius: 4px;
    padding: 1px 5px;
    white-space: nowrap;
    letter-spacing: 0.2px;
}
.trend-disc i { font-size: 7px; color: #4dc97a; }
.trend-old { display:none; }

/* ── Featured Products Section Header ── */
.feat-section { padding-top: 0; }
.feat-heading-bg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 14px;
    margin-bottom: 2px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(15,10,0,0.98) 0%,
        rgba(30,22,5,0.98) 40%,
        rgba(20,15,2,0.98) 70%,
        rgba(10,8,0,0.98) 100%);
    border-bottom: 1px solid rgba(184,137,42,0.2);
}
/* Gold particle shimmer lines */
.feat-heading-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            105deg,
            transparent,
            transparent 60px,
            rgba(184,137,42,0.04) 61px,
            rgba(184,137,42,0.04) 62px
        );
    animation: feat-lines 6s linear infinite;
}
.feat-heading-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(184,137,42,0.07) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: hdr-shimmer 5s ease-in-out infinite;
}
@keyframes feat-lines { from { background-position: 0 0; } to { background-position: 120px 0; } }

/* Left side */
.feat-heading-left { display:flex; align-items:center; gap:10px; position:relative; z-index:1; }

/* Gem icon box */
.feat-icon-wrap {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(184,137,42,0.25), rgba(245,225,122,0.12));
    border: 1px solid rgba(184,137,42,0.45);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    animation: gem-pulse 3s ease-in-out infinite;
}
@keyframes gem-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(184,137,42,0.4); }
    50%      { box-shadow: 0 0 0 7px rgba(184,137,42,0); }
}
.feat-icon-gem {
    font-size: 15px;
    background: linear-gradient(135deg, #d4af37, #f5e17a, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gem-spin 4s ease-in-out infinite;
}
@keyframes gem-spin {
    0%,100% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 3px rgba(184,137,42,0.6)); }
    25%      { transform: rotate(-8deg) scale(1.1); filter: drop-shadow(0 0 8px rgba(245,225,122,0.9)); }
    75%      { transform: rotate(8deg) scale(1.1); filter: drop-shadow(0 0 8px rgba(245,225,122,0.9)); }
}

/* Title text */
.feat-title-wrap { display:flex; flex-direction:column; gap:1px; position:relative; z-index:1; }
.feat-main-title {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
@media (min-width:768px) { .feat-main-title { font-size: 20px; } }
.feat-title-shine {
    background: linear-gradient(90deg, #f5e17a, #d4af37, #fff8dc, #b8860b, #f5e17a);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: feat-shine-flow 3s linear infinite;
}
@keyframes feat-shine-flow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 250% 50%; }
}
.feat-subtitle { font-size: 9px; color: var(--text-secondary); opacity: 0.65; letter-spacing: 0.3px; }

/* Right side */
.feat-heading-right { display:flex; align-items:center; gap:10px; position:relative; z-index:1; }
.feat-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--gold-primary);
    background: rgba(184,137,42,0.1);
    border: 1px solid rgba(184,137,42,0.3);
    padding: 2px 8px;
    border-radius: 20px;
}
.feat-count-badge i { font-size: 7px; }


.dark-bg-block { background: rgba(255,255,255,0.02); padding: 16px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
@media (min-width: 768px) { .dark-bg-block { padding: 30px 0; } }

.feat-scroll { gap: 12px; padding: 4px 14px 16px; }
@media (min-width:768px) { .feat-scroll { gap: 18px; padding: 4px 24px 20px; } }

/* Card — gold border + 3D box */
@property --fba {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
.feat-card {
    flex: 0 0 calc((100vw - 64px) / 4);
    border-radius: 10px;
    overflow: visible;
    display: block;
    position: relative;
    text-decoration: none;
    background:
        linear-gradient(var(--bg-card-solid), var(--bg-card-solid)) padding-box,
        conic-gradient(from var(--fba), #b8860b, #f5e17a, #d4af37, #b8860b) border-box;
    border: 1.5px solid transparent;
    animation: feat-border-spin 4s linear infinite;
    box-shadow:
        3px 3px 0px rgba(0,0,0,0.6),
        5px 5px 0px rgba(0,0,0,0.3),
        -1px -1px 0px rgba(184,137,42,0.3);
    transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.4s;
}
@keyframes feat-border-spin { to { --fba: 360deg; } }
@media (min-width:768px) { .feat-card { flex: 0 0 200px; border-radius: 18px; } }
.feat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:
        2px 2px 0px rgba(0,0,0,0.5),
        0 24px 60px rgba(0,0,0,0.85),
        0 0 30px rgba(184,137,42,0.25);
}

/* Photo fills the card */
.feat-img {
    width: 100%;
    height: calc((100vw - 64px) / 4 * 1.3);
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 9px;
    transition: transform 0.5s ease;
}
@media (min-width:768px) { .feat-img { height: 260px; border-radius: 17px; } }
.feat-card:hover .feat-img { transform: scale(1.06); }

/* Dark gradient at bottom for tag readability */
.feat-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
    pointer-events: none;
}

/* ── Badge — premium ribbon style ── */
.feat-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 0.8px;
    padding: 2px 5px;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    gap: 2px;
    /* Hot — fire orange */
    background: linear-gradient(135deg, rgba(220,80,30,0.92), rgba(255,120,50,0.88));
    box-shadow: 0 2px 8px rgba(220,80,30,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 0.5px solid rgba(255,140,80,0.4);
    animation: badge-glow 2.5s ease-in-out infinite;
}
@keyframes badge-glow {
    0%,100% { box-shadow: 0 2px 6px rgba(220,80,30,0.4); }
    50%      { box-shadow: 0 2px 12px rgba(255,120,50,0.75); }
}
.feat-badge.new {
    background: linear-gradient(135deg, rgba(50,120,255,0.92), rgba(100,160,255,0.88));
    box-shadow: 0 2px 8px rgba(50,120,255,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: rgba(100,160,255,0.4);
    animation: badge-glow-blue 2.5s ease-in-out infinite;
}
@keyframes badge-glow-blue {
    0%,100% { box-shadow: 0 2px 6px rgba(50,120,255,0.4); }
    50%      { box-shadow: 0 2px 12px rgba(100,160,255,0.75); }
}
.feat-badge.sale {
    background: linear-gradient(135deg, rgba(30,170,80,0.92), rgba(70,210,110,0.88));
    box-shadow: 0 2px 8px rgba(30,170,80,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: rgba(70,210,110,0.4);
    animation: badge-glow-green 2.5s ease-in-out infinite;
}
@keyframes badge-glow-green {
    0%,100% { box-shadow: 0 2px 6px rgba(30,170,80,0.4); }
    50%      { box-shadow: 0 2px 12px rgba(70,210,110,0.75); }
}
@media (min-width:768px) { .feat-badge { font-size: 8px; padding: 2px 7px; } }

/* ── 3D Gold Price Tag — bottom-right corner ── */
.feat-price-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 1px;
    padding: 4px 8px 4px 10px;
    /* Flush bottom-right corner — only top-left radius */
    border-radius: 8px 0 0 0;
    background: linear-gradient(135deg, #c8960c 0%, #d4af37 35%, #f5e17a 60%, #b8860b 100%);
    box-shadow:
        -3px -3px 0 rgba(0,0,0,0.35),
        -5px -5px 0 rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset -1px 0 0 rgba(0,0,0,0.15);
    overflow: hidden;
    animation: tag-gleam 3s ease-in-out infinite;
}
.feat-price-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.4) 50%, transparent 75%);
    background-size: 200% 100%;
    animation: tag-shine 3s ease-in-out infinite;
}
@keyframes tag-shine {
    0%,100% { background-position: -100% 0; }
    50%      { background-position: 200% 0; }
}
@keyframes tag-gleam {
    0%,100% { box-shadow: -3px -3px 0 rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.5); }
    50%      { box-shadow: -3px -3px 0 rgba(0,0,0,0.4), 0 0 14px rgba(212,175,55,0.55), inset 0 1px 0 rgba(255,255,255,0.7); }
}

/* Currency $ — tiny superscript */
.feat-tag-hole { display: none; }
.feat-tag-curr {
    font-size: 6px;
    font-weight: 900;
    color: rgba(20,10,0,0.85);
    vertical-align: super;
    line-height: 0;
    position: relative;
    z-index: 1;
    margin-right: 0px;
}

/* Price number */
.feat-tag-num {
    font-size: 11px;
    font-weight: 900;
    color: rgba(15,8,0,0.95);
    letter-spacing: -0.5px;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
@media (min-width:768px) {
    .feat-tag-num { font-size: 15px; }
    .feat-tag-curr { font-size: 8px; }
    .feat-price-tag { padding: 6px 12px 6px 14px; border-radius: 12px 0 0 0; }
}


/* S5: New Arrival 2x2 Grid Slide */
.grid-slide { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; flex: 0 0 calc(100vw - 20px); max-width: 440px; }
@media (min-width: 768px) {
    /* Desktop scaling as requested: 5 items per row - we override the mobile 2x2 */
    .grid-slide { grid-template-columns: repeat(5, 1fr); grid-template-rows: auto; flex: 0 0 auto; max-width: none; width: 100%; gap: 20px; }
    .new-arrival-scroll { flex-wrap: wrap; justify-content: center; }
}
/* ── New Arrivals Section ── */
.na-section { padding-top: 0; }

/* Heading */
.na-heading-bg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 14px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #04080f 0%, #070d1a 50%, #040810 100%);
    border-bottom: 1px solid rgba(100,150,255,0.15);
}
.na-heading-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(100,150,255,0.05), transparent);
    background-size: 200% 100%;
    animation: hdr-shimmer 5s ease-in-out infinite;
}
.na-heading-left { display:flex; align-items:center; gap:10px; position:relative; z-index:1; }

/* Sparkle icon */
.na-icon-wrap {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(100,150,255,0.2), rgba(180,200,255,0.1));
    border: 1px solid rgba(100,150,255,0.4);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    animation: na-pulse 2.5s ease-in-out infinite;
}
@keyframes na-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(100,150,255,0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(100,150,255,0); }
}
.na-icon {
    font-size: 14px;
    background: linear-gradient(135deg, #a0c0ff, #ffffff, #6496ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: na-spin 4s linear infinite;
}
@keyframes na-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.na-title-wrap { display:flex; flex-direction:column; gap:1px; position:relative; z-index:1; }
.na-main-title { font-size:15px; font-weight:900; color:#fff; letter-spacing:-0.3px; line-height:1.2; }
@media (min-width:768px) { .na-main-title { font-size:20px; } }
.na-title-shine {
    background: linear-gradient(90deg, #6496ff, #a0c4ff, #ffffff, #6496ff);
    background-size: 200% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: gold-flow 3s linear infinite;
}
.na-subtitle { font-size:9px; color:rgba(180,200,255,0.6); letter-spacing:0.3px; }

.na-heading-right { display:flex; align-items:center; gap:10px; position:relative; z-index:1; }
.na-new-badge {
    font-size:8px; font-weight:900; letter-spacing:1.5px;
    color:#fff; background:linear-gradient(135deg,#4880ff,#a0c4ff);
    padding:2px 8px; border-radius:20px;
    box-shadow: 0 2px 10px rgba(72,128,255,0.45);
    animation: na-badge-glow 2s ease-in-out infinite;
}
@keyframes na-badge-glow {
    0%,100% { box-shadow: 0 2px 8px rgba(72,128,255,0.4); }
    50%      { box-shadow: 0 2px 18px rgba(160,196,255,0.7); }
}

/* Horizontal peek scroll */
.na-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    padding: 10px 12px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: #050a0f;
}
.na-grid::-webkit-scrollbar { display: none; }

@media (min-width:768px) {
    .na-grid { gap: 10px; padding: 10px 20px 16px; background: transparent; }
}

/* Editorial Grid */
.na-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px;
    padding: 4px;
}
@media (min-width:768px) { .na-grid { gap: 8px; padding: 8px 16px; } }

@property --na-ang {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Base card */
.na-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: transform 0.35s ease, box-shadow 0.35s;

    /* Animated Running Border */
    background: 
        linear-gradient(#050a0f, #050a0f) padding-box,
        conic-gradient(from var(--na-ang), #4880ff, #ffffff, #90c0ff, #ffffff, #4880ff) border-box;
    border: 1.5px solid transparent;
    animation: na-border-spin 4s linear infinite;
}
@keyframes na-border-spin { to { --na-ang: 360deg; } }
/* Tall card — spans 2 rows, left column */
.na-card-tall {
    grid-row: span 2;
    aspect-ratio: unset;
}
@media (min-width:768px) {
    .na-card { border-radius: 14px; }
}
.na-card:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.7); }

.na-photo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transition: transform 0.5s ease;
}
.na-card:hover .na-photo { transform: scale(1.05); }



/* Badge */
.na-card-badge {
    position: absolute;
    top: 6px; left: 6px;
    font-size: 6px; font-weight: 900; letter-spacing: 0.5px;
    color: #fff; text-transform: uppercase;
    padding: 2px 5px; border-radius: 3px;
    background: linear-gradient(135deg, #4880ff, #90b8ff);
    box-shadow: 0 2px 6px rgba(72,128,255,0.5);
    z-index: 2;
}
.na-card-badge.sale {
    background: linear-gradient(135deg, #28c066, #70e8a0);
    box-shadow: 0 2px 6px rgba(40,192,102,0.5);
}

/* ── Sleek Mini Price Tag (Bottom-Left) ── */
.na-price-tag {
    position: absolute;
    bottom: 0; left: 0;
    z-index: 3;
    display: inline-flex; align-items: baseline; gap: 1px;
    padding: 3px 8px 3px 5px;
    border-radius: 0 6px 0 0;
    background: linear-gradient(135deg, #060c18 0%, #102442 50%, #060c18 100%);
    border-top: 1px solid rgba(100,150,255,0.4);
    border-right: 1px solid rgba(100,150,255,0.4);
    box-shadow: 3px -3px 10px rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}
.na-tag-curr {
    font-size: 6px; font-weight: 700; color: #a0c4ff;
    position: relative; top: -1px;
}
.na-tag-num {
    font-size: 10px; font-weight: 800; color: #ffffff;
    letter-spacing: -0.2px; text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
@media (min-width:768px) {
    .na-price-tag { padding: 4px 10px 4px 8px; border-radius: 0 8px 0 0; }
    .na-tag-num { font-size: 12px; }
    .na-tag-curr { font-size: 8px; top: -2px; }
}

/* ── Promo Sliding Banner ── */

@property --pba {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
.promo-banner-wrap {
    position: relative;
    margin: 6px 12px;
    height: 100px;
    border-radius: 14px;
    background:
        linear-gradient(#0a0800, #0a0800) padding-box,
        conic-gradient(from var(--pba), #b8860b, #f5e17a, #ffffff, #d4af37, #b8860b) border-box;
    border: 2px solid transparent;
    animation: promo-border-spin 4s linear infinite;
    overflow: hidden;
}
@keyframes promo-border-spin { to { --pba: 360deg; } }
@media (min-width:768px) { .promo-banner-wrap { height: 160px; margin: 10px 20px; border-radius: 18px; } }

.promo-slider {
    display: flex;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
    will-change: transform;
}

/* Each slide — 2 visible on mobile */
.promo-slide {
    flex: 0 0 calc(50% - 1.5px);
    height: 100%;
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}
/* Gold separator line between slides */
.promo-slide:not(:last-child) {
    margin-right: 3px;
    border-right: none;
}
.promo-slide:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 1.5px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.6), transparent);
    z-index: 2;
    pointer-events: none;
}
@media (min-width:768px) {
    .promo-slide { flex: 0 0 100%; }
    .promo-slide:not(:last-child) { margin-right: 0; }
    .promo-slide:not(:last-child)::after { display: none; }
}

/* Full-bleed photo */
.promo-photo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transition: transform 0.6s ease;
}
.promo-slide:hover .promo-photo { transform: scale(1.04); }


/* Content */
.promo-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 3px; }
.promo-eyebrow { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; }
@media (min-width:768px) { .promo-eyebrow { font-size: 11px; } }

.promo-title { font-size: 20px; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -0.5px; }
@media (min-width:768px) { .promo-title { font-size: 32px; } }

/* Highlighted word — gold */
.promo-hl {
    background: linear-gradient(90deg, #d4af37, #f5e17a, #d4af37);
    background-size: 200% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: gold-flow 3s linear infinite;
}
.promo-hl-blue {
    background: linear-gradient(90deg, #6496ff, #a0c0ff, #6496ff);
    background-size: 200% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: gold-flow 3s linear infinite;
}
.promo-hl-green {
    background: linear-gradient(90deg, #4dc97a, #90f0b0, #4dc97a);
    background-size: 200% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: gold-flow 3s linear infinite;
}

.promo-desc { font-size: 10px; color: rgba(255,255,255,0.55); line-height: 1.3; max-width: 200px; }
@media (min-width:768px) { .promo-desc { font-size: 13px; max-width: 380px; } }

/* CTA Button */
.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #0a0600;
    background: linear-gradient(135deg, #d4af37, #f5e17a);
    box-shadow: 0 3px 12px rgba(184,137,42,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.promo-btn:hover { transform: scale(1.05); box-shadow: 0 5px 20px rgba(184,137,42,0.6); }
.promo-btn-blue  { color: #020510; background: linear-gradient(135deg, #4880ff, #90c0ff); box-shadow: 0 3px 12px rgba(72,128,255,0.4); }
.promo-btn-green { color: #010a04; background: linear-gradient(135deg, #28c066, #70e8a0); box-shadow: 0 3px 12px rgba(40,192,102,0.4); }
@media (min-width:768px) { .promo-btn { font-size: 12px; padding: 7px 20px; } }

/* Dot indicators */
.promo-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
}
.promo-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.promo-dot.active { width: 18px; border-radius: 3px; background: #d4af37; }

/* Arrow buttons */
.promo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.8);
    font-size: 10px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.promo-arrow:hover { background: rgba(184,137,42,0.3); border-color: rgba(184,137,42,0.5); color: #d4af37; }
.promo-prev { left: 10px; }
.promo-next { right: 10px; }
@media (min-width:768px) { .promo-arrow { width: 36px; height: 36px; font-size: 13px; } }

/* S6: Brand Banner */

.brand-banner { height: 250px; margin: 40px 20px; border-radius: 16px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.banner-overlay { background: rgba(0,0,0,0.6); padding: 30px; border-radius: 16px; backdrop-filter: blur(2px); border: 1px solid rgba(229, 195, 90, 0.3); }
.banner-overlay h3 { color: var(--gold-light); font-size: 24px; margin-bottom: 8px; font-style: italic; }

/* S7: Reel Section Cards */
.reel-card { flex: 0 0 120px; height: 180px; position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; }
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 24px; color: rgba(255,255,255,0.8); }

/* S8: Reviews */
.review-card { flex: 0 0 280px; background: var(--bg-card-solid); border: 1px solid var(--glass-border); padding: 20px; border-radius: 16px; }
.stars { color: var(--gold-primary); margin-bottom: 8px; font-size: 14px; }
.review-card p { font-size: 14px; margin-bottom: 12px; font-style: italic; line-height: 1.5; color: #ddd; }
.reviewer-name { font-size: 13px; color: var(--text-secondary); font-weight: bold;}

/* S9: Footer */
.main-footer { padding: 40px 20px; text-align: center; background: #0a0a0c; border-top: 1px solid var(--glass-border); margin-top: 40px; }
.footer-logo { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.main-footer p { color: var(--text-secondary); font-size: 14px; margin-bottom: 20px; }
.copyright { margin-top: 30px !important; font-size: 12px !important; opacity: 0.5; }

/* ── Section 6: Signature Brand Banner ── */
.sig-banner-wrap {
    padding: 10px 16px;
    margin: 20px 0;
}
@media (min-width:768px) {
    .sig-banner-wrap { padding: 20px 40px; margin: 40px 0; }
}

.sig-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,175,55,0.4);
}
@media (min-width:768px) {
    .sig-banner { aspect-ratio: 21 / 9; border-radius: 24px; }
}

.sig-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sig-glass-box {
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
    animation: sig-float 6s ease-in-out infinite;
}
@keyframes sig-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.sig-eyebrow {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}
.sig-title {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.sig-title-gold {
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #f5e17a, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sig-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.4;
}

.sig-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #d4af37, #f5e17a);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
    transition: all 0.3s ease;
}
.sig-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212,175,55,0.6);
}
@media (min-width:768px) {
    .sig-glass-box { padding: 40px; border-radius: 16px; }
    .sig-eyebrow { font-size: 11px; margin-bottom: 10px; }
    .sig-title { font-size: 36px; margin-bottom: 12px; }
    .sig-desc { font-size: 14px; margin-bottom: 24px; }
    .sig-btn { font-size: 13px; padding: 12px 24px; }
}

/* ── Section 7: Watch & Shop Reels ── */
.reels-section {
    padding-top: 10px;
}
.reels-heading {
    margin-bottom: 16px;
    background: transparent;
    border: none;
    padding: 0 16px;
}
.reels-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 0 16px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.reels-scroll::-webkit-scrollbar { display: none; }

.reel-card {
    flex: 0 0 calc(50% - 6px); /* 2 per screen on mobile */
    height: 280px; /* Portrait 9:16 approx for reels */
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    scroll-snap-align: start;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}
@media (min-width:768px) {
    .reel-card { flex: 0 0 220px; height: 390px; border-radius: 18px; }
}
.reel-card:hover { transform: translateY(-4px) scale(1.02); }

/* Play button centered */
.reel-play-btn {
    position: absolute;
    top: 45%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    padding-left: 3px; /* visual center for play icon */
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    z-index: 2;
}
.reel-card:hover .reel-play-btn {
    background: rgba(255,0,80,0.8);
    border-color: #ff0050;
    box-shadow: 0 0 20px rgba(230,0,80,0.5);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Bottom info & gradient */
.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 30%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    z-index: 1;
}
/* Views stack bottom-left */
.reel-actions {
    position: absolute;
    left: 8px;
    bottom: 8px;
    z-index: 3;
}
.reel-views {
    font-size: 8px; font-weight: 700; color: rgba(255,255,255,0.9);
    display: flex; align-items: center; gap: 4px;
    background: rgba(0,0,0,0.4);
    padding: 3px 6px 3px 5px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.reel-views i { font-size: 7px; color: #ff0050; }

/* Footer info */
.reel-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 80%;
    padding-bottom: 4px;
}
.reel-price-tag {
    display: inline-flex; align-items: center;
    font-size: 13px; font-weight: 900;
    color: rgba(10,5,0,0.9);
    background: linear-gradient(135deg, #d4af37, #f5e17a, #b8860b);
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(212,175,55,0.3);
}
.reel-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Section 8: Inner Circle Reviews ── */
.premium-review-card {
    flex: 0 0 280px;
    background: linear-gradient(145deg, #0f1014, #1a1c23);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    scroll-snap-align: start;
    transition: transform 0.3s ease, border-color 0.3s;
}
.premium-review-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }

/* Marquee Auto-Slider */
.reviews-marquee-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 20px;
}
.reviews-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: reviewsMarquee 30s linear infinite;
    padding-left: 16px;
}
.reviews-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes reviewsMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 8px)); }
}

.pr-stars {
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 2px;
}
.pr-text {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
    font-style: normal;
    flex-grow: 1;
}
.pr-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.pr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--gold-primary);
    padding: 2px;
    background: #000;
}
.pr-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pr-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.pr-verified {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
    .premium-review-card { flex: 0 0 340px; padding: 24px; }
    .pr-text { font-size: 14px; }
    .pr-avatar { width: 48px; height: 48px; }
    .pr-name { font-size: 15px; }
    .pr-verified { font-size: 11px; }
}

/* ── Section 8.5: Trust Features Grid ── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px 10px;
}
.trust-item {
    background: transparent;
    border: 1px dashed rgba(212,175,55,0.3);
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: none;
}
.trust-item:hover {
    transform: translateY(-3px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 8px 20px rgba(212,175,55,0.15);
}
.trust-icon-box {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(0,0,0,0));
    border: 1px solid rgba(212,175,55,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-primary);
    font-size: 18px;
    animation: trust-float 3s ease-in-out infinite;
    margin-bottom: 4px;
}
.trust-item:nth-child(2) .trust-icon-box { animation-delay: 0.5s; }
.trust-item:nth-child(3) .trust-icon-box { animation-delay: 1.0s; }
.trust-item:nth-child(4) .trust-icon-box { animation-delay: 1.5s; }

@keyframes trust-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

.trust-item h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.trust-item p {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .trust-grid { gap: 20px; max-width: 800px; margin: 0 auto; }
    .trust-item { padding: 24px; border-radius: 16px; }
    .trust-icon-box { width: 54px; height: 54px; font-size: 22px; }
    .trust-item h4 { font-size: 14px; }
    .trust-item p { font-size: 12px; }
}

/* ── Section 9: Premium Footer ── */
.premium-footer {
    background: linear-gradient(to bottom, #050507, #0a0b0e, #050507);
    border-top: 1px solid rgba(212,175,55,0.15);
    padding: 50px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.footer-logo-premium {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.footer-tagline {
    font-size: 11px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.8;
}
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: center; /* Centered on mobile */
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
}
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center links inside columns on mobile */
}
.footer-col h4 {
    font-size: 13px;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    display: inline-block;
    padding-bottom: 4px;
}
.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s;
}
.footer-col a:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-socials a:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 25px;
}
.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.footer-legal a {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal a:hover { color: #fff; }

.dot-separator {
    color: rgba(255,255,255,0.1);
    font-size: 10px;
}
.copyright-text {
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    .footer-col {
        align-items: flex-start; /* Restore left alignment for desktop */
    }
    .footer-col h4 {
        display: block;
        border-bottom: none;
        padding-bottom: 0;
    }
}
