a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    color: inherit !important;
}

/* --------------------banner-------------------- */
/* --- Master Container --- */
.ultra-premium-slider {
    width: 100%;
    height: 80vh;
    /* Slightly taller for a more immersive feel */
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
    position: relative;
}

/* --- The Moody Overlay --- */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    /* Sits above the image, below the arrows */
    pointer-events: none;
}

/* --- Media Setup --- */
.ultra-premium-slider .swiper-slide {
    overflow: hidden;
    /* Keeps the zoom inside the box */
}

.ultra-premium-slider .swiper-slide img,
.ultra-premium-slider .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
    /* The secret to the slow zoom */
}

/* --- The Ken Burns Zoom Animation (Triggers only when slide is active) --- */
.ultra-premium-slider .swiper-slide-active img {
    transform: scale(1.12);
    /* Slowly zooms in by 12% */
}

/* --- Minimalist Dash Pagination (Replacing Dots) --- */
.ultra-premium-slider .swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.ultra-premium-slider .swiper-pagination-bullet {
    width: 35px;
    height: 2px;
    background-color: #fff;
    opacity: 0.4;
    border-radius: 0;
    margin: 0 6px !important;
    transition: all 0.4s ease;
}

.ultra-premium-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #775242;
    width: 50px;
}

/* --------------------Collection-------------------- */
.masterpieces-section {
    padding: 50px 50px 30px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.collections-header {
    text-align: center;
    margin-bottom: 50px;
}

.collections-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #775242;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.collections-header p {
    color: #775242;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

/* The Editorial Grid Layout */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 20px;
}

/* Grid Item Sizing */
.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    /* Aligns text to the bottom */
    padding: 30px;
    box-shadow: var(--shadow);
    group: hover;
}

/* Spanning classes for the asymmetric look */
.card-large {
    grid-column: span 2;
    grid-row: span 2;
    /* Takes up half the left side */
}

.card-wide {
    grid-column: span 2;
    grid-row: span 1;
    /* Takes up top right */
}

.card-standard {
    grid-column: span 1;
    grid-row: span 1;
    /* Takes up bottom right spots */
}

/* Image Background & Hover Zoom */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.category-card:hover .card-bg {
    transform: scale(1.08);
    /* Slow luxury zoom on hover */
}

/* Gradient Overlay for Text Readability */
.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 2;
    transition: background 0.5s ease;
}

.category-card:hover::after {
    background: linear-gradient(to top, rgba(43, 38, 36, 0.85) 0%, rgba(0, 0, 0, 0) 70%);
    /* Tints maroon on hover */
}

/* Card Text Content */
.card-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    width: 100%;
    transform: translateY(15px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card:hover .card-content {
    transform: translateY(0);
    /* Slides up slightly on hover */
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.card-large .card-content h3 {
    font-size: 38px;
    /* Bigger font for the main card */
}

.card-content p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Animated "Discover" Link */
.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0;
    /* Hidden until hovered */
    transition: opacity 0.5s ease;
}

.explore-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.category-card:hover .explore-link {
    opacity: 1;
}

.category-card:hover .explore-link i {
    transform: translateX(5px);
    /* Arrow shoots right */
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* --------------------10 + 2-------------------- */
:root {
    --gold: #D4AF37;
    --gold-soft: #F5D27A;
    --dark: #0B0B0C;
    --emerald: #0F2A25;
}

/* MAIN BANNER */
.mini-offer-banner {
    height: 150px;
    position: relative;
    width: 100%;
    padding: 18px 6%;
    margin-top: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;

    /* 🔥 Luxury Gradient */
    background: linear-gradient(120deg, #0B0B0C, #0F2A25, #0B0B0C);
}

/* ✨ Moving Glow Effect */
.luxury-glow {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.15),
            transparent);
    animation: shine 6s linear infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

/* CONTENT */
.mini-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

/* TAG */
.mini-tag {
    font-size: 12px;
    text-transform: uppercase;
    color: #d4af37;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* PULSE DOT */
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* TITLE */
.mini-deal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    margin: 0;
    text-align: center;
}

.divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

/* GOLD TEXT */
.gold-text {
    color: var(--gold);
    font-style: italic;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* CTA */
.mini-btn {
    background: linear-gradient(135deg, #D4AF37, #F5D27A);
    color: #000;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;

    /* Glow */
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.mini-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .mini-content-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* ================================== CATEGORIES ================================ */
/* ===== THE ULTIMATE LUXE CATEGORY SECTION ===== */
:root {
    --gold-main: #C5A059;
    --gold-glimmer: linear-gradient(135deg, #c5a059 0%, #f7e7a1 50%, #c5a059 100%);
    --ebony: #111111;
    --ivory-bg: #fdfdfb;
    --soft-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.1);
    --ios-ease: cubic-bezier(0.4, 0, 0.2, 1);
    /* Apple-style motion */
}

.cat-categories-section {
    padding: 80px 10%;
    background-color: var(--ivory-bg);
    overflow: hidden;
}

/* ===== HEADER: MINIMALIST & BOLD ===== */
.cat-section-header {
    margin-bottom: 70px;
    text-align: center;
}

.cat-pre-title {
    color: #775242;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.cat-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #775242;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cat-section-title::after {
    content: '';
    width: 60px;
    height: 2px;
    background: #d4af37;
    display: block;
    margin: 15px auto 0;
}

/* ===== THE ASYMMETRIC MASONRY GRID ===== */
.cat-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    /* Use 'align-items: end' to create a high-low rhythmic visual pattern */
    align-items: end;
}

/* Offset Logic for Editorial Layout */
.cat-card:nth-child(even) {
    transform: translateY(80px);
}

.cat-card:nth-child(odd) {
    transform: translateY(-20px);
}

/* ===== THE CARD: ARCHITECTURAL DESIGN ===== */
.cat-card {
    text-decoration: none;
    display: block;
    position: relative;
    background: transparent;
}

/* Image Wrapper with "Floating" Effect */
.cat-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 0.75;
    /* Perfect portrait proportion */
    border-radius: 2px;
    /* Sharp corners = More high-fashion/Modern */
    overflow: hidden;
    background: #f1f1f1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    min-height: 200px;
    will-change: transform;
}

.cat-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* ===== THE INNER GLOW BORDER (The "Vogue" Look) ===== */
.cat-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 20px;
    border: 0.5px solid rgba(255, 255, 255, 0);
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
}

.cat-card:hover .cat-image-wrapper::after {
    inset: 15px;
    border: 0.5px solid rgba(255, 255, 255, 0.6);
}

/* ===== INTERACTIVE HOVER LABEL ===== */
.cat-hover-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20px)scale(0.95);
    /* Slides up from below */
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--ebony);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    z-index: 10;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cat-card:hover .cat-hover-label {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* ===== INFO SECTION: TYPOGRAPHIC FOCUS ===== */
.cat-info {
    margin-top: 35px;
    text-align: center;
    transition: transform 0.2s var(--ios-ease);
}

.cat-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--ebony);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* The Gold Underline Stretches from Center */
.cat-info::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background: var(--gold-main);
    margin: 12px auto;
    transition: width 0.2s var(--ios-ease);
}

.cat-card:hover .cat-info::after {
    width: 40px;
}

/* ===== GLOBAL HOVER STATES ===== */
.cat-card:hover .cat-image-wrapper {
    transform: translateY(-10px);
    box-shadow: var(--soft-shadow);
}

.cat-card:hover img {
    transform: scale(1.1);
}

.cat-card:active .cat-image-wrapper {
    transform: scale(0.98);
    /* iOS Press Effect */
}

/* =================================small banner========================= */
/* Cinematic Parallax Container */
.zayyora-cinematic-parallax {
    position: relative;
    height: 50vh;
    /* Very tall, immersive section */
    min-height: 600px;
    background-image: url('https://media.istockphoto.com/id/1180931397/photo/alluring-woman-dressed-in-a-posh-jewelry-set-of-necklace-ring-and-earrings-elegant-evening.jpg?s=612x612&w=0&k=20&c=miNpkI_ekZ8HoC0U9NhHNacsgcdq8xIFxR-n0zjO5p8=');
    /* Suggest a dark, moody diamond macro shot here */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    background-color: #0a0a0a;
}

/* iPhone & iPad */
@supports (-webkit-touch-callout: none) {
    .zayyora-cinematic-parallax {
        background-attachment: scroll !important;
    }
}

/* Vignette Overlay (Dark edges, clear center) */
.cinematic-vignette {
    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;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}


/* Content Container with Fade-In Animation */
.cinematic-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    animation: floatUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography Styling */
.ethereal-subtitle {
    color: #C5A059;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 6px;
    /* Extreme tracking for high-end feel */
    margin-bottom: 30px;
}

.cinematic-title {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    /* Massive size */
    line-height: 0.9;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Staggered text placement */
.title-line-1 {
    align-self: flex-start;
    font-weight: 400;
}


.cinematic-description {
    color: #cccccc;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    max-width: 500px;
    text-align: center;
    margin-bottom: 50px;
}

/* Animated Arrow Button */
.btn-cinematic {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
    transition: border-color 0.4s ease;
}

.btn-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
}

/* Custom CSS Arrow */
.btn-arrow {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #C5A059;
    position: relative;
    transition: transform 0.4s ease, width 0.4s ease;
}

.btn-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #C5A059;
    border-right: 1px solid #C5A059;
    transform: rotate(45deg);
}

.btn-cinematic:hover {
    border-bottom-color: #C5A059;
}

.btn-cinematic:hover .btn-arrow {
    width: 45px;
    /* Arrow shoots forward on hover */
    transform: translateX(10px);
}


/* =======================Trending Section ==========================================*/
.trending-jewelry-section {
    padding: 90px 20px 30px 20px;
    background-color: #ffffff;
    /* Crisp, clean white background */
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.trend-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Elegant Typography */
.trending-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.trending-section-title {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trending-section-subtitle {
    font-size: 14px;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Grid Layout */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    justify-content: center;
}

/* Keep cards same size even if only 1, 2 or 3 items exist */
.trending-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
    .trending-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .trending-grid {
        grid-template-columns: 1fr;
    }

    .trending-card {
        max-width: 320px;
    }
}

/* Card Styling - Editorial Look */
.trending-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

/* Image Wrapper */
.image-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.trending-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Very smooth, elegant zoom */
}

.trending-card:hover img {
    transform: scale(1.05);
}

/* Overlapping White Text Box */
.card-overlay {
    background: #ffffff;
    width: 85%;
    /* Slightly narrower than the image */
    padding: 24px 15px;
    text-align: center;
    transform: translateY(-40px);
    /* Pulls the box up over the image */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
    border: 1px solid #f9f9f9;
}

.card-title {
    font-size: 22px;
    color: #111;
    margin: 0 0 12px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    /* Adds a sophisticated touch */
    letter-spacing: 0.5px;
}

/* Champagne Gold Shop Link */
.shop-link {
    font-size: 12px;
    color: #775242;
    /* Elegant champagne gold */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

/* Custom Animated Underline */
.shop-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: #062037 !important;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

/* Hover Effects */
.trending-card:hover .card-overlay {
    transform: translateY(-50px);
    /* The text box lifts higher on hover */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.trending-card:hover .shop-link::after {
    width: 100%;
    /* Gold line expands from the center out */
}



/* --- 1. The Master Section --- */
.zayyora-philosophy {
    width: 100%;
    background-color: #FCFCFA;
    /* Very soft, warm alabaster white */
    padding: 50px 20px;
    /* Massive padding is the secret to luxury design */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid #F0F0F0;
}

.philosophy-container {
    max-width: 900px;
    /* Keeps the text from stretching too wide */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- 2. The Decorative Quote Mark --- */
.decorative-quote {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: #775242;
    /* Zayyora Gold */
    line-height: 0.5;
    /* Pulls the text up closer to the quotes */
    margin-bottom: 0px;
    opacity: 0.8;
}

/* --- 3. The Main Thought --- */
.thought-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 34px;
    font-weight: 400;
    color: #111111;
    /* Deep charcoal, softer than pure black */
    line-height: 1.6;
    margin: 0 0 40px 0;
    letter-spacing: 0.5px;
}

/* --- 4. The Signature / Author --- */
.thought-signature {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888888;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Delicate lines surrounding the signature */
.sig-line {
    width: 40px;
    height: 1px;
    background-color: #E0E0E0;
}

/* ==================================services================================== */
/* ═══════════════════════════════════════════
   ZAYYORA PROMISES SLIDER — zp- prefix only
═══════════════════════════════════════════ */

.zp-promises-section {
    padding: 80px 24px;
    background: #faf9f7;
    box-sizing: border-box;
}

.zp-promises-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

/* ── Header ── */
.zp-promises-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.zp-eyebrow {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #C5A059;
    font-weight: 600;
    margin-bottom: 14px;
}

.zp-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 18px;
    line-height: 1.2;
}

.zp-subtitle {
    font-size: 15px;
    color: #777;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

/* ── Slider outer ── */
.zp-slider-outer {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Arrows ── */
.zp-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e0d5c5;
    background: #fff;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
    z-index: 2;
    padding: 0;
}

.zp-arrow svg {
    width: 16px;
    height: 16px;
    display: block;
}

.zp-arrow:hover {
    background: #C5A059;
    border-color: #C5A059;
    color: #fff;
    transform: scale(1.08);
}

.zp-arrow:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ── Viewport & Track ── */
.zp-slider-viewport {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.zp-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: stretch;
}

/* ── Card ── */
.zp-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 200px;
    background: #fff;
    padding: 36px 24px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-sizing: border-box;
}

.zp-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #062037;
    transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.zp-card:hover::after {
    width: 100%;
}

/* ── Icon wrapper — fixed 56×56 ── */
.zp-card-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.zp-card:hover .zp-card-icon-wrap {
    transform: scale(1.08);
}

/* ── The actual image — fills the 56×56 box ── */
.zp-card-icon-wrap img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    filter: invert(87%) sepia(2%) saturate(5100%) hue-rotate(158deg) brightness(34%) contrast(190%);
}

/* ── Emoji fallback — smaller, gold color ── */
.zp-fallback-emoji {
    font-size: 28px;
    line-height: 1;
    display: block;
}

.zp-card-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    color: #222;
    margin: 0 0 10px;
    line-height: 1.3;
}

.zp-card-text {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* ── Dots ── */
.zp-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.zp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.zp-dot.active {
    background: #062037;
    transform: scale(1.35);
}

/* ── Shimmer loading ── */
.zp-loading-shimmer {
    display: flex;
    gap: 24px;
    width: 100%;
}

.zp-shimmer-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 200px;
    background: #fff;
    padding: 36px 24px;
    text-align: center;
    box-sizing: border-box;
}

.zp-shimmer-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: zpShimmer 1.4s infinite;
    margin: 0 auto 18px;
}

.zp-shimmer-line {
    height: 11px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: zpShimmer 1.4s infinite;
    margin: 8px auto;
}

.zp-shimmer-line.long {
    width: 68%;
}

.zp-shimmer-line.short {
    width: 50%;
}

@keyframes zpShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}


/* -------------------------------shop by gender-------------------------- */

/* ===== EDITORIAL COLLECTIONS (MAGAZINE STYLE) ===== */
.zayyora-editorial-collections {
    padding: 60px 5vw;
    background-color: var(--primary-bg);
}

.editorial-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header Styling */
.editorial-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.editorial-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #775242;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.editorial-divider {
    width: 1px;
    height: 50px;
    background-color: #775242;
    opacity: 0.4;
}

/* 3-Column Grid */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Individual Card */
.editorial-card {
    text-decoration: none;
    display: block;
    position: relative;
    cursor: pointer;
    group: hover;
}

/* The Image Wrapper (Forces the 3:4 Magazine Aspect Ratio) */
.editorial-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* The Image Itself */
.editorial-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover: Cinematic Slow Zoom */
.editorial-card:hover .editorial-image-wrapper img {
    transform: scale(1.08);
}

/* Dark Gradient Overlay for Text Readability */
.editorial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.editorial-card:hover .editorial-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(20, 15, 12, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
}

/* Elegant Inner Frame (The Luxury Touch) */
.editorial-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

/* Hover: Frame expands and fades in */
.editorial-card:hover .editorial-frame {
    opacity: 1;
    transform: scale(1);
    border-color: var(--accent);
    /* Uses your champagne/gold accent color */
}

/* Text Content Container (Positioned absolutely over the image) */
.editorial-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
    z-index: 2;
    transform: translateY(15px);
    /* Pushed down slightly */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover: Text slides up smoothly */
.editorial-card:hover .editorial-content {
    transform: translateY(0);
}

.editorial-name {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Link and Line Animation Container */
.editorial-link-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.editorial-link {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.editorial-card:hover .editorial-link {
    opacity: 1;
    color: var(--accent);
}

.link-line {
    width: 0;
    /* Line starts at 0 width */
    height: 1px;
    background-color: var(--accent);
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover: The line draws itself */
.editorial-card:hover .link-line {
    width: 100%;
}


/* Premium Popup Styling */
.premium-popup-wrapper {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-popup-wrapper.active {
    display: flex;
    opacity: 1;
}

.popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
}

.popup-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}

.premium-popup-wrapper.active .popup-container {
    transform: translateY(0);
}

.popup-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    height: 100%;
    max-height: inherit;
}

.popup-image-side {
    position: relative;
    background: #000;
    min-height: 450px;
}

.popup-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.popup-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.popup-branding {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
}

.popup-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 8px;
    color: #D4AF37;
    display: block;
}

.popup-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 5px;
}

.popup-form-side {
    padding: 40px 50px;
    background: #ffffff;
    position: relative;
    max-height: inherit;
    overflow-y: auto;
}

/* Custom premium scrollbar for form side */
.popup-form-side::-webkit-scrollbar {
    width: 6px;
}

.popup-form-side::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.popup-form-side::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 3px;
}

.popup-form-side::-webkit-scrollbar-thumb:hover {
    background: #b8932c;
}

.popup-pretitle {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.popup-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Input Styling */
.popup-input-group {
    position: relative;
    margin-bottom: 25px;
}

.popup-input-group input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #e1e1e1;
    font-size: 15px;
    background: transparent;
    outline: none;
    transition: 0.3s;
}

.popup-input-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: #999;
    pointer-events: none;
    transition: 0.3s;
}

.popup-input-group input:focus~label,
.popup-input-group input:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 11px;
    color: #D4AF37;
    font-weight: 700;
}

.popup-input-group input:focus {
    border-bottom-color: #D4AF37;
}

.popup-actions {
    text-align: right;
    margin-top: -15px;
    margin-bottom: 25px;
}

.popup-link-forgot {
    font-size: 12px;
    color: #999;
    text-decoration: none;
}

.popup-submit-btn {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 18px;
    border: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.popup-submit-btn:hover {
    background: #D4AF37;
    color: #000;
}

.popup-divider {
    margin: 30px 0;
    border-top: 1px solid #eee;
    position: relative;
    text-align: center;
}

.divider-text {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 15px;
    font-size: 12px;
    color: #aaa;
}

.popup-register-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    text-align: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.popup-register-btn:hover {
    background: #f5f5f5;
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #1a1a1a;
    transition: 0.3s;
    z-index: 99;
}

.popup-close-btn:hover {
    color: #D4AF37;
}

.popup-legal {
    margin-top: 25px;
    text-align: center;
    font-size: 11px;
    color: #bbb;
}

/* ═══════════════════════════════════════════════════════
   FESTIVAL POPUP  —  fpop- prefix
   Aesthetic: Warm luxury jewellery, editorial magazine feel
   File: public/css/festival-popup.css
═══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────── */
:root {
    --fpop-accent: #D4AF37;
    --fpop-dark: #0f0e0d;
    --fpop-cream: #fdfaf5;
    --fpop-radius: 20px;
    --fpop-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
    --fpop-duration: 0.55s;
}

/* ── Overlay ────────────────────────────────────────── */
.fpop-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--fpop-duration) ease,
        visibility var(--fpop-duration) ease;
    box-sizing: border-box;
}

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

/* ── Backdrop ───────────────────────────────────────── */
.fpop-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 4, 3, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* ── Container  (sizes) ─────────────────────────────── */
.fpop-container {
    position: relative;
    z-index: 2;
    background: var(--fpop-cream);
    border-radius: var(--fpop-radius);
    overflow: hidden;
    box-shadow: var(--fpop-shadow);
    width: 100%;
    max-width: 860px;

    /* Default: zoom animation */
    transform: scale(0.82) translateY(30px);
    opacity: 0;
    transition: transform var(--fpop-duration) cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity var(--fpop-duration) ease;
}

/* ── Animations ─────────────────────────────────────── */
.fpop-overlay.fpop-open .fpop-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* ── Full-screen image layout ───────────────────────── */
.fpop-full-image {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    background: #000;
}

.fpop-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.fpop-full-image .fpop-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.9));
}

.fpop-full-image .fpop-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75));
    z-index: 1;
}

.fpop-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 0 24px 40px 24px;
}

.fpop-copy .fpop-badge-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0.96;
}

.fpop-copy .fpop-title {
    color: #fff;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.03;
    letter-spacing: -0.04em;
    margin: 0;
    max-width: 720px;
    text-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

/* slideUp */
.fpop-container.fpop-anim-slideUp {
    transform: translateY(80px);
    opacity: 0;
}

.fpop-overlay.fpop-open .fpop-container.fpop-anim-slideUp {
    transform: translateY(0);
    opacity: 1;
}

/* fadeIn */
.fpop-container.fpop-anim-fadeIn {
    transform: none;
    opacity: 0;
}

.fpop-overlay.fpop-open .fpop-container.fpop-anim-fadeIn {
    opacity: 1;
}

/* flip */
.fpop-container.fpop-anim-flip {
    transform: rotateX(25deg) scale(0.9);
    opacity: 0;
    perspective: 1000px;
}

.fpop-overlay.fpop-open .fpop-container.fpop-anim-flip {
    transform: rotateX(0deg) scale(1);
    opacity: 1;
}

/* ── Sizes ──────────────────────────────────────────── */
.fpop-container.fpop-size-small {
    width: min(480px, calc(100vw - 40px));
    max-width: 480px;
}

.fpop-container.fpop-size-medium {
    width: min(860px, calc(100vw - 40px));
    max-width: 860px;
    min-height: 520px;
}

@media (min-width: 768px) {
    .fpop-container.fpop-size-medium {
        width: min(480px, calc(100vw - 40px));
        height: min(620px, calc(100vh - 40px));
        min-height: auto;
    }

    .fpop-full-image {
        height: 100%;
        min-height: 100%;
    }

    #fpop-link {
        display: block;
        width: 100%;
        height: 100%;
    }
}

.fpop-container.fpop-size-large {
    width: min(1100px, calc(100vw - 40px));
    max-width: 1100px;
}

.fpop-container.fpop-size-fullscreen {
    max-width: 100%;
    max-height: 100%;
    width: calc(100vw - 40px);
    height: calc(100vh - 40px);
    border-radius: 12px;
}

/* ── Close Button ───────────────────────────────────── */
.fpop-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.fpop-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.fpop-close svg {
    width: 16px;
    height: 16px;
}

/* ── Split Layout ───────────────────────────────────── */
.fpop-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
}

/* ── Image Panel ────────────────────────────────────── */
.fpop-image-panel {
    position: relative;
    overflow: hidden;
    background: #1a1714;
    min-height: 300px;
}

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

.fpop-overlay.fpop-open .fpop-img {
    transform: scale(1.06);
    /* Ken Burns */
}

.fpop-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.05) 50%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 2;
}

.fpop-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fpop-img-placeholder svg {
    width: 64px;
    height: 64px;
}

/* ── Badge on image ─────────────────────────────────── */
.fpop-badge-wrap {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 10;
    display: none;
}

.fpop-badge-wrap.visible {
    display: block;
}

.fpop-badge {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--fpop-accent);
    color: #000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    animation: fpopBadgePulse 2s ease-in-out infinite;
}

@keyframes fpopBadgePulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 4px 32px rgba(212, 175, 55, 0.8);
    }
}

/* ── Sparkles ───────────────────────────────────────── */
.fpop-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.fpop-spark {
    position: absolute;
    color: var(--fpop-accent);
    font-size: 14px;
    opacity: 0;
    animation: fpopSpark 3s ease-in-out infinite;
}

.s1 {
    top: 18%;
    right: 18%;
    animation-delay: 0s;
}

.s2 {
    top: 60%;
    right: 12%;
    animation-delay: 1s;
    font-size: 10px;
}

.s3 {
    top: 38%;
    right: 28%;
    animation-delay: 2s;
    font-size: 8px;
}

@keyframes fpopSpark {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(90deg);
    }
}

/* ── Content Panel ──────────────────────────────────── */
.fpop-content-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 44px;
    background: var(--fpop-cream);
}

.fpop-content-inner {
    max-width: 340px;
}

.fpop-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--fpop-accent);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s 0.2s ease, transform 0.5s 0.2s ease;
}

.fpop-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 400;
    color: #0f0e0d;
    line-height: 1.2;
    margin: 0 0 0px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s 0.3s ease, transform 0.55s 0.3s ease;
}

.fpop-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin: 0 0 30px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s 0.4s ease, transform 0.5s 0.4s ease;
}

/* Animate in when popup opens */
.fpop-overlay.fpop-open .fpop-eyebrow,
.fpop-overlay.fpop-open .fpop-title,
.fpop-overlay.fpop-open .fpop-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ── CTA Button ─────────────────────────────────────── */
.fpop-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #000 !important;
    background: var(--fpop-accent);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s 0.5s ease,
        transform 0.5s 0.5s ease,
        box-shadow 0.25s ease;
}

.fpop-overlay.fpop-open .fpop-cta {
    opacity: 1;
    transform: translateY(0);
}

.fpop-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 36px rgba(212, 175, 55, 0.55) !important;
}

.fpop-cta.fpop-cta-hidden {
    display: none;
}

/* ── No Thanks ──────────────────────────────────────── */
.fpop-no-thanks {
    margin-top: 16px;
    text-align: center;
}

.fpop-no-thanks button {
    background: none;
    border: none;
    font-size: 11px;
    color: #aaa;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    padding: 4px 0;
}

.fpop-no-thanks button:hover {
    color: #555;
}

/* ── 1. HERO BANNER SLIDER ─────────────────────────────── */
@media (max-width: 767px) {
    .ultra-premium-slider {
        height: 55vh;
        min-height: 320px;
    }

    .ultra-premium-slider .swiper-pagination-bullet {
        width: 20px;
        margin: 0 4px !important;
    }

    .ultra-premium-slider .swiper-pagination-bullet-active {
        width: 32px;
    }

    .ultra-premium-slider .swiper-pagination {
        bottom: 16px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .ultra-premium-slider {
        height: 65vh;
        min-height: 420px;
    }
}

/* ── 2. MASTERPIECES / COLLECTIONS SECTION ─────────────── */
@media (max-width: 1023px) {
    .masterpieces-section {
        padding: 40px 24px 24px;
    }

    .explore-link {
        opacity: 1 !important;
    }

    .card-content {
        transform: translateY(0) !important;
    }

    .collections-header h2 {
        font-size: 32px;
    }

    .collections-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 767px) {
    .masterpieces-section {
        padding: 32px 16px 16px;
    }

    .collections-header h2 {
        font-size: 26px;
    }

    .category-card:hover .explore-link {
        opacity: 1 !important;
    }

    .collections-header p {
        font-size: 11px;
        letter-spacing: 2px;
    }

    @media (max-width: 479px) {

        .category-grid .card-standard:last-child,
        #collections-grid .category-card:last-child {
            aspect-ratio: 4.9 / 3;
            max-height: 220px;
        }

        .category-card:hover .explore-link {
            opacity: 1 !important;
        }

        .category-grid .card-standard:last-child .card-content h3,
        #collections-grid .category-card:last-child .card-content h3 {
            font-size: 20px;
        }
    }

    /* Stack the 4-column editorial grid into a 2-column grid */
    .category-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    /* Reset all spanning — each card fills one cell */
    .card-large,
    .card-wide,
    .card-standard {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }

    /* Make the main (large) card span both columns on mobile */
    .card-large {
        grid-column: span 2;
        min-height: 240px;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .card-large .card-content h3 {
        font-size: 24px;
    }

    .card-content p {
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 16px;
    }

    .category-card:hover .explore-link {
        opacity: 1 !important;
    }

    .card-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 280px;
    }

    .card-wide {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 220px;
    }

    .card-standard {
        grid-column: span 1;
        min-height: 200px;
    }

    .card-large .card-content h3 {
        font-size: 30px;
    }
}

/* ── 3. MINI OFFER BANNER (10+2 Plan) ──────────────────── */
@media (max-width: 767px) {
    .mini-offer-banner {
        height: auto;
        padding: 20px 16px;
        margin-top: 20px;
    }

    .mini-content-wrapper {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .mini-deal h2 {
        font-size: 16px;
        line-height: 1.5;
    }

    .divider {
        display: block;
        margin: 4px 0;
    }

    .mini-btn {
        padding: 10px 22px;
        font-size: 12px;
    }

    .mini-tag {
        font-size: 11px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mini-offer-banner {
        height: auto;
        padding: 24px 32px;
    }

    .mini-deal h2 {
        font-size: 20px;
    }
}

/* ── 4. SHOP BY CATEGORY (cat-) SECTION ────────────────── */
@media (max-width: 767px) {
    .cat-categories-section {
        padding: 48px 16px;
    }

    .cat-section-title {
        font-size: 28px;
    }

    .cat-section-header {
        margin-bottom: 40px;
    }

    .cat-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Remove the staggered offset — it breaks on narrow screens */
    .cat-card:nth-child(even),
    .cat-card:nth-child(odd) {
        transform: none;
    }

    .cat-info h3 {
        font-size: 16px;
    }

    .cat-info {
        margin-top: 20px;
    }

    .cat-image-wrapper {
        min-height: 180px;
        aspect-ratio: 0.75;
    }
}

@media (max-width: 479px) {
    .cat-category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .cat-info h3 {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .cat-categories-section {
        padding: 60px 5%;
    }

    .cat-category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    /* Reduce the vertical offset on tablet — it's too tall otherwise */
    .cat-card:nth-child(even) {
        transform: translateY(40px);
    }

    .cat-card:nth-child(odd) {
        transform: translateY(-10px);
    }
}

/* ── 5. TRENDING SECTION ───────────────────────────────── */
@media (max-width: 767px) {
    .trending-jewelry-section {
        padding: 48px 16px 16px;
    }

    .trending-section-title {
        font-size: 28px;
    }


    .card-overlay {
        padding: 16px 10px;
        transform: translateY(-28px);
    }

    .card-title {
        font-size: 16px;
    }

    .trending-card:hover .card-overlay {
        transform: translateY(-36px);
    }
}

@media (max-width: 479px) {


    .card-overlay {
        width: 90%;
        padding: 12px 8px;
        transform: translateY(-24px);
    }

    .card-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .shop-link {
        font-size: 10px;
    }
}


/* ── 6. CINEMATIC PARALLAX BANNER ──────────────────────── */
@media (max-width: 767px) {
    .zayyora-cinematic-parallax {
        height: auto;
        min-height: 380px;
        /* Disable fixed attachment on mobile — causes layout bugs in iOS Safari */
        background-position: center center;
    }

    .cinematic-content {
        align-items: flex-start;
    }

    .cinematic-title {
        font-size: 40px;
        line-height: 1;
        margin-bottom: 20px;
    }

    .ethereal-subtitle {
        font-size: 10px;
        letter-spacing: 4px;
        margin-bottom: 16px;
    }

    .cinematic-description {
        font-size: 14px;
        max-width: 100%;
        text-align: left;
        margin-bottom: 32px;
    }

    .cinematic-vignette {
        padding: 32px 20px;
        align-items: flex-start;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .zayyora-cinematic-parallax {
        min-height: 480px;

    }

    .cinematic-title {
        font-size: 60px;
    }
}

/* ── 7. ZAYYORA PROMISES SLIDER ────────────────────────── */
@media (max-width: 767px) {
    .zp-promises-section {
        padding: 48px 16px;
    }

    .zp-title {
        font-size: 28px;
    }

    .zp-subtitle {
        font-size: 14px;
    }

    .zp-promises-header {
        margin-bottom: 36px;
    }

    .zp-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 0;
        padding: 28px 20px 24px;
    }

    .zp-arrow {
        width: 34px;
        height: 34px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .zp-card {
        flex: 0 0 calc(50% - 12px);
    }

    .zp-promises-section {
        padding: 60px 32px;
    }
}

/* ── 8. EDITORIAL COLLECTIONS (Shop by Gender) ─────────── */
@media (max-width: 767px) {
    .zayyora-editorial-collections {
        padding: 48px 16px;
    }

    .editorial-title {
        font-size: 28px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .editorial-image-wrapper {
        aspect-ratio: 4 / 3;
    }

    .editorial-name {
        font-size: 24px;
    }

    .editorial-content {
        padding: 24px 20px;
    }

    /* Always show the overlay text on mobile (no hover state) */
    .editorial-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 55%);
    }

    .editorial-content {
        transform: translateY(0);
    }

    .editorial-link {
        opacity: 1;
    }

    .link-line {
        width: 40px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .zayyora-editorial-collections {
        padding: 48px 4%;
    }

    .editorial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .editorial-name {
        font-size: 26px;
    }
}

/* ── 9. PHILOSOPHY / QUOTE SECTION ─────────────────────── */
@media (max-width: 767px) {
    .zayyora-philosophy {
        padding: 40px 20px;
    }

    .thought-text {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .decorative-quote {
        font-size: 70px;
    }
}

/* ── 10. LOGIN POPUP ───────────────────────────────────── */
@media (max-width: 767px) {
    .premium-popup-wrapper {
        padding: 0;
        align-items: flex-end;
    }

    .popup-container {
        border-radius: 16px 16px 0 0;
        max-width: 100%;
        max-height: 92vh;
        overflow-y: auto;
    }

    .popup-split {
        grid-template-columns: 1fr;
    }

    /* Hide the decorative image panel on mobile — save space */
    .popup-image-side {
        display: none;
    }

    .popup-form-side {
        padding: 36px 24px 40px;
    }

    .popup-title {
        font-size: 26px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .popup-container {
        max-width: 680px;
    }

    .popup-image-side {
        min-height: 380px;
    }

    .popup-form-side {
        padding: 40px 36px;
    }

    .popup-title {
        font-size: 28px;
    }
}

/* laptop height adjustment - standard */
@media (min-width: 768px) and (max-height: 820px) {
    .popup-container {
        max-height: calc(100vh - 30px);
    }

    .popup-image-side {
        min-height: 380px;
    }

    .popup-branding {
        bottom: 30px;
        left: 30px;
    }

    .popup-logo-text {
        font-size: 24px;
        letter-spacing: 6px;
    }

    .popup-form-side {
        padding: 30px 40px;
    }

    .popup-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .popup-description {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .popup-input-group {
        margin-bottom: 18px;
    }

    .popup-input-group input {
        padding: 12px 0;
        font-size: 14px;
    }

    .popup-input-group label {
        top: 12px;
    }

    .popup-actions {
        margin-top: -10px;
        margin-bottom: 18px;
    }

    .popup-submit-btn {
        padding: 14px;
        font-size: 10px;
    }

    .popup-divider {
        margin: 20px 0;
    }

    .divider-text {
        top: -8px;
    }

    .popup-register-btn {
        padding: 12px;
        font-size: 10px;
    }

    .popup-legal {
        margin-top: 15px;
    }
}

/* laptop height adjustment - short/compact */
@media (min-width: 768px) and (max-height: 680px) {
    .popup-container {
        max-height: calc(100vh - 20px);
    }

    .popup-image-side {
        min-height: 300px;
    }

    .popup-branding {
        bottom: 20px;
        left: 20px;
    }

    .popup-logo-text {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .popup-tagline {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .popup-form-side {
        padding: 20px 30px;
    }

    .popup-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .popup-description {
        margin-bottom: 15px;
        font-size: 12px;
        line-height: 1.4;
    }

    .popup-input-group {
        margin-bottom: 14px;
    }

    .popup-input-group input {
        padding: 8px 0;
        font-size: 13px;
    }

    .popup-input-group label {
        top: 8px;
    }

    .popup-actions {
        margin-top: -12px;
        margin-bottom: 14px;
    }

    .popup-submit-btn {
        padding: 10px 15px;
        font-size: 9px;
    }

    .popup-divider {
        margin: 15px 0;
    }

    .divider-text {
        top: -8px;
        font-size: 11px;
    }

    .popup-register-btn {
        padding: 10px;
        font-size: 9px;
    }

    .popup-legal {
        margin-top: 10px;
        font-size: 10px;
    }
}

/* ── 11. FESTIVAL POPUP (fpop-) ────────────────────────── */
@media (max-width: 767px) {

    .fpop-container.fpop-size-medium,
    .fpop-container.fpop-size-large {
        max-width: 100%;
        width: calc(100vw - 24px);
        min-height: unset;
    }

    .fpop-split {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .fpop-image-panel {
        min-height: 220px;
        max-height: 260px;
    }

    .fpop-content-panel {
        padding: 28px 24px 32px;
    }

    .fpop-title {
        font-size: 26px;
    }

    .fpop-full-image {
        min-height: 360px;
    }

    .fpop-copy .fpop-title {
        font-size: clamp(26px, 7vw, 40px);
    }
}

/* ── 12. SWIPER NAV ARROWS — Hide on very small screens ── */
@media (max-width: 479px) {

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

}

/* ── 13. GENERAL UTILITY OVERRIDES ─────────────────────── */

/* Prevent horizontal overflow site-wide on mobile */
@media (max-width: 767px) {
    body {
        overflow-x: clip;
    }

    /* Ensure images don't overflow their containers */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Tighten section headers globally */
    .editorial-header,
    .trending-section-header,
    .zp-promises-header,
    .cat-section-header,
    .collections-header {
        margin-bottom: 32px;
    }
}

/* ── 14. TABLET-SPECIFIC ADJUSTMENTS ───────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
    .masterpieces-section {
        padding: 48px 32px 32px;
    }
}

/* ── 15. LARGE DESKTOP CAP ─────────────────────────────── */
@media (min-width: 1440px) {
    .masterpieces-section {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .trend-container {
        max-width: 1300px;
    }
}