/* 
   Hijab Princesses — Brand Design System
   Premium, Mobile-First Boutique Experience
*/

:root {
    /* Brand Colors */
    --brand-gold: #c5a059;
    --brand-gold-dark: #a07840;
    --brand-gold-light: #dfc89d;
    --brand-dark: #1e293b;
    --brand-black: #0f172a;
    --brand-white: #ffffff;
    --brand-cream: #fffcf5;
    --brand-grey-light: #f8fafc;
    --brand-grey-mid: #e2e8f0;

    /* Semantic Colors */
    --text-main: #334155;
    --text-muted: #64748b;
    --text-contrast: #ffffff;
    --bg-main: #ffffff;
    --bg-alt: #fafafa;
    --border-subtle: #f1f5f9;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-premium: 0 10px 30px rgba(0,0,0,0.03);
    --shadow-float: 0 20px 40px rgba(0,0,0,0.06);

    /* Layout */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ── Brand Background Assets ── */
.bg-brand-fashion {
    background-image: url('../images/brand/fashion_hero.png');
    background-size: cover;
    background-position: center;
}
.bg-brand-interior {
    background-image: url('../images/brand/hero_bg.png');
    background-size: cover;
    background-position: center;
}
.bg-silk {
    background-image: url('../images/brand/texture_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.bg-brand-overlay {
    position: relative;
}
.bg-brand-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.85));
    z-index: 1;
}
.bg-brand-overlay-light::before {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95));
}
.bg-brand-overlay > *, .bg-brand-overlay-light > * {
    position: relative;
    z-index: 2;
}

/* ── Typography Legibility Utilities ── */
.glass-capsule {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.glass-capsule-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.soft-glow-text {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.soft-glow-text-light {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* ── Global Transitions ── */
* { transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, background 0.2s ease; }

/* ── Typography & Headings ── */
h1, h2, h3, h4, .brand-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brand-dark);
}

.text-gold { color: var(--brand-gold) !important; }

/* ── Premium Buttons ── */
.btn-brand-primary {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff !important;
    border: none;
    font-weight: 700;
    border-radius: 100px;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-brand-primary:active {
    transform: scale(0.96);
}

.btn-brand-outline {
    background: transparent;
    border: 1.5px solid var(--brand-gold);
    color: var(--brand-gold) !important;
    font-weight: 700;
    border-radius: 100px;
    padding: 11px 26px;
}

/* ── Premium Cards ── */
.brand-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

/* ── Header Optimization ── */
.main-header {
    background: #020406; /* Requested Dark Color */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.header-logo-container {
    text-align: center;
    flex: 1;
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff; /* High Contrast White */
}

.brand-logo-text .gold-part {
    color: var(--brand-gold);
}

.header-logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(197, 160, 89, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 992px) {
    .header-logo {
        height: 100px;
        width: 100px;
    }
}

.header-logo:hover {
    transform: scale(1.05);
    border-color: var(--brand-gold);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
}

/* ── Mobile-First Header Icons ── */
.header-action-btn {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; /* High Contrast White */
    font-size: 1.25rem;
    background: transparent;
    border: none;
    border-radius: 50%;
    position: relative;
}

.header-action-btn i {
    font-weight: 900 !important; /* Fix for FontAwesome Solid icons appearing as empty boxes */
}

/* ── RTL Spacing Adjustments ── */
[dir="rtl"] .me-1 { margin-left: .25rem !important; margin-right: 0 !important; }
[dir="rtl"] .ms-1 { margin-right: .25rem !important; margin-left: 0 !important; }

/* ── Featured Categories: Editorial 2.0 (Restored & Refined) ── */
.editorial-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* More compact columns */
    gap: 1.5rem;
    padding: 0.5rem 0;
}

@media (max-width: 991px) {
    .editorial-category-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1.5rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        margin-right: -1.25rem; /* Allow bleed to screen edge */
        margin-left: -1.25rem;
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }
    .editorial-category-grid::-webkit-scrollbar { display: none; }
    
    .editorial-category-card {
        flex: 0 0 160px; /* Small "Story" size on mobile */
        aspect-ratio: 4/5 !important;
        scroll-snap-align: start;
    }
}

.editorial-category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3; /* More horizontal/shorter on desktop */
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    background: #fff;
}

.editorial-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
}

.editorial-category-card:hover .editorial-category-img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

.editorial-category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0.85rem; /* Tighter padding for smaller cards */
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
    z-index: 2;
}

.editorial-category-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #1a1a1a;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.editorial-category-card:hover .editorial-category-badge {
    transform: translateY(-5px);
    background: var(--accent);
    color: #fff;
}

/* ── Shop Stylist Pill Navigation (Restored) ── */
.stylist-pill-track {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 1rem 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.stylist-pill-track::-webkit-scrollbar { display: none; }

.stylist-pill {
    flex: 0 0 auto;
    padding: 0.6rem 1.25rem;
    background: #f8f8f8;
    border: 1px solid #eee;
    color: #666;
    border-radius: 100px; /* Pill shape */
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.stylist-pill.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 12px var(--accent-light);
}
/* ── Quick Checkout FAB (Floating Action Button) ── */
.checkout-fab {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.4);
    border: 2px solid rgba(255,255,255,0.2);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.checkout-fab.visible {
    transform: translateY(0);
    opacity: 1;
}

.checkout-fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(197, 160, 89, 0.5);
    color: #fff !important;
}

.checkout-fab i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.checkout-fab .fab-count {
    background: #fff;
    color: var(--brand-gold-dark);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 900;
    margin-right: -0.25rem;
}

/* Animations */
@keyframes fab-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.fab-pulse-animate {
    animation: fab-pulse 0.5s ease-in-out 2;
}

@media (max-width: 991px) {
    .checkout-fab {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ── Shop Hero & Visual Navigation ── */
.shop-hero {
    background: linear-gradient(to bottom, #fffcf5, #fff);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.category-story-track {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.category-story-track::-webkit-scrollbar { display: none; }

.category-story-pill {
    flex: 0 0 85px;
    text-align: center;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.category-story-img-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-story-pill.active .category-story-img-wrapper {
    border-color: var(--brand-gold);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2);
}

.category-story-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #f1f5f9;
}

.category-story-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.category-story-pill.active .category-story-label {
    color: var(--brand-gold);
}

@media (max-width: 767px) {
    .category-story-pill { flex: 0 0 75px; }
    .category-story-img-wrapper { width: 65px; height: 65px; }
}

/* ── Modern Boutique "Active" Enhancements ── */

/* 1. Liquid Silk Hero Animation */
.shop-hero-animated {
    background: linear-gradient(-45deg, #fffcf5, #f8f1e5, #ffffff, #fffcf5);
    background-size: 400% 400%;
    animation: liquidSilk 15s ease infinite;
    position: relative;
    z-index: 1;
}

@keyframes liquidSilk {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 2. Glassmorphism Sticky Nav */
.sticky-shop-nav {
    position: sticky;
    top: -1px; /* Adjust for rounding issues */
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-shop-nav.is-sticky {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 3. Dual-Image Hover Reveal */
.pcard-img-reveal {
    position: relative;
    overflow: hidden;
}

.pcard-img-reveal img {
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s ease;
}

.pcard-img-secondary {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transform: scale(1.05);
    object-fit: cover;
    z-index: 1;
}

.pcard:hover .pcard-img-primary {
    opacity: 0;
    transform: scale(1.1);
}

.pcard:hover .pcard-img-secondary {
    opacity: 1;
    transform: scale(1);
}

/* 4. Pulsing Story Ring */
.category-story-pill.active .category-story-img-wrapper {
    position: relative;
}

.category-story-pill.active .category-story-img-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--brand-gold);
    border-radius: 50%;
    animation: storyPulse 2s infinite;
}

@keyframes storyPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.25); opacity: 0; }
}

/* 5. Luxury Activity Badges */
.pcard-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--brand-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pcard-badge-trending {
    background: linear-gradient(135deg, #fff, #fffcf5);
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold-dark);
}

.pcard-badge-new {
    background: var(--brand-dark);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ── Elite Boutique Experience Optimization ── */
html, body {
    max-width: 100%;
    overflow-x: clip !important; /* Critical fix for position: sticky */
}

.sticky-shop-nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.shop-hero {
    overflow: visible !important; /* Fixed sticky blockage */
}

/* Silk Ripple Effect for Active Feel */
.shop-hero-animated::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: silkRipple 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

@keyframes silkRipple {
    0% { transform: scale(0.9) translate(-5%, -5%); opacity: 0.3; }
    100% { transform: scale(1.1) translate(5%, 5%); opacity: 0.6; }
}

/* ── Category Section: Animated & Non-Fixed ── */
.category-bg-animated {
    background: linear-gradient(-45deg, #fffcf5, #f8f1e5, #ffffff, #fffcf5);
    background-size: 400% 400%;
    animation: categorySilk 12s ease infinite;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

@keyframes categorySilk {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sticky-shop-nav {
    position: relative !important; /* Removed Stickiness as requested "i dont need it to be fix" */
    top: auto !important;
    z-index: 10 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

/* ── Noir Edition: Dark Mode Shop ── */
.category-noir-silk {
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0a0a0a, #0f172a);
    background-size: 400% 400%;
    animation: categoryNoirSilk 15s ease infinite;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes categoryNoirSilk {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Outlined Category Pills for Dark Background */
.category-story-pill-noir .category-story-img-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.category-story-pill-noir .category-story-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.category-story-pill-noir.active .category-story-img-wrapper {
    border-color: var(--brand-gold);
    border-width: 2px;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.category-story-pill-noir.active .category-story-label {
    color: var(--brand-gold);
    font-weight: 800;
}

/* Pulsing Ring for Dark Mode */
.category-story-pill-noir.active .category-story-img-wrapper::after {
    border-color: var(--brand-gold);
    opacity: 0.4;
}

/* Text Refinements for White-on-Black */
.text-white-glow {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.text-gold-noir {
    color: var(--brand-gold);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
}

/* ── Silk & Smooth: Luxe Refinements ── */
.silk-mist-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
    background-size: 200% 200%;
    animation: silkMistFlow 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes silkMistFlow {
    0%, 100% { background-position: 0% 50%; opacity: 0.3; }
    50% { background-position: 100% 50%; opacity: 0.6; }
}

.section-divider-silk {
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.03), transparent);
    margin: -50px 0;
    position: relative;
    z-index: 2;
}

/* Elite Testimonials */
.testimonial-luxe-section {
    background: #ffffff;
    position: relative;
}

.testimonial-card-luxe {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.testimonial-card-luxe:hover {
    border-color: var(--brand-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.08);
}

.quote-icon-gold {
    color: var(--brand-gold);
    font-size: 2rem;
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

/* Newsletter Luxe */
.newsletter-luxe-section {
    background: var(--brand-dark);
    border-radius: 40px;
    margin: 4rem 1.5rem;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.newsletter-luxe-content {
    position: relative;
    z-index: 2;
}

.newsletter-glass-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 1.25rem 2rem;
    color: #ffffff;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s;
}

.newsletter-glass-input:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--brand-gold);
    outline: none;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

/* ── Social Luxe Buttons ── */
.social-luxe-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.1rem 2rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
}

.social-luxe-btn:hover {
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.tiktok-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ── Testimonials: Premium Redesign ── */
.testimonial-card-luxe {
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 24px;
    padding: 2.25rem;
    text-align: right;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card-luxe::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(197, 160, 89, 0.06);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card-luxe:hover {
    border-color: rgba(197, 160, 89, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(197, 160, 89, 0.1);
}

.tcard-stars {
    color: #c5a059;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.tcard-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a059, #a07840);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Social Platform Cards: Premium Redesign ── */
.social-invite-section {
    background: #fafaf8;
}

.social-platform-card {
    border-radius: 28px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.social-platform-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
}

.social-platform-card:hover {
    transform: translateY(-8px);
    color: #fff;
}

.social-platform-card:hover::after {
    background: rgba(0, 0, 0, 0.08);
}

.instagram-card {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 32px rgba(220, 39, 67, 0.25);
}

.instagram-card:hover {
    box-shadow: 0 20px 50px rgba(220, 39, 67, 0.4);
}

.tiktok-card {
    background: linear-gradient(135deg, #010101 0%, #161616 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.tiktok-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.social-platform-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.social-platform-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 1;
}

.social-platform-handle {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--brand-heading-font, 'Playfair Display', serif);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.social-platform-desc {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.social-platform-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.25s;
    position: relative;
    z-index: 1;
}

.social-platform-card:hover .social-platform-cta {
    background: rgba(255, 255, 255, 0.3);
}

/* ── Social Cards: Mobile Responsive ── */
@media (max-width: 767px) {
    .social-platform-card {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
        padding: 1.25rem 1.5rem;
        border-radius: 18px;
        text-align: right;
    }

    .social-platform-icon {
        font-size: 2.25rem;
        margin-bottom: 0;
        flex-shrink: 0;
        width: 46px;
        text-align: center;
    }

    .social-platform-name {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 0.15rem;
    }

    .social-platform-handle {
        font-size: 1rem;
        margin-bottom: 0;
    }
}
