/* ==========================================================================
   FIONA LUXURY FINE JEWELRY - MAIN STYLESHEET (V14.0)
   Luxury Shimmer Filter Chips, Glassmorphism & Micro-Animations
   ========================================================================== */

:root {
    --purple-primary: #7C3AED;
    --purple-dark: #4C1D95;
    --purple-deep: #3B0764;
    --purple-light: #A855F7;
    --purple-accent: #8B5CF6;
    --purple-soft: #F3E8FF;
    --purple-lavender: #E9D5FF;
    --purple-glow: rgba(124, 58, 237, 0.35);
    --purple-glow-heavy: rgba(124, 58, 237, 0.6);

    --purple-gradient: linear-gradient(135deg, #5B21B6 0%, #7C3AED 50%, #8B5CF6 100%);
    --purple-gradient-btn: linear-gradient(90deg, #7C3AED 0%, #9333EA 100%);

    --bg-main: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-dark: #111827;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 20px 40px rgba(124, 58, 237, 0.15);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Poppins', 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--bg-main);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: #FFFFFF;
}

/* Ambient Background Motion Orbs */
.ambient-bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
    top: 15%;
    left: -100px;
    width: 380px;
    height: 380px;
    background: var(--purple-light);
}

.orb-2 {
    top: 50%;
    right: -120px;
    width: 450px;
    height: 450px;
    background: var(--purple-primary);
    animation-delay: -5s;
}

.orb-3 {
    bottom: 10%;
    left: 10%;
    width: 320px;
    height: 320px;
    background: var(--purple-accent);
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 60px) scale(1.1);
    }

    100% {
        transform: translate(-30px, -40px) scale(0.95);
    }
}

/* Floating Sparkle Particles */
.floating-particle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    font-size: 1.4rem;
    animation: floatSparkle 12s ease-in-out infinite alternate;
}

.p-1 {
    top: 20%;
    left: 15%;
    animation-duration: 9s;
}

.p-2 {
    top: 40%;
    right: 12%;
    animation-duration: 14s;
}

.p-3 {
    top: 65%;
    left: 8%;
    animation-duration: 11s;
}

.p-4 {
    top: 80%;
    right: 20%;
    animation-duration: 13s;
}

.p-5 {
    top: 92%;
    left: 45%;
    animation-duration: 10s;
}

@keyframes floatSparkle {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.9);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: translateY(15px) rotate(360deg) scale(1);
        opacity: 0.4;
    }
}

.motion-ring-bg {
    position: absolute;
    border: 2px dashed rgba(124, 58, 237, 0.18);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: rotateRing 35s linear infinite;
}

.ring-middle {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
}

.ring-bottom {
    bottom: 5%;
    left: 5%;
    width: 380px;
    height: 380px;
    animation-direction: reverse;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--purple-gradient);
    z-index: 10000;
    box-shadow: 0 0 12px var(--purple-glow-heavy);
    transition: width 0.1s linear;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.app-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   HEADER NAVIGATION (SIDE-BY-SIDE DESKTOP MENU & LARGE LOGO)
   ========================================================================== */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
    background: transparent;
    box-shadow: none;
    transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.app-header.scrolled {
    height: 68px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
}

.header-logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: transparent;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Custom Floral Brand Logo Box (Matching fiona_logo.html) */
.fiona-brand-flower-box {
    width: 32px;
    height: 32px;
    border: 2.5px solid var(--purple-primary);
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    background: rgba(124, 58, 237, 0.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
    flex-shrink: 0;
}

.fiona-brand-flower-box svg {
    width: 100%;
    height: 100%;
    stroke: var(--purple-primary);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logo-link:hover .fiona-brand-flower-box {
    transform: scale(1.08);
    border-color: var(--purple-accent);
    background: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.logo-brand-text {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
    letter-spacing: 2px;
}

/* Side-by-side Desktop Navigation Menu Links */
.desktop-top-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    flex: 1;
    min-width: 0;
    padding: 0 12px;
}
.desktop-top-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.desktop-nav-link {
    text-decoration: none;
    color: #1F2937;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    position: relative;
    padding: 4px 0;
}

.desktop-nav-link:hover,
.desktop-nav-link.active {
    color: var(--purple-primary);
}

.desktop-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--purple-primary);
    transition: width 0.3s ease;
}

.desktop-nav-link:hover::after,
.desktop-nav-link.active::after {
    width: 100%;
}

.quote_btn-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Cart Button */
.cart-btn-wrap {
    background: #F3E8FF;
    border: 1px solid #E9D5FF;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.cart-btn-wrap:hover {
    background: var(--purple-primary);
    border-color: var(--purple-primary);
}

.cart-btn-wrap:hover .cart-svg-icon {
    stroke: #FFFFFF;
}

.cart_number {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--purple-primary);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Profile Quick Button */
.nav-profile-btn {
    background: #F3E8FF;
    border: 1px solid #E9D5FF;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.nav-profile-btn:hover {
    background: var(--purple-primary);
    border-color: var(--purple-primary);
}

.nav-profile-btn:hover svg {
    stroke: #FFFFFF;
}

/* Responsive Search Box */
.search-box-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#searchInput {
    border: 1px solid #D1D5DB;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 8px 36px 8px 16px;
    font-size: 0.85rem;
    outline: none;
    width: clamp(140px, 20vw, 260px);
    transition: all 0.35s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

#searchInput:focus {
    width: clamp(180px, 28vw, 340px);
    border-color: var(--purple-primary);
    background: #FFFFFF;
    box-shadow: 0 4px 15px var(--purple-glow);
}

.nav_search-btn {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.search-dropdown {
    position: absolute;
    top: 42px;
    right: 0;
    width: min(320px, 90vw);
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    max-height: 240px;
    overflow-y: auto;
    z-index: 999999;
}

.search-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #F3F4F6;
    transition: background 0.2s ease;
}

.search-item-row:hover {
    background: var(--purple-soft);
}

.search-item-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 6px;
    background: #F9FAFB;
}

.search-item-info h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111827;
}

.search-item-info span {
    font-size: 0.78rem;
    color: var(--purple-primary);
    font-weight: 700;
}

.hamburger-menu-btn {
    background: #F3E8FF;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.hamburger-menu-btn:hover {
    background: var(--purple-primary);
}

.hamburger-menu-btn:hover .ham-bar {
    background: #FFFFFF;
}

.ham-bar {
    width: 18px;
    height: 2px;
    background: var(--purple-primary);
    border-radius: 2px;
    transition: all 0.25s ease;
}


/* ==========================================================================
   RIGHT SIDE NAVIGATION DRAWER PANEL
   ========================================================================== */
.side-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 9000;
    display: none;
    justify-content: flex-end;
}

.side-drawer-overlay.active {
    display: flex;
}

.side-drawer-panel {
    width: 310px;
    max-width: 85vw;
    height: 100dvh;
    max-height: 100vh;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.side-drawer-header {
    padding: 20px;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-drawer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--purple-dark);
}

.btn-close-side-drawer {
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: #6B7280;
    cursor: pointer;
}

.side-drawer-menu {
    flex: 1;
    padding: 20px 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.side-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #1F2937;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.side-menu-link:hover,
.side-menu-link.active {
    background: var(--purple-soft);
    color: var(--purple-primary);
}

.side-menu-divider {
    height: 1px;
    background: #E5E7EB;
    margin: 10px 0;
}

.side-admin-link {
    background: #F0FDF4;
    color: #047857;
}

.side-drawer-footer {
    padding: 20px;
    border-top: 1px solid #E5E7EB;
    text-align: center;
    background: #F9FAFB;
}


/* ==========================================================================
   SCROLL MOTION REVEAL ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px) scale(0.97);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.fiona-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 60px 50px 60px;
    overflow: hidden;
    background: #FFFFFF;
}

.hero-purple-wave-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 62vw;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.purple-wave-svg {
    width: 100%;
    height: 100%;
}

.hero-left-blob {
    position: absolute;
    bottom: 60px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--purple-light) 0%, var(--purple-primary) 70%, transparent 100%);
    opacity: 0.25;
    filter: blur(40px);
    border-radius: 50%;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 30px;
}

.hero-text-block {
    max-width: 520px;
}

.hero-tag-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 10px;
}

.dash-line {
    width: 45px;
    height: 2px;
    background: #374151;
}

.hero-main-title {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: #111827;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 30px;
}

.hero-action-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-shop-now {
    background: #000000;
    color: #FFFFFF;
    border: none;
    padding: 14px 36px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-shop-now:hover {
    background: var(--purple-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--purple-glow-heavy);
}

.hero-pagination-counter {
    display: flex;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #9CA3AF;
}

.counter-num.active {
    color: var(--purple-primary);
}

.hero-image-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-ring-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(243, 232, 255, 0.2) 60%, transparent 100%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

.hero-ring-img {
    position: relative;
    z-index: 2;
    max-width: 440px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.2));
}

.float-graphic {
    animation: floatJewelry 6s ease-in-out infinite;
}

@keyframes floatJewelry {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.hero-vertical-side-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    z-index: 5;
}

.side-line {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.side-brand {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}


/* ==========================================================================
   BEST PRICE CATEGORIES (ALWAYS HORIZONTAL CAROUSEL SIDE-BY-SIDE VIEW)
   ========================================================================== */
.fiona-categories-section {
    position: relative;
    padding: 60px 40px;
    background: #FFFFFF;
}

.categories-grid-horizontal-carousel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 5px 20px 5px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.categories-grid-horizontal-carousel::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 320px;
    min-width: 260px;
    scroll-snap-align: start;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #F3F4F6;
    box-shadow: var(--card-shadow);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--purple-lavender);
}

.cat-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple-accent);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.cat-img-wrapper {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.cat-img {
    max-height: 140px;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.cat-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111827;
}


/* ==========================================================================
   ABOUT FIONA SHOP
   ========================================================================== */
.fiona-about-section {
    position: relative;
    padding: 90px 60px;
    background: #FFFFFF;
    overflow: hidden;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.section-heading-with-bar {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-center {
    justify-content: center;
}

.purple-bar {
    color: var(--purple-primary);
    font-weight: 900;
}

.about-paragraph {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 16px;
}

.btn-read-more {
    background: #000000;
    color: #FFFFFF;
    border: none;
    padding: 12px 34px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: var(--purple-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--purple-glow);
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-bangles-img {
    max-width: 440px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}


/* ==========================================================================
   OUR FIONA PRICE (PROFESSIONAL LUXURY FILTER CHIPS WITH MICRO-ANIMATIONS)
   ========================================================================== */
.fiona-products-section {
    padding: 80px 60px;
    background: #F9FAFB;
    position: relative;
}

.products-container {
    max-width: 1100px;
    margin: 0 auto;
}

.products-filter-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 56px;
    padding: 8px 4px 12px 4px;
}

/* Luxury Shimmer Filter Chip Design */
.filter-chip {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 1.5px solid #E5E7EB;
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(6px);
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.filter-chip:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: var(--purple-accent);
    color: var(--purple-primary);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.18);
    background: #FFFFFF;
}

/* Shimmer Light Reflection Sweep Animation */
.filter-chip::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: rotate(25deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.filter-chip:hover::after {
    left: 130%;
}

/* Active Shimmer Luxury Purple Pill */
.filter-chip.active {
    background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 50%, #9333EA 100%);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.filter-chip.active:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.55);
}

/* Upload Product Luxury Pulsing Button */
.btn-upload-product {
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    color: #FFFFFF;
    border: none;
    padding: 9px 22px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.35);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    animation: pulseUploadGlow 3s infinite alternate;
}

@keyframes pulseUploadGlow {
    0% {
        box-shadow: 0 4px 18px rgba(124, 58, 237, 0.35);
    }

    100% {
        box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6);
    }
}

.btn-upload-product:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.6);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    border: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.12);
    border-color: var(--purple-lavender);
}

.product-delete-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #FEE2E2;
    color: #EF4444;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.4;
}

.product-img-box {
    height: 160px;
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 12px;
    background: #F9FAFB;
}

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

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

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--purple-accent);
    margin-bottom: 16px;
}

.btn-buy-now {
    background: #FFFFFF;
    color: #111827;
    border: 1px solid #D1D5DB;
    padding: 8px 22px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background: var(--purple-primary);
    color: #FFFFFF;
    border-color: var(--purple-primary);
    box-shadow: 0 4px 12px var(--purple-glow);
}

.see-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-see-more {
    background: #000000;
    color: #FFFFFF;
    border: none;
    padding: 12px 38px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* ==========================================================================
   PERIODICALLY CHANGING BANNER CAROUSEL & DOTS
   ========================================================================== */
.fiona-banner-section {
    padding: 50px 60px;
    background: #F9FAFB;
}

.banner-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    align-items: center;
    border: 1px solid #F3F4F6;
}

.banner-left-content {
    padding: 50px;
    text-align: center;
}

.banner-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--purple-accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.banner-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.banner-right-image {
    height: 290px;
    overflow: hidden;
}

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

.banner-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: var(--purple-primary);
    width: 22px;
    border-radius: 10px;
}


/* ==========================================================================
   ENGLISH TESTIMONIALS WITH ADAPTIVE RESPONSIVE LAYOUT
   ========================================================================== */
.fiona-testimonial-section {
    position: relative;
    padding: 80px 60px;
    background: #FFFFFF;
    overflow: hidden;
}

.testimonial-container {
    max-width: 850px;
    margin: 0 auto;
}

.testimonial-card-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid var(--purple-soft);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
    border-radius: 12px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-avatar-block {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.customer-avatar-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 3px;
    background: var(--purple-gradient);
    flex-shrink: 0;
}

.customer-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFFFFF;
}

.customer-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
}

.customer-role {
    font-size: 0.78rem;
    color: var(--purple-accent);
    font-weight: 600;
}

.customer-quote {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #4B5563;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
}

.nav-arrow {
    background: #F3F4F6;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
    z-index: 10;
}

.nav-arrow:hover {
    background: var(--purple-primary);
    color: #FFFFFF;
}


/* ==========================================================================
   CONTACT US FORM & MAP
   ========================================================================== */
.fiona-contact-section {
    position: relative;
    padding: 80px 60px;
    background: #FFFFFF;
    overflow: hidden;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 35px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-size: 0.9rem;
    outline: none;
    background: #F9FAFB;
}

.btn-send-purple {
    background: var(--purple-gradient-btn);
    color: #FFFFFF;
    border: none;
    padding: 12px 42px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 4px 15px var(--purple-glow);
}

.contact-map-card {
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* ==========================================================================
   FOOTER WITH PROTRUDING CAPSULE LOGO
   ========================================================================== */
.fiona-footer {
    position: relative;
    background: #1F2937;
    color: #FFFFFF;
    padding: 70px 60px 35px 60px;
    margin-top: 50px;
}

.footer-protruding-logo-capsule {
    position: absolute;
    top: -30px;
    left: 60px;
    background: #FFFFFF;
    padding: 8px 26px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.footer-logo-text {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: 2px;
}

.footer-content-bar {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #D1D5DB;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #9CA3AF;
    margin-top: 25px;
}


/* ==========================================================================
   FIXED MODAL OVERLAYS (NO !IMPORTANT ON DISPLAY NONE SO JS SHOWS THEM CLEANLY)
   ========================================================================== */
.login-modal-overlay,
.cart-drawer-overlay,
.notebook-biodata-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.cart-drawer-overlay.active {
    display: flex !important;
    justify-content: flex-end !important;
}

.login-modal-overlay.active,
.notebook-biodata-overlay.active {
    display: flex !important;
}

.cart-drawer-content {
    width: 380px;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100vh;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.35s ease;
    overflow: hidden;
}

.cart-drawer-header {
    padding: 18px 20px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.btn-close-drawer {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items-recycler {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-drawer-footer {
    padding: 18px 20px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    border-top: 1px solid #E5E7EB;
    background: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.08);
    position: sticky;
    bottom: 0;
    z-index: 100;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cart-total-amount {
    color: var(--purple-primary);
}

.btn-proceed-checkout {
    width: 100%;
    background: var(--purple-primary);
    color: #FFFFFF;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
}


/* ==========================================================================
   CHECKOUT PAGE DESIGN
   ========================================================================== */
.checkout-page-card {
    background: #F3F4F6;
    border-radius: 16px;
    padding: 25px;
    width: 95%;
    max-width: 680px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.checkout-page-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
}

.checkout-form-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-section-box {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.box-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.box-label-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.box-icon {
    font-size: 1rem;
    color: var(--purple-primary);
}

.box-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
}

.btn-auto-locate-purple {
    background: var(--purple-primary);
    color: #FFFFFF;
    border: none;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
}

.checkout-section-box textarea,
.checkout-section-box input[type="tel"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.88rem;
    outline: none;
    background: #F9FAFB;
}

.payment-options-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-radio-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    cursor: pointer;
    background: #F9FAFB;
    font-size: 0.88rem;
    font-weight: 600;
}

.payment-radio-card.active-green {
    border: 2px solid #10B981;
    background: #F0FDF4;
    color: #047857;
}

.whatsapp-label-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #10B981;
}

.whatsapp-payment-subpanel {
    margin-top: 12px;
    background: #F0FDF4;
    border: 1px dashed #10B981;
    border-radius: 10px;
    padding: 16px;
}

.wa-instruction-text {
    font-size: 0.82rem;
    color: #065F46;
    margin-bottom: 12px;
    line-height: 1.4;
}

.upi-display-box {
    background: #FFFFFF;
    border: 1px solid #A7F3D0;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.upi-id-text {
    font-size: 0.88rem;
    font-weight: 800;
    color: #065F46;
}

.btn-copy-upi {
    background: #10B981;
    color: #FFFFFF;
    border: none;
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
}

.btn-open-whatsapp-pay {
    width: 100%;
    background: #10B981;
    color: #FFFFFF;
    border: none;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.upload-dropzone {
    background: #FFFFFF;
    border: 1px dashed #A7F3D0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.upload-arrow-icon {
    font-size: 1.2rem;
    color: #10B981;
}

.upload-main-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: #047857;
}

.upload-sub-text {
    font-size: 0.72rem;
    color: #6EE7B7;
}

.checkout-pricing-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

.price-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #4B5563;
}

.free-text {
    color: var(--purple-primary);
    font-weight: 700;
}

.price-line.total-line {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    padding-top: 8px;
    border-top: 1px solid #E5E7EB;
}

.total-line strong {
    color: var(--purple-primary);
}

.btn-confirm-order-purple {
    width: 100%;
    background: var(--purple-primary);
    color: #FFFFFF;
    border: none;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 10px;
    cursor: pointer;
}


/* ==========================================================================
   PRODUCT DETAIL FULL PAGE MODAL
   ========================================================================== */
.product-detail-full-card {
    max-width: 720px !important;
    width: 95% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    padding: 20px !important;
}

.detail-page-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.detail-back-arrow,
.detail-wishlist-heart {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--purple-primary);
}

.detail-large-img-container {
    background: #F9FAFB;
    border-radius: 10px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}

.detail-zoom-img {
    max-height: 230px;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.detail-zoom-img:hover {
    transform: scale(1.35);
}

.detail-title-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.detail-main-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
}

.detail-cat-subtitle {
    font-size: 0.78rem;
    color: #6B7280;
}

.detail-price-tag {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--purple-primary);
}

.star-rating-badge-row {
    margin-bottom: 14px;
}

.star-pill {
    background: #FEF3C7;
    color: #D97706;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

.detail-section-block {
    margin-bottom: 16px;
}

.detail-section-block h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.interactive-star-row {
    display: flex;
    gap: 4px;
    font-size: 1.3rem;
    color: #D1D5DB;
    cursor: pointer;
}

.interactive-star.active {
    color: #F59E0B;
}

.user-rated-feedback {
    display: block;
    font-size: 0.8rem;
    color: #059669;
    font-weight: 700;
    margin-top: 6px;
}

.similar-items-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.similar-item-card {
    flex-shrink: 0;
    width: 90px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
}

.similar-item-card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 4px;
}

.similar-item-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-item-price {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--purple-primary);
}

.detail-bottom-action-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #E5E7EB;
}

.qty-selector-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 4px 10px;
}

.btn-detail-add-cart {
    flex: 1;
    background: var(--purple-primary);
    color: #FFFFFF;
    border: none;
    padding: 12px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
}


/* ==========================================================================
   ADMIN DASHBOARD CONTAINER
   ========================================================================== */
.admin-dashboard-container,
.my-profile-container,
.login-box,
.notebook-modal-content {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 25px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.admin-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-back-btn {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

.admin-dashboard-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
}

.admin-tabs-row {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 12px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.admin-tab-btn {
    background: #F3F4F6;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4B5563;
    cursor: pointer;
    flex-shrink: 0;
}

.admin-tab-btn.active {
    background: var(--purple-primary);
    color: #FFFFFF;
}

.admin-tab-panel {
    display: none;
}

.admin-tab-panel.active {
    display: block;
}

.panel-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.panel-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
}

.btn-add-new-purple {
    background: var(--purple-primary);
    color: #FFFFFF;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
}


/* ==========================================================================
   MY PROFILE STYLES
   ========================================================================== */
.my-profile-heading {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.profile-purple-banner {
    background: var(--purple-gradient);
    border-radius: 12px;
    padding: 20px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.profile-avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    border: 2px solid #FFFFFF;
}

.profile-name-text {
    font-size: 1.1rem;
    font-weight: 800;
}

.profile-email-text {
    font-size: 0.82rem;
    opacity: 0.9;
    margin-top: 4px;
}

.profile-admin-badge {
    display: inline-block;
    background: #FEF08A;
    color: #854D0E;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 10px;
    margin-top: 8px;
}

.profile-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-action-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 14px 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.profile-action-card:hover {
    background: var(--purple-soft);
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #111827;
}

.card-expanded-content {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #E5E7EB;
    font-size: 0.85rem;
    color: #4B5563;
    line-height: 1.5;
}

.profile-action-card.expanded .card-expanded-content {
    display: block;
}

.card-logout-row {
    background: #FEE2E2;
    border-color: #FCA5A5;
}

.card-title-logout {
    color: #DC2626;
}

.btn-close-login,
.btn-close-notebook {
    position: absolute;
    top: 15px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #6B7280;
    cursor: pointer;
}


/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .desktop-top-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* HIDE ONLY EXPENSIVE HEAVY BLURS & PARTICLES ON MOBILE */
    .ambient-bg-orb,
    .fav-bg-orb,
    .hero-left-blob,
    .noise-overlay,
    .floating-particle,
    .hero-bg-accent-shape,
    .banner-geometric-shape {
        display: none !important;
        animation: none !important;
    }

    /* RESTORE HERO PURPLE WAVE CONTAINER WITH GPU HARDWARE ACCELERATION */
    .hero-purple-wave-container {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0.85 !important;
        transform: translateZ(0);
        will-change: transform;
    }

    .purple-wave-svg,
    .wave-bg-path,
    .wave-main-path,
    .wave-sub-path {
        display: block !important;
        transform: translateZ(0);
    }

    .fiona-hero-section,
    .fiona-categories-section,
    .fiona-products-section,
    .fiona-about-section,
    .fiona-contact-section {
        transform: translateZ(0); /* Enable GPU Hardware Acceleration */
    }

    .app-header {
        padding: 0 15px;
    }

    .categories-grid-horizontal-carousel {
        justify-content: flex-start;
        padding-left: 15px;
        padding-right: 15px;
    }

    .category-card {
        flex: 0 0 250px;
        min-width: 230px;
    }

    .fiona-hero-section {
        padding: 120px 20px 40px 20px;
        flex-direction: column;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-image-block {
        margin-top: 20px;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .hero-action-row {
        justify-content: center;
    }

    .hero-vertical-side-badge {
        display: none;
    }

    /* HIDE FAVORITES, CART & PROFILE ON TOP BAR FOR MOBILE (ACCESSIBLE VIA SIDE MENU DRAWER) */
    .fav-heart-nav-btn,
    .cart-btn-wrap,
    .nav-profile-btn {
        display: none !important;
    }

    /* HORIZONTALLY SCROLLABLE FILTER BAR FOR MOBILE (WITH AMPLE VERTICAL HEIGHT) */
    .products-filter-bar {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 10px 6px 16px 6px !important;
        min-height: 64px !important; /* Plenty of vertical height so chips are never clipped */
        width: 100% !important;
        max-width: 100% !important;
        scrollbar-width: none !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .products-filter-bar::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .filter-chip,
    .btn-upload-product {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        border-radius: 24px !important;
        min-height: 42px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .fiona-products-section {
        padding: 30px 6px !important; /* Edge-to-edge section width */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .products-container {
        padding: 0 4px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* UNCONGESTED FULL-WIDTH 2-COLUMN PRODUCT GRID */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin-top: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .product-card {
        padding: 34px 8px 12px 8px !important;
        border-radius: 20px !important;
        background: #FFFFFF !important;
        border: 1px solid #F3F4F6 !important;
        box-shadow: 0 4px 14px rgba(124, 58, 237, 0.08) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
        position: relative !important;
        width: 100% !important;
    }

    .product-delete-btn {
        top: 6px !important;
        right: 6px !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 0.85rem !important;
        z-index: 5 !important;
    }

    .product-card > button[title="Toggle Favorite"] {
        top: 6px !important;
        left: 6px !important;
        width: 26px !important;
        height: 26px !important;
        font-size: 0.9rem !important;
        z-index: 5 !important;
    }

    .product-img-box {
        height: 135px !important;
        margin-bottom: 8px !important;
        width: 100% !important;
        overflow: hidden !important;
        position: relative !important;
        display: block !important;
        border-radius: 12px !important;
    }

    .product-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        height: 100% !important;
        width: 100% !important;
        max-height: none !important;
        max-width: none !important;
        object-fit: cover !important;
        border-radius: 12px !important;
    }

    .product-name {
        font-size: 0.84rem !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
        color: #111827 !important;
        min-height: 34px !important;
        text-align: center !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .product-price {
        font-size: 1rem !important;
        font-weight: 800 !important;
        color: #7C3AED !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    .product-card-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        width: 100% !important;
        margin-top: auto !important;
    }

    .btn-add-cart-card {
        width: 100% !important;
        padding: 9px 8px !important;
        font-size: 0.76rem !important;
        font-weight: 700 !important;
        border-radius: 20px !important;
        background: #F3E8FF !important;
        color: #7C3AED !important;
        border: 1.5px solid #E9D5FF !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* SHARP LUXURY BUY NOW BUTTON SHAPE */
    .btn-buy-now {
        width: 100% !important;
        padding: 10px 8px !important;
        font-size: 0.78rem !important;
        font-weight: 800 !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%) !important;
        color: #FFFFFF !important;
        border: none !important;
        box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3) !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* MOBILE RESPONSIVE CATEGORIES CAROUSEL CENTERING & CARD SIZING */
    .fiona-categories-section {
        padding: 24px 0 !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .carousel-main-container {
        display: block !important;
        width: 100% !important;
        padding: 20px 0 !important;
        overflow: hidden !important;
        position: relative !important;
        box-sizing: border-box !important;
        min-height: 340px !important;
    }

    .fiona-scroll-carousel {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 20px !important;
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
        will-change: transform !important;
        width: max-content !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Small Sleek Circular Side Navigation Buttons */
    .carousel-side-nav-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
        z-index: 35 !important;
        top: 42% !important;
        transform: translateY(-50%) !important;
        background: rgba(30, 27, 75, 0.88) !important;
        color: #FFFFFF !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        backdrop-filter: blur(8px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    }

    .carousel-side-nav-btn.prev {
        left: 4px !important;
    }

    .carousel-side-nav-btn.next {
        right: 4px !important;
    }

    /* Non-selected side cards are smaller (scale 0.68) & faded (opacity 0.35) */
    .category-card-item {
        flex: 0 0 175px !important;
        width: 175px !important;
        opacity: 0.35 !important;
        transform: scale(0.68) !important;
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    .cat-img-box {
        width: 175px !important;
        height: 230px !important;
        border-radius: 20px !important;
    }

    .cat-title {
        font-size: 1rem !important;
    }

    .cat-subtitle {
        font-size: 0.78rem !important;
    }

    /* Active selected card is full-size (1.05) & 100% opaque in dead-center */
    .category-card-item.active-center-card {
        opacity: 1 !important;
        transform: scale(1.05) !important;
        z-index: 10 !important;
    }

    .category-card-item.active-center-card .cat-title {
        font-size: 1.1rem !important;
    }

    .fiona-banner-section {
        padding: 30px 12px !important;
    }

    .banner-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        overflow: hidden !important;
        border-radius: 32px !important;
        padding: 0 !important;
        min-height: 380px !important;
        background: #1E1B4B !important;
        box-shadow: 0 15px 45px rgba(124, 58, 237, 0.25) !important;
    }

    /* FULL-BACKGROUND BLURRED IMAGE FOR MOBILE WHEN NO HORIZONTAL SPACE */
    .banner-right-image {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        border-radius: 32px !important;
        overflow: hidden !important;
    }

    .banner-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        filter: blur(5px) brightness(0.7) !important; /* Medium level blur for clean visibility */
        transform: scale(1.15) !important;
    }

    /* CENTERED GLASSMORPHISM TEXT CONTAINER OVER BLURRED BG IMAGE */
    .banner-left-content {
        position: relative !important;
        z-index: 2 !important;
        padding: 36px 20px !important;
        margin: 16px !important;
        text-align: center !important;
        width: calc(100% - 32px) !important;
        background: rgba(255, 255, 255, 0.22) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-radius: 26px !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
        box-sizing: border-box !important;
    }

    .banner-title {
        color: #FFFFFF !important;
        font-size: 2.2rem !important;
        text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
        background: linear-gradient(135deg, #FFFFFF 0%, #E9D5FF 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        margin-bottom: 10px !important;
    }

    #bannerSubtitleText {
        color: #F3F4F6 !important;
        font-weight: 600 !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .banner-tag {
        background: rgba(255, 255, 255, 0.92) !important;
        color: #7C3AED !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }

    .btn-buy-now.banner-btn {
        background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%) !important;
        box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5) !important;
    }

    .about-container,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .footer-content-bar {
        flex-direction: column;
        gap: 15px;
    }

    .footer-protruding-logo-capsule {
        left: 20px;
    }
}

/* ==========================================================================
   FAVORITES PAGE OVERLAY STYLES
   ========================================================================== */
.favorites-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.favorites-page-overlay.active {
    display: flex;
}

.favorites-page-container {
    background: #FFFFFF;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: slideUpFavorites 0.3s ease-out;
}

@keyframes slideUpFavorites {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

.favorites-page-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    background: #FFFFFF;
    z-index: 10;
    border-radius: 16px 16px 0 0;
}

.favorites-back-btn {
    background: var(--purple-soft);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1.3rem;
    color: var(--purple-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.favorites-back-btn:hover {
    background: var(--purple-primary);
    color: #FFFFFF;
}

.favorites-page-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.favorites-page-spacer {
    flex: 1;
}

.favorites-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    padding: 20px 25px;
}

.favorite-item-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
}

.favorite-item-card:hover {
    border-color: var(--purple-primary);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.favorite-item-img-wrapper {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-bottom: 1px solid #F3F4F6;
}

.favorite-item-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.favorite-item-info {
    padding: 12px;
}

.favorite-item-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.favorite-item-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--purple-primary);
    margin-bottom: 10px;
}

.favorite-item-actions {
    display: flex;
    gap: 6px;
}

.fav-btn-buy {
    flex: 1;
    background: var(--purple-primary);
    color: #FFFFFF;
    border: none;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.fav-btn-buy:hover {
    background: var(--purple-dark);
}

.fav-btn-remove {
    background: #FEE2E2;
    color: #DC2626;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.fav-btn-remove:hover {
    background: #FECACA;
}

.favorites-empty-content {
    text-align: center;
    padding: 60px 20px;
}

/* ==========================================================================
   FAVORITES LIST ITEMS (for favoritesListContainer)
   ========================================================================== */
.fav-item-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.fav-item-card:hover {
    border-color: var(--purple-primary);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.fav-item-img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    background: #FFFFFF;
    border-bottom: 1px solid #F3F4F6;
}

.fav-item-details {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fav-item-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.fav-item-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--purple-primary);
    margin: 0;
}

.fav-remove-btn {
    background: #FEE2E2;
    color: #DC2626;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.fav-remove-btn:hover {
    background: #FECACA;
}

.empty-heart-icon {
    font-size: 4rem;
    color: #D1D5DB;
    margin-bottom: 20px;
}

.favorites-empty-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.favorites-empty-content p {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 25px;
}

.btn-browse-jewelry {
    background: var(--purple-primary);
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-browse-jewelry:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
}

/* Mobile responsive for favorites page */
@media (max-width: 768px) {
    .favorites-page-container {
        width: 95%;
        max-height: 90vh;
        border-radius: 12px;
    }

    .favorites-page-header {
        padding: 15px 18px;
        border-radius: 12px 12px 0 0;
    }

    .favorites-page-title {
        font-size: 1.1rem;
    }

    .favorites-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
        padding: 15px 18px;
    }

    .favorite-item-img-wrapper {
        height: 120px;
    }

    .favorite-item-info {
        padding: 10px;
    }

    .favorite-item-name {
        font-size: 0.75rem;
    }

    .favorite-item-price {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   FULL PAGE FAVORITES OVERLAY WITH MOTION GRAPHICS
   ========================================================================== */
.favorites-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(243, 232, 255, 0.7) 0%, rgba(249, 250, 251, 0.95) 90%);
    z-index: 10000;
    display: none;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.favorites-page-overlay.active {
    display: block;
}

/* AMBIENT ANIMATED BACKGROUND ORBS FOR FAVORITES */
.fav-bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
    animation: favOrbFloat 14s ease-in-out infinite alternate;
}

.orb-fav-1 {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #C084FC, #7C3AED);
    top: -50px;
    right: -50px;
}

.orb-fav-2 {
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, #F472B6, #A855F7);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

@keyframes favOrbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 40px) scale(1.1); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}

.favorites-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.favorites-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 36px;
    border-bottom: 2px solid rgba(229, 231, 235, 0.8);
    position: relative;
}

.favorites-back-btn {
    background: #FFFFFF;
    border: 1.5px solid #E9D5FF;
    color: var(--purple-primary);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.12);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.favorites-back-btn:hover {
    background: var(--purple-primary);
    color: #FFFFFF;
    transform: scale(1.08) translateX(-2px);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.3);
}

.favorites-page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.favorites-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 28px;
}

/* PRODUCT CARD ACTION BUTTONS */
.product-card-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

.btn-add-cart-card {
    flex: 1;
    background: #F3E8FF;
    color: var(--purple-primary);
    border: 1.5px solid #E9D5FF;
    padding: 9px 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-add-cart-card:hover {
    background: var(--purple-primary);
    color: #FFFFFF;
    border-color: var(--purple-primary);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

/* CARDS WITH MOTION HOVER EFFECTS */
.fav-item-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08), 0 0 0 1px rgba(243, 232, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: favCardPop 0.4s ease-out forwards;
}

@keyframes favCardPop {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.fav-item-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.18), 0 0 0 1.5px #C084FC;
    background: #FFFFFF;
}

.fav-item-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
    transition: transform 0.35s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.fav-item-card:hover .fav-item-img {
    transform: scale(1.04);
}

.fav-item-details {
    width: 100%;
}

.fav-item-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 6px;
    line-height: 1.3;
}

.fav-item-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--purple-primary);
    margin-bottom: 14px;
}

.fav-remove-btn {
    width: 100%;
    padding: 10px 0;
    background: #FEF2F2;
    color: #EF4444;
    border: 1px solid #FCA5A5;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fav-remove-btn:hover {
    background: #EF4444;
    color: #FFFFFF;
    border-color: #EF4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

}

/* ==========================================================================
   MODAL CARDS & FORM DESIGN SYSTEM (Upload Product & My Orders)
   ========================================================================== */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10005;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-modal-overlay.active {
    display: flex;
}

.login-box {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(76, 29, 149, 0.2), 0 0 0 1px rgba(124, 58, 237, 0.1);
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

@keyframes modalPopIn {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.btn-close-login {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F3E8FF;
    border: none;
    color: var(--purple-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.btn-close-login:hover {
    background: var(--purple-primary);
    color: #FFFFFF;
}

.login-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    color: #1F2937;
    margin: 0 0 6px;
    font-weight: 700;
}

.login-subtitle {
    font-size: 0.88rem;
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.4;
}

/* FORM FIELDS LAYOUT */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
}

@media (max-width: 480px) {
    .form-row-2col {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: #FAFAFA;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1F2937;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #FFFFFF;
    border-color: #7C3AED;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 85px;
    font-family: inherit;
    line-height: 1.5;
}

.form-group input[type="file"] {
    padding: 8px 10px;
    background: #F3E8FF;
    border: 1.5px dashed #C084FC;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #6B21A8;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

/* ACTION BUTTON */
.btn-send-purple {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 6px;
}

.btn-send-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

/* MY ORDERS MODAL STYLING */
.orders-filter-row {
    background: #F9FAFB;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #F3E8FF;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.order-filter-btn {
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    color: #4B5563;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.order-filter-btn:hover {
    border-color: #C084FC;
    color: #7C3AED;
}

.order-filter-btn.active {
    background: #7C3AED;
    color: #FFFFFF;
    border-color: #7C3AED;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.28);
}

/* ==========================================================================
   CSS SCROLL SNAP CAROUSEL (EXACT MATCH TO DEMO 2 SCREENSHOT)
   ========================================================================== */
.fiona-categories-section {
    padding: 60px 20px;
    background: #E5E7EB; /* Light grey background matching Demo 2 */
    position: relative;
    overflow: hidden;
}

.carousel-swipe-tag {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #6B7280;
    margin-bottom: 24px;
    display: inline-block;
    text-transform: uppercase;
}

.carousel-main-container {
    display: block; /* Block layout ensures track left edge is strictly X = 0 for 100% accurate dead-centering! */
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
    min-height: 420px;
}

.fiona-scroll-carousel {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    width: max-content;
    margin: 0;
    padding: 0;
}

.category-card-item {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    flex: 0 0 280px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    user-select: none;
    opacity: 0.55;
    transform: scale(0.75);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cat-img-box {
    width: 280px;
    height: 360px;
    border-radius: 28px;
    overflow: hidden;
    background: #F3F4F6;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    animation: imageBreathing 5s ease-in-out infinite;
}

.cat-info-block {
    margin-top: 18px;
    text-align: center;
    transition: all 0.4s ease;
}

.cat-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1F2937;
    margin: 0 0 4px;
    letter-spacing: 0.5px;
}

.cat-subtitle {
    font-size: 0.88rem;
    color: #6B7280;
    margin: 0;
}

/* Active Center Card Highlight (Matching Demo 2) */
.category-card-item.active-center-card {
    opacity: 1 !important;
    transform: scale(1.15) !important;
    z-index: 10 !important;
}

.category-card-item.active-center-card .cat-img-box {
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.35), 0 0 0 3.5px #A855F7 !important;
}

.category-card-item.active-center-card .cat-title {
    color: #7C3AED !important;
    font-size: 1.35rem;
}

/* Circular Side Navigation Buttons */
.carousel-side-nav-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    background: #475569;
    color: #FFFFFF;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.35rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
    z-index: 20;
}

.carousel-side-nav-btn.prev { left: 10px; }
.carousel-side-nav-btn.next { right: 10px; }

.carousel-side-nav-btn:hover {
    background: #7C3AED;
    transform: translateY(-50%) scale(1.12);
}

/* Dots Bar */
.carousel-dots-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9CA3AF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-item.active {
    width: 16px;
    height: 16px;
    background: #1E1B4B; /* Dark navy dot as in Demo 2 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   PRODUCT DETAIL QUANTITY SELECTOR
   ========================================================================== */
.qty-selector-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F3E8FF;
    border: 1.5px solid #E9D5FF;
    border-radius: 14px;
    padding: 4px 8px;
    min-width: 125px;
    height: 48px;
    box-sizing: border-box;
}

.qty-selector-box button {
    background: #FFFFFF;
    border: none;
    color: var(--purple-primary);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(124, 58, 237, 0.15);
    transition: all 0.2s ease;
}

.qty-selector-box button:hover {
    background: var(--purple-primary);
    color: #FFFFFF;
    transform: scale(1.05);
}

.qty-selector-box span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1F2937;
    padding: 0 10px;
    min-width: 24px;
    text-align: center;
}

.detail-bottom-action-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    width: 100%;
}

.btn-detail-add-cart {
    flex: 1;
    height: 48px;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-detail-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

/* ==========================================================================
   PROPORTIONAL PRODUCT IMAGE FILL (NO STRETCHING)
   ========================================================================== */
.product-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #F3E8FF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(124, 58, 237, 0.15), 0 0 0 1.5px #C084FC;
}

.product-img-box {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    background: #F9FAFB;
    position: relative;
    margin-bottom: 12px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill proportionally without stretching */
    object-position: center;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

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

/* ==========================================================================
   POLAROID ENLARGED IMAGE ZOOM MODAL
   ========================================================================== */
.polaroid-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 100010;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.polaroid-modal-overlay.active {
    display: flex;
}

.polaroid-card-container {
    background: #FFFFFF;
    padding: 20px 20px 45px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    max-width: 580px;
    width: 100%;
    transform: rotate(-1.5deg) scale(0.95);
    animation: polaroidPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes polaroidPop {
    to { transform: rotate(-1deg) scale(1); }
}

.polaroid-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #7C3AED;
    color: #FFFFFF;
    border: 3px solid #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease;
    z-index: 10;
}

.polaroid-close-btn:hover {
    transform: scale(1.15) rotate(90deg);
    background: #6D28D9;
}

.polaroid-photo-frame {
    width: 100%;
    max-height: 480px;
    height: 400px;
    overflow: hidden;
    background: #111827;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
    touch-action: none; /* Prevent browser default pinch/pan so JS handles it */
}

.polaroid-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.polaroid-img.zoomed {
    max-width: none;
    max-height: none;
    width: 180%;
    cursor: zoom-out;
}

.polaroid-caption {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: #374151;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

/* ==========================================================================
   IMAGE BREATHING EFFECT & SECTION SCROLL HIGHLIGHT
   ========================================================================== */
@keyframes imageBreathing {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

.cat-img {
    animation: imageBreathing 5s ease-in-out infinite;
}

@keyframes sectionPulseHighlight {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); color: var(--purple-primary); }
    100% { transform: scale(1); }
}

.pulse-highlight {
    animation: sectionPulseHighlight 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   REVAMPED LUXURY TESTIMONIAL SECTION
   ========================================================================== */
.fiona-testimonial-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(249, 250, 251, 0.5) 0%, rgba(243, 232, 255, 0.4) 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-badge {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    color: #7C3AED;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.testimonial-subtitle {
    font-size: 1.05rem;
    color: #6B7280;
    margin-top: 8px;
    margin-bottom: 40px;
    text-align: center !important;
    width: 100%;
}

.testimonial-card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(233, 213, 255, 0.8);
    border-radius: 28px;
    padding: 40px 36px;
    max-width: 680px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12), 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.testimonial-quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1;
    color: #E9D5FF;
    position: absolute;
    top: 15px;
    left: 28px;
    user-select: none;
    pointer-events: none;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.customer-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.65;
    color: #1F2937;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.customer-avatar-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #F3E8FF;
    border: 2.5px solid #C084FC;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-details {
    text-align: left;
}

.customer-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 2px;
}

.customer-role {
    font-size: 0.82rem;
    color: #7C3AED;
    font-weight: 600;
}

.testimonial-nav-btn {
    background: #FFFFFF;
    border: 1.5px solid #E9D5FF;
    color: #7C3AED;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.testimonial-nav-btn:hover {
    background: #7C3AED;
    color: #FFFFFF;
    border-color: #7C3AED;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

/* ==========================================================================
   PRODUCT DETAIL VIEW PROPORTIONAL IMAGE FILL (NO GREY GAPS)
   ========================================================================== */
.detail-large-img-container {
    width: 100%;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    background: #F3F4F6;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#detailProductImg,
.detail-zoom-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Proportional fill across entire container */
    object-position: center !important;
    border-radius: 20px !important;
    transition: transform 0.4s ease;
}

#detailProductImg:hover {
    transform: scale(1.03);
}

/* ==========================================================================
   POLAROID NO-SCROLLBAR PAN & ZOOM CANVAS
   ========================================================================== */
.polaroid-photo-frame {
    width: 100%;
    height: 420px;
    overflow: hidden !important; /* Hide browser scrollbars completely */
    background: #111827;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    user-select: none;
    touch-action: none;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.polaroid-photo-frame::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.polaroid-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease-out;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.polaroid-img:active {
    cursor: grabbing;
}

/* ==========================================================================
   FAVORITES PAGE Z-INDEX OVERRIDE & GOOGLE AUTH STYLING
   ========================================================================== */
.favorites-page-overlay {
    z-index: 100050 !important; /* Always in front of any active profile modal */
}

.btn-google-auth {
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 12px;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    margin-top: 18px;
}

.btn-google-auth:hover {
    background: #F9FAFB;
    border-color: #C084FC;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.15);
}

.auth-card-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #7C3AED;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #9CA3AF;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E5E7EB;
}

.auth-divider span {
    padding: 0 12px;
}

/* ==========================================================================
   BODY SCROLL LOCK & ENLARGED POLAROID CARD
   ========================================================================== */
body.modal-open-scroll-lock {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none !important;
}

.polaroid-card-container {
    max-width: 820px !important;
    width: 90vw !important;
    padding: 24px 24px 30px !important;
}

.polaroid-photo-frame {
    width: 100%;
    height: 540px !important; /* Expanded frame height */
}

/* ==========================================================================
   REVAMPED LUXURY SPECIAL OFFER BANNER SECTION
   ========================================================================== */
.fiona-banner-section {
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(243, 232, 255, 0.6) 0%, rgba(229, 231, 235, 0.4) 100%);
}

.banner-card {
    max-width: 1040px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 36px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.16), 0 0 0 1.5px rgba(216, 180, 254, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
}

.banner-left-content {
    flex: 1;
    z-index: 2;
}

.banner-tag {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    color: #7C3AED;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.12);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.banner-title {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #1E1B4B;
    margin: 0 0 12px;
    line-height: 1.15;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #1E1B4B 0%, #6B21A8 50%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-buy-now.banner-btn {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-buy-now.banner-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, #6B21A8 0%, #7C3AED 100%);
}

.banner-right-image {
    flex: 0 0 380px;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    background: #F3F4F6;
    z-index: 2;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    animation: imageBreathing 6s ease-in-out infinite;
}

/* ==========================================================================
   MOTION GRAPHICS & ANIMATIONS FOR AUTH CARD
   ========================================================================== */
.auth-card-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 40px 36px;
    max-width: 440px;
    width: 90vw;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.28), 0 0 0 2px rgba(216, 180, 254, 0.8);
    text-align: center;
    transform: scale(0.92);
    animation: authCardPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes authCardPop {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.auth-card-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.orb-auth-1 {
    width: 160px;
    height: 160px;
    background: rgba(168, 85, 247, 0.25);
    top: -40px;
    left: -40px;
    animation: orbFloat 6s ease-in-out infinite alternate;
}

.orb-auth-2 {
    width: 180px;
    height: 180px;
    background: rgba(192, 132, 252, 0.2);
    bottom: -50px;
    right: -50px;
    animation: orbFloat 8s ease-in-out infinite alternate-reverse;
}

.auth-sparkle {
    position: absolute;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 1;
}

.sparkle-1 { top: 20px; right: 30px; animation: sparklePulse 2.5s ease-in-out infinite; }
.sparkle-2 { bottom: 25px; left: 25px; animation: sparklePulse 3.5s ease-in-out infinite 1s; }

@keyframes sparklePulse {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.3) rotate(20deg); opacity: 1; }
}

.auth-card-inner {
    position: relative;
    z-index: 2;
}

.auth-diamond-icon {
    font-size: 2.8rem;
    margin-bottom: 8px;
    display: inline-block;
    animation: diamondFloat 4s ease-in-out infinite;
}

@keyframes diamondFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(8deg); }
}

.auth-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1E1B4B;
    margin: 0 0 6px;
    letter-spacing: 1.5px;
}

.auth-card-subtitle {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0 0 24px;
    line-height: 1.45;
}

/* ==========================================================================
   5-DIGIT OTP DIGIT BOXES STYLING
   ========================================================================== */
.otp-digit-box {
    width: 52px;
    height: 60px;
    border-radius: 14px;
    border: 2px solid #E5E7EB;
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    color: #6B21A8;
    background: #F9FAFB;
    outline: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.otp-digit-box:focus {
    border-color: #A855F7;
    background: #FFFFFF;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   DUAL TAB SWITCHER FOR AUTH MODAL
   ========================================================================== */
.auth-tab-bar {
    display: flex;
    background: #F3F4F6;
    border-radius: 16px;
    padding: 4px;
    margin-bottom: 22px;
}

.auth-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tab-btn.active {
    background: #FFFFFF;
    color: #7C3AED;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.auth-input-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #4B5563;
}

.auth-input-field {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid #E5E7EB;
    margin-top: 4px;
    outline: none;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.auth-input-field:focus {
    border-color: #A855F7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

/* DISTINCT SIGN IN BUTTON STYLE (DEEP OBSIDIAN VIOLET) */
.btn-sign-in-action {
    width: 100%;
    margin-top: 22px;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    background: linear-gradient(135deg, #1E1B4B 0%, #4C1D95 100%);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(30, 27, 75, 0.3);
    transition: all 0.3s ease;
}

.btn-sign-in-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(30, 27, 75, 0.45);
    background: linear-gradient(135deg, #312E81 0%, #5B21B6 100%);
}

/* DISTINCT SIGN UP BUTTON STYLE (VIBRANT AMETHYST) */
.btn-sign-up-action {
    width: 100%;
    margin-top: 22px;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
    transition: all 0.3s ease;
}

.btn-sign-up-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, #6B21A8 0%, #9333EA 100%);
}

.auth-card-box.signup-mode {
    border-color: rgba(168, 85, 247, 0.9);
}

/* ADMIN UPLOAD & COMPRESSION LOADING SCREEN KEYFRAMES */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

#adminUploadLoadingOverlay.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Ensure Modals Opened from Favorites Page Display On Top */
.notebook-biodata-overlay {
    z-index: 100060 !important;
}

.polaroid-modal-overlay {
    z-index: 100070 !important;
}

.login-modal-overlay,
.cart-drawer-overlay {
    z-index: 100080 !important;
}