body { background-color: #f1ebe0; color: #2A4339; overflow-x: hidden; }

.glass-header {
    background-color: #f1ebe0 !important;
    box-shadow: none !important;
    border-bottom: 1.5px solid rgba(191, 164, 110, 0.4);
    transition: all 0.4s ease-in-out;
    will-change: padding;
}

.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

.product-card {
    isolation: isolate;
    border-radius: 2.5rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.product-card-img { transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.product-card:hover .product-card-img { transform: scale(1.08); }

.color-pill-gold { background-color: #bfa46e; color: white; transition: all 0.3s; }
.color-pill-gold:hover { background-color: #a68d5a; }

.color-pill-sage { background-color: #8aa69b; color: white; transition: all 0.3s; }
.color-pill-sage:hover { background-color: #6d8578; }

.color-pill-terra { background-color: #c98d73; color: white; transition: all 0.3s; }
.color-pill-terra:hover { background-color: #b07760; }

/* Filter Checks */
.filter-checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #bfa46e;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}
.filter-checkbox:checked { background-color: #bfa46e; }
.filter-checkbox:checked::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -50%);
}

/* Hero & Spotlight */
.hero-container { display: flex; transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; height: 100%; }
.hero-slide { flex: 0 0 100%; width: 100%; height: 100%; position: relative; }
.hero-dot { width: 12px; height: 4px; background: rgba(255, 255, 255, 0.4); border-radius: 99px; transition: all 0.4s ease; cursor: pointer; }
.hero-dot.active { width: 40px; background: #ffffff; }

.spotlight-container { display: flex; flex-wrap: nowrap; width: 100%; transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.spotlight-slide { flex: 0 0 100%; width: 100%; opacity: 1; visibility: visible; position: relative; background-color: #f1ebe0 !important; flex-shrink: 0; }
.spotlight-card { background-color: #ffffff; border-radius: 3rem; overflow: hidden; display: flex; flex-direction: column; width: 100%; box-shadow: none !important; }

@media (min-width: 1024px) {
    .spotlight-card { flex-direction: row; align-items: stretch; }
}

/* Animations */
@keyframes silkSweep {
    0% { transform: translateX(-100%) skewX(-30deg); opacity: 0; }
    50% { opacity: 0.15; }
    100% { transform: translateX(200%) skewX(-30deg); opacity: 0; }
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.silk-bg { background: linear-gradient(135deg, #1a2e26 0%, #23332a 50%, #1a2e26 100%); position: relative; overflow: hidden; }
.silk-sweep-effect::before {
    content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191,164,110,0.1), transparent);
    animation: silkSweep 8s infinite ease-in-out; pointer-events: none;
}

.collection-circle {
    width: 140px; height: 140px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.4);
    overflow: hidden; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center;
    animation: floatSlow 6s infinite ease-in-out;
}
.collection-circle img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.collection-circle:hover img { transform: scale(1.15); }
.collection-circle:hover { border-color: rgba(191, 164, 110, 1); transform: scale(1.1) translateY(-10px); }

/* Scrollbars */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Text Gradients */
.shimmer-text {
    background: linear-gradient(90deg, #bfa46e, #ffffff, #bfa46e);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 3s linear infinite;
}

/* Product Detail Specifics */
.gallery-main { border-radius: 2.5rem; overflow: hidden; background: white; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.thumb-active { border: 2px solid #bfa46e; }
.spec-badge { background: white; border: 1px solid rgba(26, 43, 35, 0.05); border-radius: 1rem; padding: 1.5rem; text-align: center; transition: all 0.3s ease; }
.spec-badge:hover { transform: translateY(-5px); border-color: #bfa46e; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* Contact Page Specifics */
.map-dark-theme {
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(85%);
    -webkit-filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(85%);
}

/* About Page Specifics */
.timeline-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(191,164,110,0.5), transparent);
    transform: translateX(-50%);
}
.about-glass-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}
.bg-factory-img {
    background-image: url('assets/img/herobanner-2.png');
    background-size: cover;
    background-position: center;
}
