/* ============================================
   Shraddha Gems & Jewellery - Main Stylesheet
   Theme: Royal Plum #3f0636 + Luxury Gold #f0a70b
   ============================================ */

/* CSS Variables */
:root {
    --rose-plum: linear-gradient(160deg, #1a0115 0%, #2a0424 30%, #3f0636 60%, #1a0115 100%);
    --plum: #3f0636;
    --plum-dark: #2a0424;
    --plum-light: #6b1060;
    --gold: #f0a70b;
    --gold-dark: #c88a00;
    --gold-light: #f5c842;
    --cream: #fdf8f0;
    --white: #ffffff;
    --text-dark: #1a0010;
    --text-muted: #7a6070;
    --border: #e8d5e0;
    --shadow: 0 4px 24px rgba(63, 6, 54, 0.12);
    --shadow-lg: 0 12px 48px rgba(63, 6, 54, 0.18);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-head: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--plum);
    line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(90deg, var(--plum-dark), var(--plum), var(--plum-dark));
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 9px 0;
    position: relative;
    z-index: 1000;
}

.announcement-bar .swiper-slide {
    text-align: center;
    font-family: var(--font-body);
}

.announcement-bar .ann-link {
    color: var(--gold-light);
    text-decoration: none;
}

.announcement-bar .ann-link:hover {
    color: var(--white);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(63, 6, 54, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 14px 0;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(240,167,11,0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    color: var(--plum);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gold-dark);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 14px !important;
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:hover {
    color: var(--plum) !important;
}

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 200px;
}

.dropdown-item {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 9px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--plum);
    padding-left: 26px;
}

/* Header Icons */
.icon-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--plum);
    font-size: 17px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--cream);
    color: var(--gold-dark);
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gold);
    color: var(--plum-dark);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn { color: #25d366 !important; }
.whatsapp-btn:hover { background: #e8fff0 !important; }

/* ============================================
   SEARCH BAR — Premium Redesign
   ============================================ */

/* ── Overlay backdrop ── */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 0, 18, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 998;
    animation: searchOverlayIn 0.25s ease;
}
.search-overlay.active { display: block; }

@keyframes searchOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Bar wrap ── */
.search-bar-wrap {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #2a0424 0%, #3f0636 50%, #5a0a50 100%);
    border-bottom: 2px solid var(--gold);
    padding: 14px 0 16px;
    box-shadow: 0 8px 32px rgba(63, 6, 54, 0.45);
    animation: searchBarDrop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: top center;
}

@keyframes searchBarDrop {
    from { opacity: 0; transform: scaleY(0.85) translateY(-8px); }
    to   { opacity: 1; transform: scaleY(1)    translateY(0); }
}

/* ── Search label ── */
.search-bar-label {
    text-align: center;
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 10px;
}

/* ── Form ── */
.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(240, 167, 11, 0.4);
    border-radius: 50px;
    padding: 5px 6px 5px 20px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    position: relative;
}

.search-form:focus-within {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 3px rgba(240, 167, 11, 0.18), 0 4px 24px rgba(0,0,0,0.25);
}

/* ── Search icon inside input ── */
.search-form-icon {
    color: rgba(240, 167, 11, 0.6);
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
    pointer-events: none;
    transition: color 0.2s;
}
.search-form:focus-within .search-form-icon { color: var(--gold); }

/* ── Input ── */
.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.3px;
    padding: 8px 0;
    caret-color: var(--gold);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.38);
    font-weight: 300;
}

/* ── Keyboard hint ── */
.search-kbd-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-right: 10px;
    opacity: 0.4;
    transition: opacity 0.2s;
}
.search-form:focus-within .search-kbd-hint { opacity: 0; }
.search-kbd-hint kbd {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 11px;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

@media (max-width: 576px) { .search-kbd-hint { display: none; } }

/* ── Submit button ── */
.search-submit {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--plum-dark);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(240,167,11,0.4);
}

.search-submit:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(240,167,11,0.6);
}

/* ── Close button ── */
.search-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    transition: all 0.2s;
}

.search-close:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.5);
    color: white;
}

/* ── Quick search chips ── */
.search-quick-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.search-quick-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.search-quick-chip {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(240,167,11,0.3);
    background: rgba(240,167,11,0.08);
    color: rgba(240,167,11,0.85);
    cursor: pointer;
    transition: all 0.18s;
    text-decoration: none;
    white-space: nowrap;
}

.search-quick-chip:hover {
    background: rgba(240,167,11,0.22);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

/* ============================================
   SEARCH SUGGESTIONS DROPDOWN
   ============================================ */
.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(63, 6, 54, 0.22), 0 4px 16px rgba(0,0,0,0.12);
    border: 1px solid rgba(63,6,54,0.08);
    overflow: hidden;
    z-index: 9999;
    animation: suggestionsIn 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: top center;
}

@keyframes suggestionsIn {
    from { opacity: 0; transform: scaleY(0.9) translateY(-6px); }
    to   { opacity: 1; transform: scaleY(1)   translateY(0); }
}

/* ── Suggestions header ── */
.sug-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 8px;
    background: linear-gradient(135deg, #fdf5ff, #fff8f0);
    border-bottom: 1px solid #f0e0f8;
}

.sug-header-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--plum);
    opacity: 0.6;
}

.sug-count {
    font-size: 10px;
    color: var(--text-muted);
    background: #f0e0f8;
    padding: 2px 10px;
    border-radius: 50px;
}

/* ── Individual suggestion ── */
.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid #faf5ff;
    transition: background 0.15s;
    position: relative;
}

.search-suggestion-item:last-of-type { border-bottom: none; }

.search-suggestion-item:hover {
    background: linear-gradient(90deg, #faf5ff, #fff9f0);
}

.search-suggestion-item:hover .ssi-arrow { opacity: 1; transform: translateX(0); }

/* ── Product image ── */
.ssi-img {
    width: 52px;
    height: 69px; /* 3:4 ratio */
    min-width: 52px;
    min-height: 69px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0e8ff, #fff5e0);
    flex-shrink: 0;
    border: 1.5px solid #e8d0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
}

/* shimmer while image loads */
.ssi-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f0e8ff 25%, #e8d5f8 50%, #f0e8ff 75%);
    background-size: 200% 100%;
    animation: ssiShimmer 1.2s infinite;
    z-index: 0;
}
.ssi-img img { position: relative; z-index: 1; }
.ssi-img span { position: relative; z-index: 1; }

@keyframes ssiShimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

/* stop shimmer once image loaded */
.ssi-img img.loaded::before { display: none; }

.ssi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ── Product info ── */
.ssi-info { flex: 1; min-width: 0; }

.ssi-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--plum);
    opacity: 0.5;
    margin-bottom: 3px;
}

.ssi-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.ssi-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ssi-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--plum);
}

.ssi-original {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.ssi-off {
    font-size: 0.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--plum-dark);
    padding: 1px 7px;
    border-radius: 50px;
}

/* ── Arrow indicator ── */
.ssi-arrow {
    font-size: 12px;
    color: var(--plum);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.18s ease;
    flex-shrink: 0;
}

/* ── Loading state ── */
.search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.search-loading-dots {
    display: flex;
    gap: 5px;
}

.search-loading-dots span {
    width: 7px;
    height: 7px;
    background: var(--plum);
    border-radius: 50%;
    animation: loadingDot 1.2s infinite ease-in-out;
    opacity: 0.3;
}

.search-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.search-loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingDot {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40%            { opacity: 1;   transform: scale(1.1); }
}

/* ── No results state ── */
.search-no-result {
    padding: 28px 20px;
    text-align: center;
}

.search-no-result-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.35;
}

.search-no-result-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.search-no-result-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ── "See all results" footer ── */
.search-see-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--plum);
    text-decoration: none;
    background: linear-gradient(90deg, #faf5ff, #fff9f0);
    border-top: 1px solid #f0e0f8;
    transition: background 0.15s;
}

.search-see-all:hover { background: linear-gradient(90deg, #f0e8ff, #fff3d0); }

.search-see-all-arrow {
    width: 26px;
    height: 26px;
    background: var(--plum);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    transition: transform 0.18s;
}

.search-see-all:hover .search-see-all-arrow { transform: translateX(3px); }


/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--plum-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(240,167,11,0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240,167,11,0.5);
    color: var(--plum-dark);
}

.btn-plum {
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(63,6,54,0.3);
}

.btn-plum:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63,6,54,0.45);
    color: var(--white);
}

.btn-outline-plum {
    background: transparent;
    color: var(--plum);
    border: 2px solid var(--plum);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 9px 26px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-plum:hover {
    background: var(--plum);
    color: var(--white);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.45);
    color: var(--white);
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: linear-gradient(135deg, rgba(240,167,11,0.1), rgba(240,167,11,0.05));
    border: 1px solid rgba(240,167,11,0.3);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 14px;
    position: relative;
}

.section-title .gold-text {
    color: var(--gold-dark);
}

.title-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--plum), var(--gold));
    border-radius: 3px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 12px auto 0;
    line-height: 1.7;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 90vh;
    min-height: 520px;
}

/* ── SPLIT SCREEN SLIDE ── */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-split {
    display: flex;
    width: 100%;
    height: 100%;
}

/* LEFT TEXT PANEL */
.hero-split-text {
    position: relative;
    width: 52%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2a0424 0%, #3f0636 50%, #6b1060 100%);
    overflow: hidden;
    flex-shrink: 0;
}

.hero-slide-1 .hero-split-text { background: linear-gradient(135deg, #2a0424 0%, #3f0636 50%, #6b1060 100%); }
.hero-slide-2 .hero-split-text { background: linear-gradient(135deg, #1a0010 0%, #3f0636 60%, #5a2000 100%); }
.hero-slide-3 .hero-split-text { background: linear-gradient(135deg, #0a000a 0%, #2a0424 60%, #4a1040 100%); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    z-index: 1;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(240,167,11,0.12) 0%, transparent 55%),
        radial-gradient(circle at 90% 20%, rgba(240,167,11,0.07) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hero-split-text-inner {
    position: relative;
    z-index: 2;
    padding: 60px 48px 60px 64px;
    max-width: 600px;
}

/* RIGHT IMAGE PANEL */
.hero-split-img {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.hero-split-img-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 8s ease;
}

.swiper-slide-active .hero-split-img-el {
    transform: scale(1.04);
}

.hero-split-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    background: linear-gradient(135deg, #4a1040, #6b0f5c);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.hero-btn-outline {
    border-color: rgba(255,255,255,0.5) !important;
    color: #fff !important;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1.5px solid rgba(240,167,11,0.5);
    background: rgba(240,167,11,0.08);
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
    animation: fadeInUp 0.7s ease both;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    animation: fadeInUp 0.7s 0.15s ease both;
}

.hero-title .gold {
    color: var(--gold-light);
    display: block;
}

.hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    line-height: 1.75;
    animation: fadeInUp 0.7s 0.3s ease both;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.45s ease both;
}

.hero-decor {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.08;
    font-size: 300px;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

/* Hero image column - must be above overlay */
.hero-img-col {
    position: relative;
    z-index: 3;
}

.hero-decor-fallback {
    font-size: 120px;
    opacity: 0.4;
    animation: floatImg 3s ease-in-out infinite;
    user-select: none;
    filter: drop-shadow(0 10px 30px rgba(240,167,11,0.3));
}

.hero-product-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatImg 3s ease-in-out infinite;
    z-index: 3;
}

.hero-product-img {
    max-height: 460px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
    border-radius: 20px;
    display: block;
}

.hero-decor-large {
    font-size: 140px;
    opacity: 0.25;
    animation: floatImg 3s ease-in-out infinite;
    user-select: none;
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

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

/* Hero Navigation */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    transition: var(--transition);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--plum-dark);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    width: 10px;
    height: 10px;
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   CATEGORY PILLS
   ============================================ */
.category-section {
    background: var(--cream);
    padding: 56px 0;
}

/* ── Legacy emoji cat-card (kept for compatibility) ── */
.cat-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    text-decoration: none;
}
.cat-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-icon  { font-size: 40px; margin-bottom: 10px; display: block; }
.cat-name  { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--plum); }

/* ── New image-based category card ── */
.cat-card-new {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(63,6,54,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}
.cat-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(63,6,54,0.18);
}

.cat-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #f0e8ff, #e8d0ff);
    overflow: hidden;
}
.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.cat-card-new:hover .cat-img {
    transform: scale(1.06);
}

.cat-emoji-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #f0e8ff 0%, #faf0ff 100%);
}

.cat-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(63,6,54,0.55) 0%, transparent 60%);
    pointer-events: none;
}

.cat-info {
    padding: 10px 12px 12px;
    background: white;
    text-align: center;
}

.cat-name-new {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--plum);
    line-height: 1.3;
}
.cat-count {
    display: block;
    font-size: 11px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 2px;
}

/* ── Mobile hero slider image ── */
.hero-mobile-img {
    display: none;
    width: 100%;
    max-height: 220px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.hero-mobile-img img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

/* ── Mobile: stack image on top, text below ── */
@media (max-width: 767px) {
    .hero-swiper {
        height: auto;
        min-height: unset;
    }
    .hero-split {
        flex-direction: column;
    }
    .hero-split-img {
        width: 100%;
        height: 55vw;
        min-height: 220px;
        max-height: 280px;
        order: -1; /* image on top */
        flex: none;
    }
    .hero-split-text {
        width: 100%;
        height: auto;
        flex: none;
    }
    .hero-split-text-inner {
        padding: 28px 20px 32px;
    }
    .hero-title {
        font-size: clamp(24px, 7vw, 36px) !important;
    }
    .hero-sub {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .hero-btns { gap: 10px; }
    .hero-btns a {
        font-size: 13px;
        padding: 10px 18px;
    }
    .cat-card-new { border-radius: 12px; }
    .cat-emoji-fallback { font-size: 36px; }
}

/* ── Tablet: tighter split ── */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-split-text { width: 55%; }
    .hero-split-text-inner { padding: 40px 32px 40px 40px; }
    .hero-title { font-size: clamp(28px, 4vw, 44px) !important; }
}

/* ── Ensure old classes don't conflict ── */
.hero-mobile-img { display: none; }
.hero-img-col    { display: flex; }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-section {
    padding: 72px 0;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

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

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: linear-gradient(135deg, var(--cream), #f5e8ef);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--plum);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.sale { background: #e74c3c; color: var(--white); }

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    bottom: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
}

.product-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.action-cart { background: var(--plum); color: var(--white); }
.action-cart:hover { background: var(--plum-light); }
.action-wa { background: #25d366; color: var(--white); }
.action-wa:hover { background: #128c7e; }
.action-view { background: var(--gold); color: var(--plum-dark); }
.action-view:hover { background: var(--gold-dark); }

.product-info {
    padding: 16px;
}

.product-cat {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--plum);
    
}

.price-original {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-off {
    font-size: 12px;
    font-weight: 600;
    color: #27ae60;
    background: rgba(39,174,96,0.1);
    padding: 2px 8px;
    border-radius: 50px;
}

.product-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.product-btns .btn-sm {
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-cart-sm {
    background: var(--plum);
    color: var(--white);
}

.btn-cart-sm:hover {
    background: var(--plum-light);
}

.btn-wa-sm {
    background: #25d366;
    color: var(--white);
}

.btn-wa-sm:hover {
    background: #128c7e;
}

/* ============================================
   OFFERS SECTION
   ============================================ */
.offers-section {
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 50%, rgba(240,167,11,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 90% 20%, rgba(240,167,11,0.08) 0%, transparent 40%);
}

.offers-section .section-title {
    color: var(--white);
}

.offer-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240,167,11,0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.offer-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.offer-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.offer-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.offer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-validity {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
}

/* ============================================
   WHY CHOOSE US / COUNTERS
   ============================================ */
.why-section {
    padding: 72px 0;
    background: var(--cream);
}

.counter-card {
    text-align: center;
    padding: 32px 20px;
}

.counter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold-light);
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(63,6,54,0.25);
}

.counter-number {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 900;
    color: var(--plum);
    display: block;
    line-height: 1;
}

.counter-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(63,6,54,0.1), rgba(63,6,54,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--plum);
}

.why-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 4px;
}

.why-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 72px 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-head);
    font-size: 80px;
    color: var(--plum);
    opacity: 0.08;
    line-height: 1;
}

.stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-light);
    flex-shrink: 0;
}

.reviewer-name {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--plum);
}

.reviewer-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   STORE LOCATOR
   ============================================ */
.stores-section {
    padding: 72px 0;
    background: var(--cream);
}

.store-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    height: 100%;
}

.store-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.store-city {
    background: var(--plum);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.store-name {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 12px;
}

.store-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.store-detail i {
    color: var(--gold-dark);
    margin-top: 2px;
    min-width: 16px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 72px 0;
    background: var(--white);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--plum);
    background: var(--white);
    padding: 18px 24px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--plum);
    color: var(--gold-light);
}

.accordion-button::after {
    filter: invert(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(10);
}

.accordion-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 18px 24px;
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-hero {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.shop-hero h1 {
    font-family: var(--font-head);
    font-size: 40px;
    color: var(--white);
    margin-bottom: 12px;
}

.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

.shop-layout {
    padding: 48px 0;
}

.filter-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.filter-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--plum);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--plum);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
}

.filter-check input {
    accent-color: var(--plum);
    width: 16px;
    height: 16px;
}

.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.sort-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    background: var(--white);
}

/* Pagination */
.pagination {
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    border: 1px solid var(--border) !important;
    color: var(--plum);
    font-weight: 600;
    transition: var(--transition);
}

.page-item.active .page-link,
.page-link:hover {
    background: var(--plum) !important;
    border-color: var(--plum) !important;
    color: var(--white) !important;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-section {
    padding: 60px 0;
}

/* Gallery main — styling handled inline in product.php for specificity */
.gallery-main {
    position: relative;
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fdf8f0, #f5e8ef);
    cursor: zoom-in;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--plum);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info .product-name {
    font-size: 28px;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
}

.in-stock { background: rgba(39,174,96,0.1); color: #27ae60; }
.out-stock { background: rgba(231,76,60,0.1); color: #e74c3c; }

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    transition: var(--transition);
}

.qty-btn:hover { background: var(--plum); color: var(--white); }

.qty-input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--plum);
    outline: none;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-section { padding: 60px 0; }

.cart-table {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-table th {
    background: var(--plum);
    color: var(--gold-light);
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 16px 20px;
}

.cart-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    font-size: 14px;
}

.cart-product-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-summary {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.summary-total {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--plum);
}

/* ============================================
   CART — MOBILE CARD LAYOUT
   ============================================ */

/* Hide table header on mobile, show cards instead */
@media (max-width: 767px) {
    .cart-section { padding: 28px 0; }

    /* Hide the desktop table entirely */
    .cart-table { display: none; }

    /* Show the mobile cards container */
    .cart-cards { display: flex; flex-direction: column; gap: 14px; }

    /* Individual product card */
    .cart-card {
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
        gap: 10px 12px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 14px;
        position: relative;
        box-shadow: 0 2px 10px rgba(63,6,54,0.06);
        transition: opacity 0.25s, transform 0.25s;
    }

    /* Product image — spans both rows on the left */
    .cart-card-img {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 10px;
        align-self: center;
    }

    .cart-card-img-placeholder {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 80px;
        height: 80px;
        border-radius: 10px;
        background: linear-gradient(135deg, #fdf8f0, #f5e8ef);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        align-self: center;
    }

    /* Product info (name + SKU) */
    .cart-card-info {
        grid-column: 2;
        grid-row: 1;
        padding-right: 30px; /* room for trash icon */
    }

    .cart-card-name {
        font-family: var(--font-head);
        font-size: 13px;
        color: var(--plum);
        font-weight: 600;
        line-height: 1.35;
        margin-bottom: 3px;
    }

    .cart-card-sku {
        font-size: 11px;
        color: var(--text-muted);
    }

    /* Bottom row: qty control + price */
    .cart-card-actions {
        grid-column: 2;
        grid-row: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .cart-card-price {
        font-size: 14px;
        font-weight: 700;
        color: var(--plum);
        white-space: nowrap;
    }

    /* Trash button — absolute top-right of card */
    .cart-card-remove {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        color: #e74c3c;
        font-size: 15px;
        cursor: pointer;
        padding: 4px;
        line-height: 1;
    }

    /* Qty control — slightly smaller on mobile */
    .cart-card .qty-control { width: auto; }
    .cart-card .qty-btn { width: 34px; height: 34px; font-size: 16px; }
    .cart-card .qty-input { width: 38px; height: 34px; font-size: 14px; }

    /* Action bar below cards */
    .cart-action-bar {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
    }

    .cart-action-bar .btn-outline-plum,
    .cart-action-bar .btn-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Desktop: hide cards, show table */
@media (min-width: 768px) {
    .cart-cards { display: none; }
    .cart-action-bar { display: none; } /* desktop uses its own flex row */
}

/* ============================================
   CHECKOUT / FORMS
   ============================================ */
.checkout-section { padding: 60px 0; }

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.form-section-title {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--plum);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 24px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-control, .form-select {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 11px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(63,6,54,0.08);
}

.payment-option {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-option:hover,
.payment-option.selected {
    border-color: var(--plum);
    background: rgba(63,6,54,0.03);
}

.payment-option input { accent-color: var(--plum); }

/* ============================================
   LOGIN / REGISTER
   ============================================ */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 60px 0;
}

.auth-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 480px;
    margin: 0 auto;
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.auth-title {
    font-family: var(--font-head);
    font-size: 28px;
    color: var(--plum);
    text-align: center;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--plum-dark) 0%, var(--plum) 100%);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    overflow-y: auto;
}

.admin-logo {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-logo .logo-main { font-size: 16px; }

.admin-nav {
    padding: 16px 0;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.admin-nav-item i {
    width: 20px;
    font-size: 16px;
    color: var(--gold-light);
}

.admin-nav-item:hover,
.admin-nav-item.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding-left: 28px;
}

.admin-nav-item.active {
    border-right: 3px solid var(--gold);
}

.admin-main {
    margin-left: 260px;
    min-height: 100vh;
    background: #f5f0f3;
    padding: 24px;
}

.admin-topbar {
    background: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.stat-value {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 12px 16px;
    border-bottom: 2px solid var(--border);
    background: var(--cream);
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    vertical-align: middle;
}

.admin-table tr:hover td { background: rgba(63,6,54,0.02); }

.status-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-pending { background: rgba(243,156,18,0.15); color: #e67e22; }
.status-processing { background: rgba(52,152,219,0.15); color: #2980b9; }
.status-delivered { background: rgba(39,174,96,0.15); color: #27ae60; }
.status-cancelled { background: rgba(231,76,60,0.15); color: #e74c3c; }

/* ============================================
   ORDER SUCCESS
   ============================================ */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 72px 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    margin: 0 auto 28px;
    box-shadow: 0 10px 30px rgba(39,174,96,0.35);
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    z-index: 998;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    color: var(--white);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--plum);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    background: var(--plum);
    color: var(--gold-light);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 997;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.back-to-top:hover { background: var(--plum-light); transform: translateY(-3px); }
.back-to-top.show { display: flex; animation: fadeInUp 0.3s ease; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: linear-gradient(160deg, #1a0115 0%, #2a0424 30%, #3f0636 60%, #1a0115 100%); color: rgba(255,255,255,0.8); }

.footer-top { padding: 60px 0 40px; }

.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); }

.footer-heading {
    font-family: var(--font-head);
    font-size: 16px;
    color: var(--gold-light);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(240,167,11,0.25);
}

.footer-links { list-style: none; padding: 0; }

.footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    display: block;
    padding: 5px 0;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.footer-contact .contact-item i {
    color: var(--gold);
    margin-top: 2px;
    min-width: 16px;
}

.footer-contact .contact-item a {
    color: rgba(255,255,255,0.65);
    display: block;
    transition: var(--transition);
}

.footer-contact .contact-item a:hover { color: var(--gold-light); }

.social-links { display: flex; gap: 10px; }

.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--plum-dark);
}

.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* ============================================
   ALERTS & TOAST
   ============================================ */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-msg {
    background: var(--plum);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.7s;
    border-left: 4px solid var(--gold);
    min-width: 280px;
}

.toast-msg.success { border-left-color: #27ae60; }
.toast-msg.error { border-left-color: #e74c3c; }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateX(100%); }
}

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, #f0e8ec 25%, #e8d5df 50%, #f0e8ec 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-swiper { height: auto; min-height: unset; }
    .hero-decor { display: none; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }

    /* Stack split layout vertically on tablet */
    .hero-split {
        flex-direction: column;
    }
    .hero-split-text {
        width: 100%;
        height: auto;
        min-height: unset;
    }
    .hero-split-img {
        width: 100%;
        height: 320px;
        flex: none;
    }
    .hero-split-text-inner {
        padding: 44px 40px;
    }
}

@media (max-width: 767px) {
    /* Hero: stacked full-width mobile layout like reference */
    .hero-swiper {
        height: auto;
        min-height: unset;
    }
    .hero-slide {
        height: auto;
    }
    .hero-split {
        flex-direction: column;
        height: auto;
    }
    /* Text panel on top, full width */
    .hero-split-text {
        width: 100%;
        height: auto;
        min-height: unset;
        flex-shrink: 0;
    }
    .hero-split-text-inner {
        padding: 48px 24px 40px 24px;
        max-width: 100%;
    }
    /* Image panel below text */
    .hero-split-img {
        width: 100%;
        height: 260px;
        flex: none;
    }
    .hero-split-img-el {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    .hero-title {
        font-size: clamp(26px, 8vw, 36px);
        line-height: 1.15;
    }
    .hero-tag {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }
    .hero-sub {
        font-size: 14px;
        margin-bottom: 24px;
        max-width: 100%;
    }
    .hero-btns {
        gap: 10px;
        flex-wrap: wrap;
    }
    .btn-gold, .btn-outline-plum {
        font-size: 13px;
        padding: 10px 22px;
    }
    .section-title { font-size: 24px; }
    .products-section { padding: 48px 0; }
    .product-btns { grid-template-columns: 1fr; }
    .auth-card { padding: 24px; }
    .form-card { padding: 20px; }
}

@media (max-width: 575px) {
    .logo-main { font-size: 15px; }
    .hero-slide .container { padding: 0 20px; }
    .announcement-bar { font-size: 12px; }
    .hero-split-text-inner {
        padding: 36px 20px 32px 20px;
    }
    .hero-split-img {
        height: 300px;
    }
    /* Navigation arrows smaller on mobile */
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 38px;
        height: 38px;
    }
    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 13px;
    }
}

/* Utility Classes */
.bg-cream { background: var(--cream); }
.text-plum { color: var(--plum); }
.text-gold { color: var(--gold-dark); }
.border-gold { border-color: var(--gold) !important; }
.fw-cinzel { font-family: var(--font-head); }
.divider-gold { width: 60px; height: 3px; background: linear-gradient(90deg, var(--plum), var(--gold)); border-radius: 3px; }

/* Lazy Load */
img[loading="lazy"] { opacity: 0; transition: opacity 0.3s ease; }
img[loading="lazy"].loaded { opacity: 1; }
/* ============================================
   OFFER POPUP MODAL
   ============================================ */

.offer-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 0, 18, 0.72);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.offer-popup-overlay.active  { display: flex; animation: popupOverlayIn 0.35s ease; }
.offer-popup-overlay.closing { display: flex; animation: popupOverlayOut 0.35s ease forwards; }

@keyframes popupOverlayIn  { from { opacity:0; } to { opacity:1; } }
@keyframes popupOverlayOut { from { opacity:1; } to { opacity:0; } }

/* ── Box ── */
.offer-popup-box {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 780px;
    max-height: 92vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 100px rgba(63,6,54,0.45), 0 8px 32px rgba(0,0,0,0.25);
    animation: popupBoxIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.offer-popup-overlay.closing .offer-popup-box {
    animation: popupBoxOut 0.35s ease forwards;
}
@keyframes popupBoxIn  { from { opacity:0; transform:scale(0.88) translateY(24px); } to { opacity:1; transform:scale(1) translateY(0); } }
@keyframes popupBoxOut { from { opacity:1; transform:scale(1); } to { opacity:0; transform:scale(0.9) translateY(16px); } }

/* ── Close button ── */
.offer-popup-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 34px; height: 34px;
    background: rgb(152, 5, 101);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 13px;
    cursor: pointer;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}
.offer-popup-close:hover { background: rgb(201, 12, 135); transform: rotate(90deg); }

/* ── Image panel (left) ── */
.offer-popup-img-panel {
    flex: 0 0 42%;
    position: relative;
    background: linear-gradient(160deg, #2a0424 0%, #3f0636 40%, #6b0f5c 100%);
    overflow: hidden;
    min-height: 400px;
}
.offer-popup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Image fallback decor */
.offer-popup-img-fallback {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px;
    padding: 2rem;
}
.opif-decor { font-size: 5rem; animation: floatGem 3s ease-in-out infinite; }
@keyframes floatGem {
    0%,100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-12px) rotate(5deg); }
}
.opif-rings { position: relative; width: 120px; height: 120px; }
.opif-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(240,167,11,0.3);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: ringPulse 2.5s ease-in-out infinite;
}
.opif-ring-1 { width:60px;  height:60px;  animation-delay:0s; }
.opif-ring-2 { width:90px;  height:90px;  animation-delay:0.5s; }
.opif-ring-3 { width:120px; height:120px; animation-delay:1s; }
@keyframes ringPulse {
    0%,100% { opacity:0.3; transform:translate(-50%,-50%) scale(1); }
    50%      { opacity:0.7; transform:translate(-50%,-50%) scale(1.08); }
}
.opif-sparkles { display:flex; gap:12px; font-size:1.4rem; }

/* Ribbon badge */
.offer-popup-ribbon {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--plum-dark);
    border-radius: 50%;
    width: 88px; height: 88px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(240,167,11,0.5);
    font-family: var(--font-head);
    animation: ribbonPop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
}
@keyframes ribbonPop { from { opacity:0; transform:translateX(-50%) scale(0.4); } to { opacity:1; transform:translateX(-50%) scale(1); } }
.ribbon-big   { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.ribbon-small { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; }

/* ── Content panel (right) ── */
.offer-popup-content {
    flex: 1;
    background: white;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
}

.offer-popup-tag {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fff3cd, #fff8e0);
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    width: fit-content;
}

.offer-popup-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--plum);
    line-height: 1.3;
    margin: 0;
}

.offer-popup-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Highlight chips */
.offer-popup-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.op-chip {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    background: #faf5ff;
    border: 1px solid #e8d0f8;
    color: var(--plum);
}

/* Countdown timer */
.offer-popup-timer {
    background: linear-gradient(135deg, #fdf5ff, #fff8f0);
    border: 1.5px solid #e8d0f8;
    border-radius: 14px;
    padding: 12px 16px;
}
.timer-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.timer-blocks {
    display: flex;
    align-items: center;
    gap: 6px;
}
.timer-block {
    display: flex; flex-direction: column; align-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px 10px;
    min-width: 48px;
    box-shadow: 0 2px 8px rgba(63,6,54,0.07);
}
.timer-block span {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--plum);
    line-height: 1;
    font-family: var(--font-head);
}
.timer-block small {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}
.timer-sep { font-size: 1.2rem; font-weight: 800; color: var(--plum); opacity: 0.4; }

/* CTA buttons */
.offer-popup-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.op-btn-primary {
    display: flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--plum), #6b0f5c);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 6px 20px rgba(63,6,54,0.35);
}
.op-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); color: white; }
.op-btn-secondary {
    padding: 0.6rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.82rem;
    cursor: pointer;
    text-align: center;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.op-btn-secondary:hover { color: var(--plum); }

/* Don't show again */
.offer-popup-skip {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: -4px;
}
.offer-popup-skip input { cursor: pointer; accent-color: var(--plum); }

/* ── Mobile: stack vertically ── */
@media (max-width: 640px) {
    .offer-popup-box { flex-direction: column; max-height: 94vh; }
    .offer-popup-img-panel { flex: 0 0 200px; min-height: 200px; }
    .offer-popup-ribbon { width: 70px; height: 70px; bottom: 14px; }
    .ribbon-big   { font-size: 1.2rem; }
    .offer-popup-content { padding: 1.25rem; }
    .offer-popup-title  { font-size: 1.1rem; }
    .timer-block { min-width: 40px; padding: 5px 7px; }
    .timer-block span { font-size: 1rem; }
}

/* ============================================
   FULL-WIDTH OFFERS BANNER
   ============================================ */

.offers-banner-section {
    width: 100%;
    overflow: hidden;
    line-height: 0; /* removes gap under inline img */
}

.offers-banner-wrap {
    width: 100%;
    position: relative;
}

/* When a real banner image exists */
.offers-banner-img-link {
    display: block;
    width: 100%;
    line-height: 0;
    transition: opacity 0.2s;
}
.offers-banner-img-link:hover { opacity: 0.95; }
.offers-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Fallback styled banner when no image uploaded */
.offers-banner-fallback {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 4rem;
    background: linear-gradient(135deg, #2a0424 0%, #3f0636 45%, #5a0a50 75%, #2a0424 100%);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    line-height: normal;
}

/* Decorative pattern overlay */
.offers-banner-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(240,167,11,0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(240,167,11,0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Shimmer sweep */
.offers-banner-fallback::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240,167,11,0.06), transparent);
    animation: bannerShimmer 3s ease-in-out infinite;
}
@keyframes bannerShimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}

.obf-left  { position: relative; z-index: 1; }
.obf-right { position: relative; z-index: 1; flex-shrink: 0; }

.obf-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(240,167,11,0.12);
    border: 1px solid rgba(240,167,11,0.3);
    padding: 3px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.obf-title {
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 8px;
}
.obf-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.5;
}
.obf-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--plum-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(240,167,11,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.offers-banner-fallback:hover .obf-cta {
    transform: translateX(4px);
    box-shadow: 0 8px 28px rgba(240,167,11,0.55);
}

@media (max-width: 640px) {
    .offers-banner-fallback {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }
    .offers-banner-img { max-height: 200px; }
}


/* ============================================
   HERO IMAGE BANNER SLIDER
   ============================================ */

.hero-banner-section {
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: auto;
}

.hero-banner-link {
    display: block;
    width: 100%;
}

.hero-banner-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Desktop Banner */
@media (min-width: 769px) {

    .hero-banner-img {
        height: 90vh;
        min-height: 600px;
    }

}

/* Mobile Banner */
@media (max-width: 768px) {

    .hero-banner-img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }

}