/* ================================
   JAYALAKSHMI JEWELLERY - PREMIUM CSS
   ================================ */

/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --gold: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941E;
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --silver-dark: #A0A0A0;
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --white: #ffffff;
    --cream: #FFF8F0;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--charcoal);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--cream);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 248, 240, 0.85);
}

/* === CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 3rem);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cream);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(192, 192, 192, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--cream) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
}

.scroll-text {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { height: 40px; opacity: 1; }
    50% { height: 20px; opacity: 0.3; }
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 248, 240, 0.7);
}

/* === COLLECTIONS SECTION === */
.collections {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.collection-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    /* transition: var(--transition); */
}

.collection-image {
    position: absolute;
    inset: 0;
    transition: var(--transition);
}

.collection-card[data-collection="gold"] .collection-image {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
}

.collection-card[data-collection="silver"] .collection-image {
    background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 50%, #C0C0C0 100%);
}

.collection-card[data-collection="bridal"] .collection-image {
    background: linear-gradient(135deg, #D4AF37 0%, #C0C0C0 50%, #D4AF37 100%);
}

.collection-card[data-collection="custom"] .collection-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #D4AF37 50%, #1a1a1a 100%);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    z-index: 1;
}

.collection-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.collection-card:hover .collection-shine {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    from { transform: translateX(-100%) rotate(45deg); }
    to { transform: translateX(100%) rotate(45deg); }
}

.collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.collection-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.collection-desc {
    font-size: 0.95rem;
    color: rgba(255, 248, 240, 0.8);
    margin-bottom: 1rem;
}

.collection-link {
    display: inline-block;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.collection-card:hover .collection-link {
    transform: translateX(10px);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

/* === PRODUCTS GRID === */
.featured-products {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.product-card {
    /* transition: var(--transition); */
}

.product-link {
    display: block;
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    margin-bottom: 1.2rem;
    border-radius: 4px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.special {
    background: var(--black);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.quick-view {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.product-category {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.6);
    margin-bottom: 0.7rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
}

.text-center {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* === ABOUT SECTION === */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--charcoal);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #D4AF37 0%, #C0C0C0 100%);
    border-radius: 4px;
    position: relative;
}

.image-frame {
    position: absolute;
    inset: 20px;
    border: 2px solid rgba(255, 248, 240, 0.2);
    border-radius: 4px;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--charcoal-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    /* transition: var(--transition); */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255, 248, 240, 0.9);
}

.testimonial-author {
    border-top: 1px solid rgba(255, 248, 240, 0.1);
    padding-top: 1.5rem;
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.6);
}

/* === CTA SECTION === */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 248, 240, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--black);
    padding: var(--spacing-lg) 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 248, 240, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact li {
    margin-bottom: 0.8rem;
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 248, 240, 0.1);
    color: rgba(255, 248, 240, 0.6);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links-inline {
    display: flex;
    gap: 2rem;
}

.footer-links-inline a {
    color: rgba(255, 248, 240, 0.6);
}

.footer-links-inline a:hover {
    color: var(--gold);
}

/* === ANIMATIONS === */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* === PAGE HEADER === */
.page-header {
    padding: 10rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.page-title {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.page-subtitle {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    color: rgba(255, 248, 240, 0.7);
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 8rem 0 2rem;
    background: var(--charcoal);
}

.breadcrumb a {
    color: rgba(255, 248, 240, 0.6);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: rgba(255, 248, 240, 0.4);
    margin: 0 0.5rem;
}

/* === COLLECTIONS PAGE === */
.collections-page {
    padding: 4rem 0 var(--spacing-xl);
    background: var(--charcoal);
}

.collection-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.collection-hero.reverse {
    direction: rtl;
}

.collection-hero.reverse > * {
    direction: ltr;
}

.collection-hero-content {
    max-width: 600px;
}

.collection-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.collection-hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.collection-hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 248, 240, 0.8);
}

.collection-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    color: var(--gold);
    font-weight: bold;
}

.collection-hero-image {
    aspect-ratio: 4/5;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.collection-hero-image[data-collection="gold"] {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
}

.collection-hero-image[data-collection="silver"] {
    background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 100%);
}

.collection-hero-image[data-collection="bridal"] {
    background: linear-gradient(135deg, #D4AF37 0%, #C0C0C0 50%, #D4AF37 100%);
}

.collection-hero-image[data-collection="custom"] {
    background: linear-gradient(135deg, #1a1a1a 0%, #D4AF37 50%, #1a1a1a 100%);
}

.collection-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.3) 0%, transparent 50%);
}

.collection-preview {
    padding: 4rem 0;
    background: var(--black);
}

/* === PRODUCTS PAGE === */
.products-page {
    padding: 4rem 0;
    background: var(--charcoal);
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Filters */
.filters-sidebar {
    background: var(--charcoal-light);
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}

.filters-title {
    font-size: 1.3rem;
}

.filter-reset {
    font-size: 0.85rem;
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: rgba(255, 248, 240, 0.8);
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold);
}

/* Toolbar */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.toolbar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.filter-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: var(--charcoal-light);
    color: var(--cream);
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.filter-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile Filter Overlay */
.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.filter-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.products-count {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.95rem;
}

#currentCount {
    color: var(--gold);
    font-weight: 600;
}

.sort-select {
    padding: 0.7rem 1.2rem;
    background: var(--charcoal-light);
    color: var(--cream);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.no-results p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* === PRODUCT DETAIL PAGE === */
.product-detail {
    padding: 4rem 0;
    background: var(--charcoal);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    margin-bottom: 1.5rem;
}

.main-image-wrapper {
    aspect-ratio: 1;
    border-radius: 8px;
    position: relative;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--gold);
}

.product-detail-info {
    max-width: 600px;
}

.product-detail-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
}

.rating-text {
    color: rgba(255, 248, 240, 0.6);
    font-size: 0.9rem;
}

.product-detail-price {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.product-description {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
    margin-bottom: 2rem;
}

.product-specs {
    background: var(--charcoal-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 248, 240, 0.05);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: rgba(255, 248, 240, 0.6);
}

.spec-value {
    color: var(--cream);
    font-weight: 500;
}

.product-features {
    margin-bottom: 2rem;
}

.features-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.features-list li {
    color: rgba(255, 248, 240, 0.8);
    font-size: 0.95rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-additional {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.additional-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.9rem;
}

.additional-item svg {
    color: var(--gold);
}

/* Product Tabs */
.product-tabs {
    padding: 4rem 0;
    background: var(--black);
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    color: rgba(255, 248, 240, 0.6);
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
    cursor: pointer;
}

.tab-button:hover,
.tab-button.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-panel {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-panel h3 {
    margin-bottom: 1.5rem;
}

.tab-panel p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}

.specs-table td {
    padding: 1rem;
}

.specs-table td:first-child {
    color: rgba(255, 248, 240, 0.6);
    width: 40%;
}

.care-section {
    margin-bottom: 2rem;
}

.care-section h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.care-section ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.care-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.reviews-summary {
    margin-bottom: 3rem;
}

.rating-overview {
    text-align: center;
    padding: 2rem;
    background: var(--charcoal-light);
    border-radius: 8px;
}

.rating-number {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    padding: 2rem;
    background: var(--charcoal-light);
    border-radius: 8px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author h4 {
    margin-bottom: 0.3rem;
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-date {
    color: rgba(255, 248, 240, 0.5);
    font-size: 0.85rem;
}

.review-text {
    line-height: 1.7;
}

.related-products {
    padding: 4rem 0;
    background: var(--charcoal);
}

/* === ABOUT PAGE === */
.about-story {
    padding: 4rem 0;
    background: var(--charcoal);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-values {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--charcoal-light);
    border-radius: 8px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold);
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-desc {
    color: rgba(255, 248, 240, 0.8);
    line-height: 1.7;
}

.about-team {
    padding: var(--spacing-xl) 0;
    background: var(--charcoal);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.member-image {
    aspect-ratio: 1;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-desc {
    color: rgba(255, 248, 240, 0.7);
    line-height: 1.6;
}

.about-certifications {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.cert-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--charcoal-light);
    border-radius: 8px;
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cert-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cert-desc {
    color: rgba(255, 248, 240, 0.7);
    line-height: 1.6;
}

.about-stats-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-large {
    text-align: center;
}

.stat-number-large {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.stat-label-large {
    font-size: 1.1rem;
    color: rgba(255, 248, 240, 0.7);
}

/* === CONTACT PAGE === */
.contact-section {
    padding: 4rem 0;
    background: var(--charcoal);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
}

.contact-form-wrapper {
    max-width: 600px;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-description {
    color: rgba(255, 248, 240, 0.7);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.8);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.9rem 1.2rem;
    background: var(--charcoal-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    color: var(--cream);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--charcoal-light);
    border-radius: 8px;
    border: 2px solid var(--gold);
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--charcoal-light);
    padding: 2rem;
    border-radius: 8px;
}

.info-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: rgba(255, 248, 240, 0.8);
    font-size: 0.95rem;
}

.info-content a {
    color: rgba(255, 248, 240, 0.8);
}

.info-content a:hover {
    color: var(--gold);
}

.info-note {
    font-size: 0.85rem !important;
    color: rgba(255, 248, 240, 0.6) !important;
    font-style: italic;
    margin-top: 0.5rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    color: var(--cream);
    transition: var(--transition-fast);
}

.social-link-large:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateX(5px);
}

.social-link-large svg {
    flex-shrink: 0;
}

.map-section {
    background: var(--black);
}

.map-container {
    height: 500px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    background: rgba(10, 10, 10, 0.9);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-info h3 {
    margin-bottom: 1rem;
}

.map-info p {
    margin-bottom: 2rem;
}

.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--charcoal);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--charcoal-light);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    color: var(--cream);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    line-height: 1.7;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .products-layout {
        grid-template-columns: 250px 1fr;
    }
    
    .product-detail-grid {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .filter-overlay {
        display: block;
    }
    
    .filters-sidebar {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--charcoal-light);
        padding: 2rem;
        border-radius: 0;
        overflow-y: auto;
        transform: translateX(0);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .filters-sidebar.active {
        transform: translateX(-320px);
    }
    
    .filter-toggle {
        display: flex;
    }
    
    /* Add close button for mobile */
    .filter-close-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        color: var(--cream);
        font-size: 1.2rem;
        transition: var(--transition-fast);
    }
    
    .filter-close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        color: var(--gold);
    }
    
    /* Adjust filters header for mobile */
    .filters-header {
        padding-right: 3rem;
    }
    
    /* Ensure filter options are scrollable on mobile */
    .filter-options {
        max-height: 40vh;
        overflow-y: auto;
        padding-right: 0.5rem;
    }
    
    /* Custom scrollbar for mobile filters */
    .filter-options::-webkit-scrollbar {
        width: 4px;
    }
    
    .filter-options::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    
    .filter-options::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 2px;
    }
    
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .product-images {
        position: static;
    }
    
    .collection-hero {
        grid-template-columns: 1fr;
    }
    
    .collection-hero.reverse {
        direction: ltr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .tabs-header {
        gap: 1rem;
    }
    
    .tab-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .collection-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
}
