/* ============================================
   IZNESS JEWELRY - MAIN STYLESHEET
   Cross-browser compatible & Mobile-first
   ============================================ */

:root {
    --gold: #C9A962;
    --gold-light: #E8D5A3;
    --gold-dark: #9A7B3C;
    --black: #0A0A0A;
    --white: #FAFAFA;
    --cream: #F5F0E8;
    --charcoal: #1A1A1A;
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s var(--transition);
    box-sizing: border-box;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 15px 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    border: 2px solid var(--gold);
    object-fit: contain;
    background: #fff;
    padding: 3px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(201, 169, 98, 0.3));
}

.logo:hover .logo-img {
    border-color: var(--gold-light);
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.6));
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 50%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.5));
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    transition: color 0.2s ease;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ── Nav Shop Dropdown ── */
.nav-links .nav-shop {
    position: relative;
}
.nav-links .nav-shop > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-shop-arrow {
    font-size: 0.45rem;
    line-height: 1;
    transition: transform 0.2s ease;
    display: inline-block;
}
.nav-links .nav-shop:hover .nav-shop-arrow {
    transform: rotate(180deg);
}
.nav-shop-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10,10,10,0.98);
    border: 1px solid rgba(201,169,98,0.25);
    border-top: 2px solid #c9a962;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 190px;
    z-index: 2000;
    animation: navDropFade 0.15s ease;
}
/* Invisible bridge fills the gap so mouse can reach dropdown */
.nav-shop-drop::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
@keyframes navDropFade {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-links .nav-shop:hover .nav-shop-drop,
.nav-links .nav-shop.open .nav-shop-drop {
    display: block;
}
.nav-shop-drop .nav-drop-label {
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    padding: 8px 18px 4px;
    display: block;
}
.nav-shop-drop li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7) !important;
    text-transform: uppercase;
    font-weight: 400;
    width: 100%;
    white-space: nowrap;
    transition: all 0.15s;
}
.nav-shop-drop li a::after { display: none !important; }
.nav-shop-drop li a:hover {
    color: #c9a962 !important;
    background: rgba(201,169,98,0.07);
    padding-left: 24px;
}
.nav-shop-drop .drop-fire a:hover   { color: #ff6b6b !important; }
.nav-shop-drop .drop-earth a:hover  { color: #6bcb77 !important; }
.nav-shop-drop .drop-air a:hover    { color: #48dbfb !important; }
.nav-shop-drop .drop-water a:hover  { color: #9b59b6 !important; }
.nav-shop-drop .drop-ir a:hover     { color: #c9a962 !important; }
.nav-shop-drop .drop-divider {
    height: 1px;
    background: rgba(201,169,98,0.12);
    margin: 6px 0;
}
/* Flyout element labels */
.nav-shop-drop .drop-has-sub { position: relative; }
.drop-element-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 18px;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    cursor: default;
    transition: all 0.15s;
    white-space: nowrap;
}
.drop-fire:hover  .drop-element-label { color: #ff6b6b; background: rgba(255,107,107,0.08); }
.drop-earth:hover .drop-element-label { color: #6bcb77; background: rgba(107,203,119,0.08); }
.drop-air:hover   .drop-element-label { color: #48dbfb; background: rgba(72,219,251,0.08); }
.drop-water:hover .drop-element-label { color: #9b59b6; background: rgba(155,89,182,0.08); }
.drop-sub-arrow { font-size: 0.85rem; flex-shrink: 0; line-height: 1; }
/* Flyout sub-drop */
.nav-sub-drop {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: rgba(12,12,12,0.99);
    border: 1px solid rgba(201,169,98,0.2);
    border-left: 2px solid rgba(201,169,98,0.4);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    min-width: 165px;
    z-index: 2001;
    animation: navDropFade 0.12s ease;
}
/* invisible bridge so mouse can travel across to sub-drop */
.nav-sub-drop::before {
    content: '';
    position: absolute;
    top: 0; left: -10px;
    width: 10px; height: 100%;
}
.drop-has-sub:hover .nav-sub-drop,
.drop-has-sub.open  .nav-sub-drop { display: block; }
.nav-sub-drop li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7) !important;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.15s;
    white-space: nowrap;
}
.nav-sub-drop li a::after { display: none !important; }
.nav-sub-drop li a:hover { padding-left: 24px; }
.drop-fire  .nav-sub-drop li a:hover { color: #ff6b6b !important; background: rgba(255,107,107,0.07); }
.drop-earth .nav-sub-drop li a:hover { color: #6bcb77 !important; background: rgba(107,203,119,0.07); }
.drop-air   .nav-sub-drop li a:hover { color: #48dbfb !important; background: rgba(72,219,251,0.07); }
.drop-water .nav-sub-drop li a:hover { color: #9b59b6 !important; background: rgba(155,89,182,0.07); }
/* Mobile: shop sub-menu in mobile menu */
.mobile-shop-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
}
.mobile-shop-sub.open { max-height: 700px; }
.mobile-shop-sub li { margin: 8px 0; }
.mobile-shop-sub a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6) !important;
}
.mobile-shop-sub a:hover { color: #c9a962 !important; }
.mobile-shop-toggle { cursor: pointer; user-select: none; }
.mobile-sub-label {
    font-size: 0.55rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    padding: 14px 0 2px;
    display: block;
    margin: 0 !important;
}
.mobile-sub-divider {
    height: 1px;
    background: rgba(201,169,98,0.15);
    margin: 10px 0 !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 30px 0;
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    transition: color 0.2s ease;
    touch-action: manipulation;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s ease-out;
    filter: brightness(0.75);
    will-change: opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.4) 0%, rgba(26, 26, 26, 0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 120px 40px 0;
}

.hero-label {
    font-size: 0.85rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    overflow: hidden;
}

.hero-title .line {
    display: block;
}

.hero-title .highlight {
    color: var(--gold);
    font-style: italic;
}

.hero-catchphrase {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 50px;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 45px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 120px 60px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 300;
    text-align: center;
}

.section-title span {
    color: var(--gold);
    font-style: italic;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 15px;
    letter-spacing: 1px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.center-btn {
    text-align: center;
    width: 100%;
}

/* Featured Section */
.featured {
    background: var(--charcoal);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1200px) {
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid-3 {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    background: rgba(201, 169, 98, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.feature-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    margin-bottom: 25px;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.5);
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Zoomable image with magnify icon on hover */
.zoomable-img {
    cursor: pointer;
    position: relative;
}

.zoomable-img::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.zoomable-img:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.zoomable-img:hover .feature-img,
.zoomable-img:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

/* Preview Gallery */
.preview-gallery {
    background: var(--black);
    display: flex;
    justify-content: center;
}

.preview-gallery .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    border: 2px solid transparent;
    background: linear-gradient(var(--charcoal), var(--charcoal)) padding-box,
                linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold-light) 100%) border-box;
    padding: 3px;
    transition: all 0.4s var(--transition);
}

.preview-item:hover {
    box-shadow: 0 0 25px rgba(201, 169, 98, 0.4);
    transform: translateY(-5px);
}

.preview-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.4s var(--transition);
    z-index: 5;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.preview-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.preview-item.large {
    grid-row: span 2;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s var(--transition);
}

.preview-item:hover img {
    transform: scale(1.15);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.preview-item:hover .preview-overlay {
    opacity: 1;
}

.preview-overlay span {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 15px 30px;
}

.center-btn {
    text-align: center;
    margin-top: 60px;
    width: 100%;
    max-width: 1200px;
}

/* ============================================
   VIDEO SHOWCASE SECTION
   ============================================ */

.video-showcase {
    padding: 120px 60px;
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.video-showcase-main {
    background: linear-gradient(var(--charcoal), var(--charcoal)) padding-box,
                linear-gradient(135deg, var(--gold) 0%, #9A7B3C 50%, #E8D5A3 100%) border-box;
    border: 3px solid transparent;
    padding: 5px;
    transition: all 0.4s var(--transition);
}

.video-showcase-main:hover {
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.4);
}

.video-frame video,
.video-frame .yt-lite,
.video-frame iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .video-frame video,
    .video-frame .yt-lite,
    .video-frame iframe {
        height: 220px;
    }
}

/* Responsive aspect-ratio wrapper (gallery / intro) */
.yt-responsive {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--black);
    overflow: hidden;
}

.yt-responsive iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* YouTube click-to-play embed */
.yt-lite {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
    overflow: hidden;
    display: block;
}

.yt-responsive .yt-lite {
    position: absolute;
    inset: 0;
}

.yt-lite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.3s ease, transform 0.4s ease;
}

.yt-lite:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    background: rgba(201, 169, 98, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #0A0A0A;
    transition: all 0.3s ease;
    pointer-events: none;
    padding-left: 5px;
}

.yt-lite:hover .yt-play-btn {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.7);
}

/* Playing state — iframe fills the container */
.yt-lite.active > img,
.yt-lite.active > .yt-play-btn {
    display: none;
}

.yt-lite iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-showcase-info {
    padding: 25px;
    background: var(--charcoal);
}

.video-showcase-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 10px;
}

.video-showcase-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.video-showcase-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-thumb {
    background: linear-gradient(var(--charcoal), var(--charcoal)) padding-box,
                linear-gradient(135deg, var(--gold) 0%, #9A7B3C 50%, #E8D5A3 100%) border-box;
    border: 2px solid transparent;
    padding: 4px;
    transition: all 0.4s var(--transition);
}

.video-thumb:hover {
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
    transform: translateY(-5px);
}

.video-frame-small video {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    background: var(--black);
}

.video-thumb span {
    display: block;
    padding: 12px;
    background: var(--charcoal);
    font-size: 0.85rem;
    color: var(--gold);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 992px) {
    .video-showcase {
        padding: 80px 30px;
    }
    
    .video-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-showcase-side {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .video-thumb {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .video-showcase-side {
        flex-direction: column;
    }
    
    .video-thumb {
        min-width: 100%;
    }
    
    .video-frame video {
        height: 250px;
    }
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 200px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 25px;
}

.cta-content h2 span {
    color: var(--gold);
    font-style: italic;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid transparent;
    background: linear-gradient(var(--charcoal), var(--charcoal)) padding-box,
                linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold-light) 100%) border-box;
    padding: 4px;
    transition: all 0.4s var(--transition);
}

.gallery-item:hover {
    box-shadow: 0 0 25px rgba(201, 169, 98, 0.4),
                inset 0 0 20px rgba(201, 169, 98, 0.1);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1);
}

/* Zoom icon overlay */
.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.4s var(--transition);
    z-index: 5;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    pointer-events: none;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================
   SHOP PAGE
   ============================================ */

/* Category Filter Styles */
.shop-categories {
    margin-bottom: 50px;
    text-align: center;
}

.category-filter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.category-buttons,
.zodiac-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-btn,
.zodiac-btn {
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid rgba(201, 169, 98, 0.4);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.category-btn:hover,
.zodiac-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Element-specific button colors */
.fire-btn:hover,
.fire-btn.active {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.earth-btn:hover,
.earth-btn.active {
    border-color: #6bcb77;
    background: rgba(107, 203, 119, 0.2);
    color: #6bcb77;
    box-shadow: 0 0 20px rgba(107, 203, 119, 0.3);
}

.air-btn:hover,
.air-btn.active {
    border-color: #48dbfb;
    background: rgba(72, 219, 251, 0.2);
    color: #48dbfb;
    box-shadow: 0 0 20px rgba(72, 219, 251, 0.3);
}

.water-btn:hover,
.water-btn.active {
    border-color: #9b59b6;
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
}

/* Zodiac sign button colors */
.fire-sign {
    border-color: rgba(255, 107, 107, 0.5);
}
.fire-sign:hover,
.fire-sign.active {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.earth-sign {
    border-color: rgba(107, 203, 119, 0.5);
}
.earth-sign:hover,
.earth-sign.active {
    border-color: #6bcb77;
    background: rgba(107, 203, 119, 0.15);
    color: #6bcb77;
}

.air-sign {
    border-color: rgba(72, 219, 251, 0.5);
}
.air-sign:hover,
.air-sign.active {
    border-color: #48dbfb;
    background: rgba(72, 219, 251, 0.15);
    color: #48dbfb;
}

.water-sign {
    border-color: rgba(155, 89, 182, 0.5);
}
.water-sign:hover,
.water-sign.active {
    border-color: #9b59b6;
    background: rgba(155, 89, 182, 0.15);
    color: #9b59b6;
}

.zodiac-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .category-btn,
    .zodiac-btn {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    .zodiac-btn {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.shop-item {
    background: var(--charcoal);
    overflow: hidden;
    transition: all 0.4s var(--transition);
    border: 2px solid transparent;
    background: linear-gradient(var(--charcoal), var(--charcoal)) padding-box,
                linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold-light) 100%) border-box;
}

.shop-item:hover {
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
    transform: translateY(-10px);
}

.shop-item-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.shop-item-image::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.4s var(--transition);
    z-index: 5;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.shop-item:hover .shop-item-image::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.shop-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

.shop-item:hover .shop-item-image img {
    transform: scale(1.15);
}

.shop-item-quick {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.shop-item:hover .shop-item-quick {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.shop-item-info {
    padding: 30px;
    text-align: center;
}

.shop-item-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.shop-item-info .price {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Single Zodiac Item Featured View */
.shop-grid.single-item-view {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center !important;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: unset;
    gap: 0;
}

.shop-grid.single-item-view .shop-item {
    flex: 0 1 600px;
    max-width: 600px;
    transform: none;
    margin: 0 auto;
    text-align: center;
}

.shop-grid.single-item-view .shop-item:hover {
    transform: translateY(-5px);
}

.shop-grid.single-item-view .shop-item-image {
    position: relative;
    aspect-ratio: 1;
    max-height: 500px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-grid.single-item-view .shop-item-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.shop-grid.single-item-view .shop-item-info {
    padding: 40px;
}

.shop-grid.single-item-view .shop-item-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.shop-grid.single-item-view .shop-item-info .price {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.shop-grid.single-item-view .item-badge {
    font-size: 0.85rem;
    padding: 8px 18px;
}

.shop-grid.single-item-view .add-to-cart-btn {
    padding: 18px 40px;
    font-size: 1rem;
}

.shop-grid.single-item-view .zodiac-description {
    margin-top: 20px;
    padding: 20px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.shop-grid.single-item-view .zodiac-dates {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.shop-grid.single-item-view .zodiac-element {
    display: block;
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

.shop-grid.single-item-view .wear-options {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.shop-grid.single-item-view .wear-options span {
    display: inline-block;
    margin: 5px 8px;
    padding: 5px 12px;
    background: rgba(201, 169, 98, 0.2);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--gold-light);
}

@media (max-width: 768px) {
    .shop-grid.single-item-view {
        display: flex !important;
        justify-content: center !important;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .shop-grid.single-item-view .shop-item {
        max-width: 100%;
        flex: 0 1 100%;
    }
    
    .shop-grid.single-item-view .shop-item-image {
        max-height: 350px;
    }
    
    .shop-grid.single-item-view .shop-item-info {
        padding: 25px;
    }
    
    .shop-grid.single-item-view .shop-item-info h3 {
        font-size: 1.5rem;
    }
    
    .shop-grid.single-item-view .shop-item-info .price {
        font-size: 1.4rem;
    }
}

/* Item Badges */
.item-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 10px;
}

.item-badge.fire {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.4);
}

.item-badge.earth {
    background: rgba(107, 203, 119, 0.2);
    color: #6bcb77;
    border: 1px solid rgba(107, 203, 119, 0.4);
}

.item-badge.air {
    background: rgba(72, 219, 251, 0.2);
    color: #48dbfb;
    border: 1px solid rgba(72, 219, 251, 0.4);
}

.item-badge.water {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.4);
}

/* Shop item hidden state for filtering */
.shop-item.filtered-out {
    display: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 30px;
}

.about-text h2 span {
    color: var(--gold);
}

.about-text p {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 30px;
}

.contact-info h2 span {
    color: var(--gold);
}

.contact-info > p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1rem;
}

.contact-details li span:first-child {
    font-size: 1.3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.form-group select {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select option {
    background: var(--charcoal);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--gold);
}

.social-icons-large {
    display: flex;
    gap: 20px;
}

.social-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   ABOUT PAGE - STORY
   ============================================ */

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story .about-image {
    position: relative;
    overflow: hidden;
}

.about-story .about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-story .about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--transition);
}

.value-card:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.value-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    margin-bottom: 25px;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
}

.value-card:hover .value-img {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(201, 169, 98, 0.5);
}

.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--gold);
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step:last-child {
    border-bottom: none;
}

.process-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.5;
    min-width: 80px;
}

.process-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--white);
}

.process-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(201, 169, 98, 0.05);
}

.faq-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--gold);
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PREVIEW GALLERY
   ============================================ */

.preview-gallery .preview-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.preview-gallery .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s var(--transition);
}

.preview-gallery .preview-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--charcoal);
    padding: 80px 60px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 70px;
    width: 70px;
    border-radius: 10px;
    border: 3px solid var(--gold);
    object-fit: contain;
    background: #fff;
    padding: 5px;
    filter: drop-shadow(0 0 15px rgba(201, 169, 98, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 25px rgba(201, 169, 98, 0.6));
    transform: scale(1.05);
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 25%,
        #fff 50%,
        var(--gold-light) 75%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    padding: 6px;
    background: linear-gradient(135deg, var(--gold) 0%, #9A7B3C 50%, #E8D5A3 100%);
    box-shadow: 0 0 40px rgba(201, 169, 98, 0.4),
                0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    cursor: zoom-in;
    display: block;
    background: var(--black);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    user-select: none;
}

.lightbox-content img.zoomed {
    transform: scale(2);
    cursor: grab;
}

.lightbox-content img.zoomed:active {
    cursor: grabbing;
}

.lightbox-magnifier {
    position: fixed;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.5),
                0 0 40px rgba(0, 0, 0, 0.5),
                inset 0 0 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    display: none;
    background-repeat: no-repeat;
    z-index: 10001;
    backdrop-filter: none;
    transform: translate(-50%, -50%);
}

.lightbox-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
}

.lightbox-nav:hover {
    color: var(--gold);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================
   ANIMATIONS
   ============================================ */

/* Animated Color Text - Gold Shimmer */
.text-shimmer {
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 25%, 
        #fff 50%, 
        var(--gold-light) 75%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Animated Color Text - Rainbow Elegance */
.text-rainbow {
    background: linear-gradient(
        90deg,
        #C9A962,
        #E8C4A0,
        #F5E6D3,
        #D4AF37,
        #CFB997,
        #C9A962
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 6s ease infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Color Text - Luxury Gradient */
.text-luxury {
    background: linear-gradient(
        270deg,
        #C9A962,
        #E8D5A3,
        #B8860B,
        #FFD700,
        #DAA520,
        #C9A962
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxuryGradient 8s ease infinite;
}

@keyframes luxuryGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}

/* Animated Color Text - Pulse Glow */
.text-glow {
    color: var(--gold);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(201, 169, 98, 0.5),
            0 0 20px rgba(201, 169, 98, 0.3),
            0 0 30px rgba(201, 169, 98, 0.2);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(201, 169, 98, 0.8),
            0 0 40px rgba(201, 169, 98, 0.6),
            0 0 60px rgba(201, 169, 98, 0.4),
            0 0 80px rgba(201, 169, 98, 0.2);
    }
}

/* Animated Color Text - Color Shift */
.text-color-shift {
    animation: colorShift 5s ease infinite;
}

@keyframes colorShift {
    0%, 100% { color: #C9A962; }
    25% { color: #E8D5A3; }
    50% { color: #FFD700; }
    75% { color: #DAA520; }
}

/* Animated Underline */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: underlineFlow 2s ease infinite;
}

@keyframes underlineFlow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* Typing Effect Helper */
.text-typing {
    overflow: hidden;
    border-right: 2px solid var(--gold);
    white-space: nowrap;
    animation: 
        typing 3.5s steps(40, end),
        blinkCaret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCaret {
    from, to { border-color: transparent; }
    50% { border-color: var(--gold); }
}

/* Section Title Animated */
.section-title .highlight,
.section-title span {
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 25%, 
        #fff 50%, 
        var(--gold-light) 75%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Hero Title Animated */
.hero-title .highlight {
    background: linear-gradient(
        270deg,
        #C9A962,
        #E8D5A3,
        #FFD700,
        #DAA520,
        #C9A962
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxuryGradient 8s ease infinite;
}

/* Nav Logo Animated */
nav .logo {
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 50%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* Footer Logo Animated */
.footer-logo {
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 25%, 
        #fff 50%, 
        var(--gold-light) 75%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* CTA Title Animated */
.cta-content h2 span {
    background: linear-gradient(
        270deg,
        #C9A962,
        #FFD700,
        #E8D5A3,
        #C9A962
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxuryGradient 6s ease infinite;
}

/* Feature Title Glow */
.feature-item h3 {
    animation: textGlow 3s ease-in-out infinite;
}

/* Shop Item Title Shimmer on Hover */
.shop-item:hover .shop-item-info h3 {
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 50%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s linear infinite;
}

/* Price Color Shift */
.shop-item .price {
    animation: colorShift 4s ease infinite;
}

/* ============================================
   MORE ANIMATED TEXT ELEMENTS
   ============================================ */

/* Hero Label - Animated Sparkle */
.hero-label {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.7) 0%,
        var(--gold) 25%,
        var(--gold-light) 50%,
        var(--gold) 75%,
        rgba(255,255,255,0.7) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease forwards, shimmer 3s linear infinite 1s;
}

/* Hero Catchphrase - Subtle Glow */
.hero-catchphrase {
    animation: fadeIn 1s ease forwards, catchphraseGlow 4s ease-in-out infinite 1s;
}

@keyframes catchphraseGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(201, 169, 98, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(201, 169, 98, 0.5), 0 0 40px rgba(201, 169, 98, 0.3);
    }
}

/* Hero Title Lines - Animated */
.hero-title .line {
    background: linear-gradient(
        90deg, 
        var(--white) 0%, 
        var(--gold-light) 25%,
        var(--white) 50%,
        var(--gold-light) 75%,
        var(--white) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: revealLine 1.2s var(--transition) forwards, shimmer 5s linear infinite 1.5s;
}

/* Section Label - Color Pulse */
.section-label {
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        var(--gold-light) 50%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* Feature Card Title - Glow Effect */
.feature-card h3 {
    color: var(--gold);
    animation: textGlow 3s ease-in-out infinite;
}

/* Feature Icons - Pulse */
.feature-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Gallery Item Title Shimmer */
.gallery-item h3,
.gallery-overlay h3 {
    background: linear-gradient(
        90deg, 
        var(--white) 0%, 
        var(--gold-light) 50%, 
        var(--white) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* CTA Full Title Animated */
.cta-content h2 {
    animation: ctaTitleGlow 3s ease-in-out infinite;
}

@keyframes ctaTitleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(201, 169, 98, 0.6), 0 0 60px rgba(201, 169, 98, 0.4);
    }
}

/* Navigation Links Hover Shimmer */
nav .nav-links a:hover {
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 50%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 1.5s linear infinite;
}

/* Button Text Shimmer */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: btnShine 3s linear infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Stats Number Animated */
.stat-number {
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 25%,
        #fff 50%,
        var(--gold-light) 75%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* Process Step Number */
.process-number {
    background: linear-gradient(
        270deg,
        var(--gold),
        var(--gold-light),
        #FFD700,
        var(--gold)
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxuryGradient 5s ease infinite;
}

/* FAQ Question Hover */
.faq-question:hover {
    background: linear-gradient(
        90deg, 
        var(--white) 0%, 
        var(--gold-light) 50%, 
        var(--white) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s linear infinite;
}

/* Contact Info Title Glow */
.contact-info h3 {
    color: var(--gold);
    animation: textGlow 4s ease-in-out infinite;
}

/* Value Card Title Shimmer */
.value-card h3 {
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 50%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Video Section Title */
.video-showcase h2 span {
    background: linear-gradient(
        270deg,
        #C9A962,
        #E8D5A3,
        #FFD700,
        #C9A962
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxuryGradient 6s ease infinite;
}

/* Cart Header Shimmer */
.cart-header h3 {
    background: linear-gradient(
        90deg, 
        var(--gold) 0%, 
        var(--gold-light) 25%,
        #fff 50%,
        var(--gold-light) 75%, 
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Scroll Indicator Text */
.scroll-indicator span {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.5),
        var(--gold-light),
        rgba(255,255,255,0.5)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-reveal {
    opacity: 0;
    transform: translateY(100%);
    animation: revealLine 1.2s var(--transition) forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes revealLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .preview-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    nav,
    nav.scrolled {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
        flex-shrink: 0;
    }

    .section {
        padding: 80px 20px;
    }

    .about-content,
    .contact-grid,
    .about-story {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-item.large {
        grid-row: span 1;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    footer {
        padding: 60px 30px 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-gallery {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-number {
        font-size: 2rem;
    }
}

/* ============================================
   SHOPPING CART STYLES
   ============================================ */

/* Cart Icon in Navigation */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-icon-svg {
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.cart-modal.active {
    visibility: visible;
    opacity: 1;
}

.cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.cart-modal-content {
    position: absolute;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 2px solid var(--gold);
}

.cart-modal.active .cart-modal-content {
    right: 0;
}

/* Cart Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.cart-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* Cart Body (scrollable wrapper for items + footer) */
.cart-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

/* Cart Items */
.cart-items {
    padding: 20px 30px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px;
}

.cart-empty-icon {
    font-size: 4rem;
    opacity: 0.5;
    margin-bottom: 20px;
}

.cart-empty p {
    color: var(--off-white);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 15px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--gold);
}

.cart-item-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin: 0 0 5px;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-quantity span {
    font-size: 1rem;
    color: var(--white);
    min-width: 30px;
    text-align: center;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.cart-item-remove:hover {
    color: #ff4444;
}

/* Cart Footer */
.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid rgba(201, 169, 98, 0.3);
    background: rgba(10, 10, 10, 0.5);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total span:first-child {
    font-size: 1.2rem;
    color: var(--off-white);
}

.cart-total-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 600;
}

#paypal-button-container {
    margin-bottom: 15px;
}

.cart-checkout-btn {
    width: 100%;
    margin-bottom: 10px;
    display: none;
}

.cart-continue {
    width: 100%;
    text-align: center;
    display: block;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10001;
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cart-notification.show {
    transform: translateX(-50%) translateY(0);
}

.notification-icon {
    font-size: 1.2rem;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    padding: 12px 25px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.4);
}

.add-to-cart-btn .cart-icon-small {
    font-size: 1.1rem;
}

/* Shop Item Enhancements */
.shop-item-info {
    padding: 20px;
    text-align: center;
}

.shop-item-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.shop-item-info .price {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.shop-item-quick {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cart Modal Responsive */
@media (max-width: 500px) {
    .cart-modal-content {
        max-width: 100%;
    }
    
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-quantity,
    .cart-item-remove {
        grid-column: 2;
        justify-self: start;
    }
    
    .cart-item-remove {
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    
    .cart-item {
        position: relative;
    }
}

/* ============================================
   ADDITIONAL MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 480px) {
    nav,
    nav.scrolled {
        padding: 12px 16px;
    }

    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .section {
        padding: 60px 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .section-label {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-content {
        padding: 100px 15px 0;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.75rem;
    }
    
    .cta-banner {
        padding: 100px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .gallery-grid {
        gap: 10px;
    }
    
    .gallery-item {
        border-width: 2px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .preview-item:hover,
    .gallery-item:hover,
    .shop-item:hover,
    .category-card:hover {
        transform: none;
    }
    
    .preview-item:active,
    .gallery-item:active,
    .shop-item:active,
    .category-card:active {
        transform: scale(0.98);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gold: #FFD700;
        --gold-light: #FFEC8B;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    nav,
    footer,
    .scroll-indicator,
    .lightbox {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ============================================
   PAGE TRANSITION OVERLAY
   ============================================ */

#page-overlay {
    position: fixed;
    inset: 0;
    background: #0A0A0A;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#page-overlay.loaded {
    opacity: 0;
}

/* ============================================
   ZODIAC SCROLL SECTION
   ============================================ */

.zodiac-scroll {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 20px 0 10px;
}

.zodiac-mini {
    min-width: 0;
    width: 100%;
    text-align: center;
    padding: 20px 15px;
    background: rgba(26,26,26,0.8);
    border: 1px solid rgba(201,169,98,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zodiac-mini:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.zodiac-mini .z-symbol { font-size: 2rem; display: block; margin-bottom: 8px; }
.zodiac-mini .z-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); display: block; margin-bottom: 6px; }
.zodiac-mini .z-dates { font-size: 0.7rem; color: rgba(255,255,255,0.5); display: block; margin-bottom: 8px; }
.zodiac-mini .z-words { font-size: 0.75rem; font-style: italic; color: rgba(255,255,255,0.7); display: block; }
.zodiac-mini.fire .z-symbol { color: #ff6b6b; }
.zodiac-mini.earth .z-symbol { color: #6bcb77; }
.zodiac-mini.air .z-symbol { color: #48dbfb; }
.zodiac-mini.water .z-symbol { color: #9b59b6; }

@media (max-width: 900px) {
    .zodiac-scroll { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .zodiac-scroll { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .zodiac-scroll { grid-template-columns: repeat(2, 1fr); }
}


/* ================================================================
   EXPERIMENTAL: AMBIENT COLOR ANIMATION
   To revert: delete everything between these two comment markers
   ================================================================ */

@keyframes iznessFade {
    0%,  100% { background-color: #2a0050; }   /* vivid purple      */
    20%        { background-color: #3d1000; }   /* vivid ember       */
    40%        { background-color: #001840; }   /* vivid midnight    */
    60%        { background-color: #003018; }   /* vivid forest      */
    80%        { background-color: #300040; }   /* vivid violet      */
}

/* Fixed full-screen animated layer — sits behind everything via JS-injected div #ambient-bg */
#ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: #2a0050;
    animation: iznessFade 20s ease-in-out infinite;
    pointer-events: none;
}

/* Make section backgrounds semi-transparent so the animated layer shows through */
.section { background: rgba(10, 10, 10, 0.45) !important; }
.section[style*="background: var(--charcoal)"],
.section[style*="background:var(--charcoal)"] { background: rgba(26, 26, 26, 0.45) !important; }
.section[style*="background: var(--black)"],
.section[style*="background:var(--black)"] { background: rgba(10, 10, 10, 0.45) !important; }
.featured { background: rgba(10, 10, 10, 0.45) !important; }
footer { background: rgba(10, 10, 10, 0.62) !important; }

/* Hero overlay: soft animated tint that breathes with the background */
.hero-overlay {
    background: transparent !important;
    animation: none !important;
}

/* ================================================================
   END EXPERIMENTAL AMBIENT ANIMATION
   ================================================================ */
