@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap');

:root {
    --primary-gold: #D4AF37;
    --primary-dark-gold: #A17F41;
    --primary-light-gold: #F4E1D2;
    --roman-blue: #0E7490;   /* Updated to Luxury Teal */
    --roman-blue-deep: #155E75;
    --leaf-green: #0D9488;  /* Emerald Teal */
    --bg-dark: #0A0F14;      /* Deeper Dark */
    --bg-card: rgba(30, 38, 50, 0.9); /* Luminous Glass */
    --text-white: #FBFAFC;
    --text-muted: #A0AEC0;
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-blue: rgba(42, 90, 122, 0.3);
    --gold-glow: 0 0 30px rgba(212, 175, 55, 0.2);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E1D2 100%);
    --roman-gradient: linear-gradient(135deg, #0E7490 0%, #0D9488 100%);
    --sunset-gradient: linear-gradient(135deg, #0E7490 0%, #D4AF37 100%);
    
    /* Spacing System */
    --section-pad: 3.5rem 0;
    --section-pad-mobile: 2rem 0;
    --container-max: 1300px;
    --grid-gap: 2.5rem;
    --header-height: 80px;
}

html {
    scroll-behavior: auto;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.8;
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Main Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 15, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.main-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 60px;
}

.nav-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    width: max-content;
    max-width: min(72vw, 720px);
    pointer-events: none;
}

.nav-center .nav-links {
    pointer-events: auto;
}

.main-nav .logo,
.main-nav .nav-actions {
    position: relative;
    z-index: 3;
}

.header:not(.scrolled) .nav-links {
    background: rgba(8, 12, 18, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.header.scrolled .nav-links {
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border: none;
    box-shadow: none;
}

.nav-social-cluster {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-actions .social-icon-btn {
    width: 42px;
    height: 42px;
    background: rgba(8, 12, 18, 0.55);
    backdrop-filter: blur(10px);
}

.nav-actions .social-icon-btn svg {
    width: 19px;
    height: 19px;
}

.mobile-nav-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.nav-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #0D9488 0%, #0E7490 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 18px rgba(13, 148, 136, 0.35);
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.nav-wa-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.45);
    border-color: rgba(212, 175, 55, 0.35);
    color: #fff;
}

.nav-wa-btn--mobile {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .nav-wa-btn:not(.nav-wa-btn--mobile) {
        display: none;
    }
}

@media (max-width: 1200px) {
    .nav-links { gap: 1.25rem; }
    .nav-links a { font-size: 0.68rem; letter-spacing: 1.5px; }
    .header:not(.scrolled) .nav-links { padding: 0.45rem 1rem; }
}

/* --- FAQ & Policy panels (hidden until nav click) --- */
.info-panel.is-panel-hidden {
    display: none !important;
}

body.page-view-faq #faq,
body.page-view-policy #policy,
body.page-view-contact #contact {
    display: block !important;
}

body.page-view-faq #faq,
body.page-view-policy #policy,
body.page-view-contact #contact {
    min-height: calc(100vh - 100px);
    padding-top: 8rem;
    padding-bottom: 4rem;
}

body.page-view-faq #home-sections,
body.page-view-policy #home-sections,
body.page-view-contact #home-sections {
    display: none;
}

/* --- FAQ & Policy sections --- */
.info-section {
    position: relative;
    padding: var(--section-pad-desktop) 0;
}

.info-section--policy {
    background: rgba(8, 12, 18, 0.45);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(30, 38, 50, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    padding: 0 1.25rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-white);
    padding: 1.1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    color: var(--primary-gold);
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-bottom: 1.15rem;
    margin: 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.policy-card {
    background: rgba(30, 38, 50, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    padding: 1.75rem;
}

.policy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.policy-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px; /* Reduced from 100px */
    width: auto;
    filter: drop-shadow(0 0 10px rgba(196, 155, 85, 0.2));
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo img {
    height: 55px; /* Reduced from 70px */
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-gold);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.header-cart-btn {
    flex-shrink: 0;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, width 0.35s ease, margin 0.35s ease, border-width 0.35s ease;
}

body.is-page-scrolled .header-cart-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.85);
    width: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    border-width: 0;
    overflow: hidden;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn i {
    width: 28px;
    height: 28px;
}

/* --- Mobile Nav Overlay --- */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-nav.active {
    pointer-events: auto;
    visibility: visible;
}

.mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-nav.active .mobile-nav__backdrop {
    opacity: 1;
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #0f1419 0%, #0a0a0a 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active .mobile-nav__panel {
    transform: translateX(0);
}

.mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__brand img {
    height: 44px;
    width: auto;
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.mobile-nav-close i {
    width: 20px;
    height: 20px;
}

.mobile-nav-close:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.08);
}

/* Mobile menu cart preview */
.mobile-nav__cart {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.18);
}

.mobile-nav-cart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.mobile-nav-cart__head h3 {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.mobile-nav-cart__head h3 i {
    width: 16px;
    height: 16px;
}

.mobile-nav-cart__head span {
    color: var(--text-muted);
    font-weight: 400;
}

.mobile-nav-cart__view {
    appearance: none;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
}

.mobile-nav-cart__view:hover {
    color: var(--primary-gold);
}

.mobile-nav-cart__items {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-height: 180px;
    overflow-y: auto;
}

.mobile-nav-cart__empty {
    text-align: center;
    padding: 0.75rem 0.5rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.mobile-nav-cart__empty i {
    width: 28px;
    height: 28px;
    opacity: 0.35;
    margin-bottom: 0.35rem;
}

.mobile-nav-cart-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 0.65rem;
    align-items: center;
    padding: 0.55rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
}

.mobile-nav-cart-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-cart-item__name {
    font-size: 0.82rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.15rem;
}

.mobile-nav-cart-item__price {
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.mobile-nav-cart__checkout {
    display: block;
    width: 100%;
    margin-top: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: var(--roman-gradient);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.mobile-nav-link i {
    width: 18px;
    height: 18px;
    color: var(--primary-gold);
    opacity: 0.85;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
    color: #fff;
}

.mobile-nav__footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.mobile-nav__tagline {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding: 12rem 0 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: #000;
    overflow: hidden;
}

#hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 2s ease-in-out, transform 8s linear;
}

.hero-slide.active {
    opacity: 0.6;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 900px;
    margin: 6vh auto 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); /* Shadow for text pop */
}

.hero-content h4 {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #fff;
}

.hero-content h1 span {
    font-style: italic;
    display: block;
    font-size: 5rem;
    text-transform: none;
    font-family: 'Cormorant Garamond', serif;
    background: var(--sunset-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-engage {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
}

.hero-scroll-cue {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    color: var(--primary-gold);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.35s ease, transform 0.35s ease;
}

.hero-scroll-cue span:first-child {
    opacity: 0.9;
}

.hero-scroll-cue__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(8, 12, 18, 0.35);
    backdrop-filter: blur(8px);
    animation: heroScrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll-cue__icon i {
    width: 20px;
    height: 20px;
}

.hero-scroll-cue:hover {
    color: #fff;
    transform: translateY(3px);
}

.hero-scroll-cue:hover .hero-scroll-cue__icon {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

.btn-primary {
    display: inline-block;
    background: var(--roman-gradient);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    background: transparent;
    transition: 0.4s;
}

.btn-primary:hover {
    background: var(--roman-blue-deep);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 155, 85, 0.3);
}

.btn-secondary:hover {
    background: rgba(196, 155, 85, 0.1);
    transform: translateY(-5px);
}

/* --- Why Choose Section --- */
.why-section {
    padding: 3.5rem 0 4rem;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(14, 116, 144, 0.09) 0%, transparent 72%);
    pointer-events: none;
}

.why-section__header {
    text-align: center;
    margin-bottom: 2.75rem;
    position: relative;
    z-index: 1;
}

.why-section__header h4 {
    color: var(--primary-gold);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-bottom: 0.75rem;
    opacity: 0.85;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.why-section__header h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.why-section__subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.feature-item,
.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.35rem 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 55, 0.14);
    text-align: center;
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-item:hover,
.trust-stat:hover {
    border-color: rgba(212, 175, 55, 0.32);
    background: rgba(255, 255, 255, 0.045);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.feature-item {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.feature-item span {
    line-height: 1.4;
}

.feature-item i {
    color: var(--primary-gold);
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(196, 155, 85, 0.4));
}

.trust-stat {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.11) 0%, rgba(14, 116, 144, 0.07) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trust-stat__icon i {
    color: var(--primary-gold);
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.trust-stat__number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-gold);
    line-height: 1;
    letter-spacing: 0;
}

.trust-stat__label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

section.why-section {
    padding: 3.5rem 0 4rem !important;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-gold);
}

/* --- Section Structure --- */
section:not(.hero) {
    padding: var(--section-pad) !important; /* Force padding even if combined with .container */
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(42, 90, 122, 0.05) 0%, transparent 70%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.section-header h4 {
    color: var(--primary-gold);
    letter-spacing: 8px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.section-header h2 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--border-gold), transparent);
    opacity: 0.2;
}

.collections-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.col-card {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-card);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.col-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.col-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

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

.col-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transition: padding 0.5s ease;
}

.col-card:hover .col-overlay {
    padding-bottom: 3rem;
}

.col-overlay h3 {
    font-size: 1.8rem;
}

.col-overlay .arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    transition: 0.4s;
}

.col-card:hover .arrow {
    background: var(--primary-gold);
    color: #fff;
    transform: translateX(5px);
}

/* --- About Artist --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.about-img {
    width: 100% !important;
    height: 580px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(212, 175, 55, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--primary-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(212, 175, 55, 0.2);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Customization panel (product + homepage) --- */
.home-custom-panel-wrap {
    max-width: 640px;
    margin: -1.5rem auto 2.5rem;
}

.product-custom-panel {
    padding: 1.25rem 1.35rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 12, 18, 0.55);
}

.product-custom-panel__head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.product-custom-panel__head i {
    width: 16px;
    height: 16px;
    color: var(--primary-gold);
    opacity: 0.9;
}

.product-custom-panel__head h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.product-custom-panel__list {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.product-custom-panel__list li {
    margin-bottom: 0.45rem;
}

.product-custom-panel__list li strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.product-custom-panel__list li:last-child {
    margin-bottom: 0;
}

.product-wa-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #a7f3c7;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.product-wa-chat-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.product-wa-chat-btn:hover {
    transform: translateY(-1px);
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.55);
    color: #fff;
}

.about-text {
    position: relative;
    padding-left: 3rem;
    border-left: 2px solid rgba(212, 175, 55, 0.12);
}

.about-text h4 {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    font-style: normal;
    font-family: 'Outfit', sans-serif;
}

.about-text h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* --- Featured Pieces --- */
.featured-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 3rem;
    scrollbar-width: none;
}

.featured-scroll::-webkit-scrollbar {
    display: none;
}

.featured-card {
    flex: 0 0 300px;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

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

/* --- Instagram Reels Marquee --- */
.reels-marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 2rem 0;
    cursor: grab;
}

.reels-marquee-wrapper:active {
    cursor: grabbing;
}

.reels-marquee-wrapper::before,
.reels-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.reels-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}

.reels-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.reels-marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.reels-marquee-content:active {
    cursor: grabbing;
}

.reel-card {
    position: relative;
    width: 326px;
    height: 480px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-blue);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: stretch;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
    flex-shrink: 0;
}

.reel-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.reel-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 20, 0.0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.reel-card:hover .reel-click-overlay {
    background: rgba(10, 15, 20, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 1;
}

.reel-hover-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--primary-gold);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card:hover .reel-hover-overlay-content {
    transform: translateY(0);
}

.reel-hover-overlay-content i {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.reel-hover-overlay-content span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}


.reel-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 15, 20, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.reel-card:hover .reel-play-indicator {
    transform: translate(-50%, -50%) scale(1.15);
    border-color: var(--primary-gold);
    background: rgba(10, 15, 20, 0.85);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
}

.reel-play-indicator i {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-left: 4px; /* visually center the play triangle */
}

.reel-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(10, 15, 20, 0.95) 0%, rgba(10, 15, 20, 0.5) 70%, transparent 100%);
    z-index: 4;
    pointer-events: none;
    transition: opacity 0.4s;
    text-align: left;
}

.reel-card:hover .reel-info-overlay {
    opacity: 0;
}

.reel-caption {
    font-size: 0.95rem;
    color: var(--text-white);
    line-height: 1.4;
    font-weight: 300;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Footer --- */
footer {
    padding: var(--section-pad);
    background: var(--bg-dark);
    border-top: 1px solid var(--border-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.footer-legal-links a {
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--primary-gold) !important;
}

.footer-brand .footer-logo img {
    height: 72px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 320px;
    font-weight: 300;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
}

.footer-links li {
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 6px;
}

.footer-connect-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.footer-bottom-social {
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(30, 38, 50, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.social-icon-btn svg {
    width: 20px;
    height: 20px;
}

.social-icon-btn--sm {
    width: 38px;
    height: 38px;
}

.social-icon-btn--sm svg {
    width: 17px;
    height: 17px;
}

.social-icon-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.social-icon-btn--whatsapp:hover {
    color: #25D366;
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.4);
}

.social-icon-btn--instagram:hover {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.12);
    border-color: rgba(228, 64, 95, 0.4);
}

.social-icon-btn--pinterest:hover {
    color: #E60023;
    background: rgba(230, 0, 35, 0.12);
    border-color: rgba(230, 0, 35, 0.4);
}

.social-icon-btn.is-hidden {
    display: none;
}

.footer-location {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-location i {
    width: 18px;
    height: 18px;
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
    font-size: 0.85rem;
    color: var(--text-muted);
    gap: 2rem;
    flex-wrap: wrap;
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 20, 0.95);
    backdrop-filter: blur(15px);
    overflow-y: auto;
}

.modal-content {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 4rem;
    border: 1px solid var(--border-gold);
    width: 90%;
    max-width: 1200px;
    border-radius: 12px;
    position: relative;
    animation: modalSlide 0.5s ease;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
}

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

.close-modal {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    color: #888;
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary-gold);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header h2 {
    font-size: 3rem;
    color: var(--primary-gold);
}

.sidebar .logo {
            font-size: 1.5rem;
            color: var(--primary-gold);
        }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.p-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-gold);
}

.p-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.p-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.8s ease;
}

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

.p-info {
    padding: 2rem;
}

.p-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
}

.p-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.p-price {
    font-weight: 400;
    color: var(--primary-gold);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.p-card-media {
    display: block;
    overflow: hidden;
    height: 220px;
}

.p-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.p-info h3 a {
    color: inherit;
    text-decoration: none;
}

.p-info h3 a:hover {
    color: var(--primary-gold);
}

.p-add-cart-btn {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: var(--roman-gradient);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.p-add-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 148, 136, 0.35);
}

.cart-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 10002;
    padding: 0.85rem 1.35rem;
    border-radius: 8px;
    background: rgba(10, 15, 20, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--text-white);
    font-size: 0.9rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.cart-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-img {
        height: auto;
        max-height: 450px;
    }
    .collections-row { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 4rem; }
    .hero-content h1 span { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .footer-brand { grid-column: 1 / -1; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .modal-content { width: 95%; padding: 2rem; }
    .nav-links { gap: 1.5rem; }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.85rem;
    }

    .trust-stat {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 1.15rem;
        padding: 1.2rem 1.5rem;
    }

    .trust-stat__body {
        text-align: left;
    }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    section { padding: var(--section-pad-mobile); }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img {
        width: 100% !important;
        height: 350px !important;
        max-height: none;
    }
    .about-text {
        padding-left: 0;
        border-left: none;
    }
    .home-custom-panel-wrap {
        margin: -0.5rem auto 2rem;
    }
    .hero-content h1 { font-size: 3rem; }
    .hero-content h1 span { font-size: 2.5rem; }
    .hero {
        padding: 7rem 0 3rem !important;
    }
    .hero-content {
        margin-top: 2vh !important;
    }
    .hero-content h4 {
        margin-bottom: 0.8rem !important;
    }
    .hero-content h1 {
        margin-bottom: 1rem !important;
    }
    .hero-content p {
        margin-bottom: 1.5rem !important;
    }
    .hero-engage {
        margin-top: 1.5rem !important;
    }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .product-grid { grid-template-columns: 1fr; }
    .header { padding: 1rem 0; }
    .nav-social-cluster { display: none; }
    nav.main-nav { grid-template-columns: auto 1fr auto; }
    .logo img { height: 50px; }
    .header.scrolled .logo img { height: 40px; }
    .section-header h2 { font-size: 3rem; }
    .col-card { height: 350px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-col { display: flex; flex-direction: column; align-items: center; }
    .footer-brand { grid-column: auto; }
    .footer-tagline { max-width: 100%; }
    .footer-social-icons,
    .footer-bottom-social { justify-content: center; }
    .footer-location { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }

    /* Why Choose section — 2-column card grid on mobile */
    .why-section {
        padding: 2.25rem 0 2.75rem !important;
    }

    .why-section__header {
        margin-bottom: 1.75rem;
        padding: 0 0.25rem;
    }

    .why-section__header h4 {
        font-size: 0.65rem;
        letter-spacing: 0.28em;
    }

    .why-section__subtitle {
        font-size: 0.88rem;
        padding: 0 0.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .trust-stat {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 1.15rem;
        padding: 1.15rem 1.35rem;
    }

    .trust-stat__body {
        text-align: left;
    }

    .trust-stat__number {
        font-size: 1.75rem;
    }

    .feature-item {
        padding: 1rem 0.6rem;
        font-size: 0.58rem;
        letter-spacing: 0.1em;
        min-height: 96px;
    }

    .feature-item i {
        width: 22px;
        height: 22px;
    }

    .features-grid .feature-item:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 0.375rem);
        margin-inline: auto;
        width: 100%;
    }

    .marquee-section {
        padding: 2rem 0;
    }

    .marquee-title {
        font-size: 0.85rem;
        letter-spacing: 0.22em;
        margin-bottom: 1.5rem;
    }

    .marquee-btn {
        opacity: 1;
        width: 34px;
        height: 34px;
    }

    .marquee-btn.left { left: 8px; }
    .marquee-btn.right { right: 8px; }

    .mini-card {
        flex: 0 0 160px;
    }

    .floating-cart-btn {
        bottom: 1.15rem;
        right: 1.15rem;
        width: 52px;
        height: 52px;
    }

    .floating-cart-btn i {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; }
    .hero-scroll-cue { letter-spacing: 0.22em; font-size: 0.65rem; }
    .collections-row { grid-template-columns: 1fr; }

    .feature-item {
        min-height: 88px;
        padding: 0.85rem 0.5rem;
        font-size: 0.54rem;
    }

    .trust-stat__number {
        font-size: 1.55rem;
    }
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    visibility: hidden;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* Staggered Reveal for Grid Items */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; }

@keyframes sweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.p-card::before, .col-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    z-index: 5;
}

.p-card:hover::before, .col-card:hover::before {
    animation: sweep 1.5s infinite;
}

.custom-order-cta {
    margin-top: 2.5rem;
    padding: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid var(--border-gold);
    text-align: left;
}

.custom-order-cta h2 {
    font-size: 3rem !important;
    margin-bottom: 1.5rem !important;
}

.custom-order-cta p {
    margin-bottom: 2.5rem !important;
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: auto;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#splash-logo.pop-in {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#splash-logo.shrink-to-corner {
    top: 2rem;
    left: max(2rem, calc((100% - 1300px) / 2 + 2rem));
    width: 100px;
    transform: translate(0, 0) scale(1);
    opacity: 1;
}



body.content-hidden {
    overflow: hidden;
}

body.content-hidden main, 
body.content-hidden header, 
body.content-hidden footer {
    opacity: 0;
    pointer-events: none;
}

header, main, footer {
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body:not(.content-hidden) header,
body:not(.content-hidden) main,
body:not(.content-hidden) footer {
    opacity: 1 !important;
}

/* --- Placeholders --- */
.placeholder-card, .placeholder-item {
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border-gold);
    color: var(--border-gold);
}

.placeholder-card i, .placeholder-item i {
    font-size: 3rem;
    opacity: 0.3;
}

/* --- Animations & Transitions --- */
.reveal {
    opacity: 0;
    transform: translateY(80px) scale(0.96);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    will-change: transform, opacity;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* Staggered Reveal for Grid Items */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.15s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.25s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.35s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.45s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.55s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.65s; }

/* Section Dividers */
.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.15), transparent);
    margin: 0;
    position: relative;
    z-index: 2;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-gold);
    opacity: 0.3;
}
/* --- Bestsellers Marquee --- */
.marquee-section {
    padding: 2.5rem 0;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.03), transparent);
    overflow: hidden;
    position: relative;
}

.marquee-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 2.5rem;
    opacity: 0.7;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    position: relative;
}

.marquee-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 15, 20, 0.8);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: 0.3s;
}

.marquee-btn.left { left: 20px; }
.marquee-btn.right { right: 20px; }

.marquee-section:hover .marquee-btn {
    opacity: 1;
}

.marquee-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.marquee-content {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    width: max-content;
}

.marquee-content:active {
    cursor: grabbing;
}


.mini-card {
    flex: 0 0 200px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
}

.mini-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.mini-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.mini-info {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

/* --- Section Transitions --- */
#collections, #about {
    position: relative;
    transition: background-color 1.5s ease;
}

/* Diagonal Sweep Transition Effect */
.section-divider.transition-effect {
    height: 100px;
    background: linear-gradient(170deg, transparent 30%, var(--primary-gold) 50%, transparent 70%);
    background-size: 300% 100%;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    transform: skewY(-2deg);
    animation: luxuryFlow 8s ease-in-out infinite alternate;
}

@keyframes luxuryFlow {
    0% { background-position: 0% 50%; opacity: 0.12; }
    50% { opacity: 0.35; }
    100% { background-position: 100% 50%; opacity: 0.12; }
}


/* ============================================================
   BEAUTIFICATION ENHANCEMENTS
   ============================================================ */

/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(to right, var(--primary-gold), var(--roman-blue), var(--primary-gold));
    background-size: 200% 100%;
    z-index: 10001;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: width 0.08s linear;
    animation: progressGlow 3s ease infinite;
}

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

/* --- Custom Cursor (desktop only) --- */
.cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--primary-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease, background 0.2s ease;
    will-change: transform;
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99998;
    transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease, opacity 0.35s ease, background 0.35s ease;
    will-change: transform;
}

.cursor-dot.hovering {
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
}

.cursor-ring.hovering {
    width: 52px;
    height: 52px;
    border-color: rgba(212, 175, 55, 0.7);
    background: rgba(212, 175, 55, 0.04);
}

/* --- Animated gradient on hero headline span --- */
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content h1 span {
    background: linear-gradient(90deg, #D4AF37, #0E7490, #0D9488, #F4E1D2, #D4AF37) !important;
    background-size: 300% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: gradientShift 6s ease infinite;
}

/* --- Hero ambient orbs --- */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    animation: orbFade 1.5s ease forwards, orbDrift 14s ease-in-out infinite alternate;
}

@keyframes orbFade {
    to { opacity: 0.1; }
}

@keyframes orbDrift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(25px, -18px) scale(1.08); }
}

/* --- Pulse ring on WhatsApp CTA button --- */
@keyframes ctaPulse {
    0%   { box-shadow: 0 0 0 0 rgba(14, 116, 144, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(14, 116, 144, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 116, 144, 0); }
}

/* --- Button shimmer sweep on hover --- */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
}

.btn-primary:hover::after {
    transform: translateX(120%);
}

/* --- Section header animated underline --- */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
    margin: 1rem auto 0;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed .section-header h2::after,
.section-header:hover h2::after {
    width: 130px;
}

/* --- Directional reveals --- */
.reveal-left {
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.reveal-right {
    opacity: 0;
    transform: translateX(70px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

/* --- Why section staggered reveal --- */
.feature-item,
.trust-stat {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.features-grid.revealed > :nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.features-grid.revealed > :nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.features-grid.revealed > :nth-child(3) { opacity: 1; transform: none; transition-delay: 0.19s; }
.features-grid.revealed > :nth-child(4) { opacity: 1; transform: none; transition-delay: 0.26s; }
.features-grid.revealed > :nth-child(5) { opacity: 1; transform: none; transition-delay: 0.33s; }
.features-grid.revealed > :nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }

/* --- Mobile nav link stagger --- */
.mobile-nav-link {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active .mobile-nav-link:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.06s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.18s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.mobile-nav.active .mobile-nav-link:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.30s; }
.mobile-nav.active .mobile-nav-link:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.36s; }

.mobile-nav:not(.active) .mobile-nav-link {
    opacity: 0;
    transform: translateX(24px);
}

/* --- Page transition overlay --- */
#page-transition {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 99997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

#page-transition.entering {
    opacity: 1;
    pointer-events: all;
}

/* --- 3D card tilt perspective --- */
.col-card,
.p-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* --- Decorative section number watermark --- */
.section-watermark {
    position: absolute;
    top: 3rem;
    right: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* --- Gold dot separator on section divider --- */
.section-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-gold);
    font-size: 0.5rem;
    opacity: 0.2;
    line-height: 1;
}

.section-divider {
    position: relative;
}

/* --- Smooth page scroll --- */
html {
    scroll-behavior: auto;
}

/* --- Better footer link hover transition --- */
.footer-links a {
    transition: color 0.3s ease, padding-left 0.3s ease;
}

/* --- Reel card entrance animation --- */
@keyframes reelEntrance {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.reel-card {
    animation: reelEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* --- Sparkle on section headings (gold accent dots on subtitle) --- */
.section-header h4 {
    position: relative;
    display: inline-block;
}

.section-header h4::before,
.section-header h4::after {
    content: '—';
    margin: 0 0.8rem;
    opacity: 0.4;
    color: var(--primary-gold);
}

/* --- Hero content entrance --- */
@keyframes heroContentIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content h4  { animation: heroContentIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.hero-content h1  { animation: heroContentIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both; }
.hero-content p   { animation: heroContentIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both; }
.hero-engage      { animation: heroContentIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both; }

/* Don't animate hero content when coming back from splash (content was hidden) */
body.content-hidden .hero-content h4,
body.content-hidden .hero-content h1,
body.content-hidden .hero-content p,
body.content-hidden .hero-engage {
    animation: none;
    opacity: 0;
}

/* --- Glimmer on nav logo --- */
@keyframes logoGlimmer {
    0%   { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.15)); }
    50%  { filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.35)); }
    100% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.15)); }
}

.logo img {
    animation: logoGlimmer 4s ease-in-out infinite;
}

/* --- Teal glow on active nav link --- */
.nav-links a.active {
    color: var(--primary-gold) !important;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

/* ============================================================
   RESIN POUR DIVIDER
   ============================================================ */

.section-divider.transition-effect {
    display: none;
}

.resin-divider {
    position: relative;
    height: 88px;
    overflow: hidden;
    margin: 0;
    pointer-events: none;
    z-index: 2;
}

.resin-divider::after {
    content: '';
    position: absolute;
    top: 8px;
    left: -80%;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.35), rgba(255,255,255,0.2), rgba(212, 175, 55, 0.35), transparent);
    border-radius: 2px;
    animation: resinGlossLine 7s ease-in-out infinite;
    z-index: 20;
    filter: blur(0.5px);
}

@keyframes resinGlossLine {
    0%   { left: -80%; opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}

.resin-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    display: block;
}

.resin-svg--deep {
    animation: resinFlow 14s linear infinite;
    z-index: 3;
}

.resin-svg--mid {
    animation: resinFlowRight 10s linear infinite;
    z-index: 4;
}

.resin-svg--surface {
    animation: resinFlow 7s linear infinite;
    z-index: 5;
    filter: drop-shadow(0 -2px 6px rgba(212, 175, 55, 0.12));
}

@keyframes resinFlow {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes resinFlowRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.resin-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(14, 116, 144, 0.15) 0%, transparent 70%);
    z-index: 1;
    animation: resinGlow 6s ease-in-out infinite alternate;
}

@keyframes resinGlow {
    0%   { opacity: 0.5; transform: scaleX(0.8); }
    100% { opacity: 1;   transform: scaleX(1.2); }
}

/* ============================================================
   QUOTE CART SYSTEM STYLES
   ============================================================ */

/* --- Cart Icon & Badges --- */
.cart-icon-btn {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}
.cart-icon-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.cart-icon-btn i {
    width: 20px;
    height: 20px;
}

.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, color 0.3s;
    padding: 0;
    font: inherit;
}
body.is-page-scrolled .floating-cart-btn {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}
body.is-page-scrolled .floating-cart-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}
.floating-cart-btn i {
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-gold);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--bg-dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.floating-cart-btn .cart-badge {
    top: 0px;
    right: 0px;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
}

/* --- Cart Drawer Panel --- */
/* --- Cart Drawer Panel (Now Centered Screen Overlay Modal) --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2999;
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 850px;
    height: 80vh;
    background: rgba(10, 15, 20, 0.93);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    z-index: 3000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.15);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}
.cart-drawer.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

/* --- Mini cart dropdown (bag click) --- */
.cart-drawer--mini {
    top: 5.25rem;
    right: max(1rem, calc((100% - 1300px) / 2 + 1rem));
    left: auto;
    bottom: auto;
    width: min(380px, calc(100vw - 2rem));
    max-width: 380px;
    height: auto;
    max-height: min(520px, calc(100vh - 6rem));
    border-radius: 14px;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 175, 55, 0.1);
}

.cart-drawer--mini.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.cart-overlay {
    background: rgba(5, 7, 10, 0.45);
}

.cart-header--mini {
    padding: 1rem 1.15rem;
}

.cart-header--mini h2 {
    font-size: 1.35rem;
}

.mini-cart-count {
    font-size: 0.95rem;
    color: var(--primary-gold);
    font-family: 'Outfit', sans-serif;
}

.cart-body--mini {
    padding: 0.65rem 1rem 1rem;
    gap: 0.65rem;
    flex: 1;
    min-height: 0;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.mini-cart-item__img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
}

.mini-cart-item__info {
    flex: 1;
    min-width: 0;
}

.mini-cart-item__cat {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--roman-blue);
    margin-bottom: 0.15rem;
}

.mini-cart-item__name {
    font-size: 0.88rem;
    color: var(--text-white);
    margin: 0 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-item__price {
    font-size: 0.82rem;
    color: var(--primary-gold);
    margin: 0;
}

.mini-cart-variants,
.cart-item-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.35rem 0 0.1rem;
}

.mini-cart-variants span,
.cart-item-variants span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: rgba(14, 116, 144, 0.12);
    color: var(--text-muted);
    font-size: 0.66rem;
    line-height: 1.2;
}

.cart-item-variants span {
    font-size: 0.72rem;
}

.mini-cart-variants strong,
.cart-item-variants strong {
    color: var(--primary-gold);
    font-weight: 500;
}

.mini-cart-remove {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
}

.mini-cart-remove:hover {
    color: #e57373;
    background: rgba(229, 115, 115, 0.1);
}

.mini-cart-remove i {
    width: 16px;
    height: 16px;
}

.cart-empty-msg--mini {
    padding: 2rem 0.5rem;
    gap: 0.5rem;
}

.cart-empty-msg--mini p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--text-white);
    margin: 0;
}

.cart-empty-msg--mini span {
    font-size: 0.82rem;
    opacity: 0.75;
}

.mini-cart-footer {
    padding: 1rem 1.15rem 1.15rem;
    gap: 0.65rem;
    flex-direction: column;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(5, 7, 10, 0.4);
}

.mini-cart-checkout {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.08em;
    border-radius: 8px !important;
    text-decoration: none;
    display: block;
}

.mini-cart-continue {
    width: 100%;
    padding: 0.55rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.mini-cart-continue:hover {
    color: var(--primary-gold);
}

.cart-header {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-white);
    letter-spacing: 1px;
}
.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s, transform 0.2s;
}
.cart-close-btn:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.cart-body {
    flex: 1;
    padding: 2.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.cart-empty-msg {
    margin: auto;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.cart-empty-msg i {
    width: 56px;
    height: 56px;
    opacity: 0.3;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.cart-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s ease;
}
.cart-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.cart-item-row {
    display: flex;
    width: 100%;
    gap: 1.5rem;
    align-items: flex-start;
}
.cart-item-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.cart-item-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}
.cart-item-meta {
    font-size: 0.8rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.25rem;
    display: block;
}
.cart-item-price {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.cart-item-remove-btn {
    background: transparent;
    border: none;
    color: #e57373;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.2s;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}
.cart-item-remove-btn:hover {
    opacity: 1;
    transform: scale(1.15);
}
.cart-item-remove-btn i {
    width: 20px;
    height: 20px;
}

.cart-item-customization {
    border-top: 1px dashed rgba(212, 175, 55, 0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
}
.cart-item-custom-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}
.cart-item-custom-input {
    width: 100%;
    background: rgba(10, 15, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    resize: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.cart-item-custom-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.cart-footer {
    padding: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(5, 7, 10, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.cart-general-notes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cart-general-notes label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
}
.cart-general-notes textarea {
    width: 100%;
    min-height: 80px;
    background: rgba(10, 15, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    resize: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.cart-general-notes textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.cart-checkout-btn {
    width: 100%;
    padding: 1.4rem;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .cart-drawer--mini {
        top: auto;
        right: 0.75rem;
        left: 0.75rem;
        width: auto;
        max-width: none;
        bottom: 0.75rem;
        max-height: min(70vh, 520px);
        transform: translateY(12px) scale(0.98);
        transform-origin: bottom center;
    }
    .cart-drawer--mini.open {
        transform: translateY(0) scale(1);
    }
    .cart-drawer {
        width: 95%;
        height: 85vh;
        border-radius: 20px;
    }
    .cart-body {
        padding: 1.5rem;
    }
    .cart-footer {
        padding: 1.5rem;
    }
    .cart-item {
        padding: 1rem;
        flex-direction: column;
    }
    .cart-item-row {
        flex-direction: row;
        gap: 1rem;
    }
    .cart-item-img {
        width: 75px;
        height: 75px;
    }
    .cart-item-details h4 {
        font-size: 1.05rem;
    }
}

/* --- Page Loader --- */
.page-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #0F172A 0%, #020617 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    filter: blur(15px);
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.loader-circle-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-circle {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: loader-spin 1.8s cubic-bezier(0.53, 0.21, 0.29, 0.67) infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.loader-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.3));
    animation: loader-pulse 2s ease-in-out infinite;
}

.loader-bar-bg {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    position: absolute;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-light-gold));
    border-radius: 10px;
    animation: loader-slide 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--primary-light-gold);
    text-transform: uppercase;
    animation: loader-fade-text 1.5s ease-in-out infinite alternate;
}

@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loader-pulse {
    0%, 100% { transform: scale(0.95); opacity: 0.85; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5)); }
}

@keyframes loader-slide {
    0% { left: -40%; }
    100% { left: 100%; }
}

@keyframes loader-fade-text {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* --- Skeleton Loader --- */
.col-card-skeleton {
    position: relative;
    overflow: hidden;
    background: var(--bg-card) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none; /* Disable click and hover interactions while loading */
}

@keyframes skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.col-card-skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03) 20%,
        rgba(212, 175, 55, 0.08) 60%, /* Subtle gold hint matching --primary-gold */
        transparent
    );
    transform: translateX(-100%);
    animation: skeleton-shimmer 1.6s infinite ease-in-out;
}

.col-card-skeleton .skeleton-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.01);
}

.col-card-skeleton .skeleton-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(10, 15, 20, 0.8) 0%, transparent 100%);
    box-sizing: border-box;
}

.col-card-skeleton .skeleton-title {
    width: 60%;
    height: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.col-card-skeleton .skeleton-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Very subtle gold border */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .col-card-skeleton {
        height: 350px !important;
    }
    .col-card-skeleton .skeleton-overlay {
        padding: 1.5rem;
    }
    .col-card-skeleton .skeleton-arrow {
        width: 40px;
        height: 40px;
    }
    .col-card-skeleton .skeleton-title {
        height: 1.4rem;
    }
}

/* --- Contact Us Grid & Cards --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 0.5rem;
}

.contact-card {
    background: rgba(30, 38, 50, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(30, 38, 50, 0.75);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-card .contact-icon i {
    width: 24px;
    height: 24px;
}

.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-card p, .contact-card address {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-style: normal;
}

.contact-card a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.contact-card a:hover {
    opacity: 0.8;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

