/* Root Variables - Srilakshanya Theme Colors */
:root {
    --primary-color: #0F3A2F;
    --primary-dark: #0F3A2F;
    --primary-light: #0F3A2F;
    --gold-color: #78620A;
    --gold-light: #78620A;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

logo-img {
    width: 10px;   /* smaller */
    height: 10px; 
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left:15px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-color);
    display: flex;
    align-items: center;
    gap: 8px;  /* smaller gap */
}

.logo img {
    width: 60px;   /* adjust size */
    height: 60px;  /* adjust size */
    object-fit: contain;
}

.logo-icon {
    font-size: 32px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn .material-icons {
    font-size: 28px;
    color: var(--primary-color);
}

/* Navigation */
.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--gold-color);
    font-weight: 400;
    position: relative;
    padding: 5px 0;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 24px;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: var(--gold-color);
}

/* Mobile Drawer Navigation */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
}

.mobile-drawer.active {
    pointer-events: all;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
}

.drawer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
}

.drawer-close .material-icons {
    font-size: 28px;
}

.drawer-nav {
    flex: 1;
    padding: 10px 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.drawer-link:hover,
.drawer-link.active {
    background: rgba(125, 31, 31, 0.05);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.drawer-link .material-icons {
    font-size: 24px;
    color: var(--primary-color);
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
    background: var(--bg-light);
}

.drawer-footer p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 31, 31, 0.8) 0%, rgba(90, 21, 21, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--gold-color);
    color: var(--white);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-color);
    margin: 15px auto 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(125, 31, 31, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;

    pointer-events: none; /* ⬅️ IMPORTANT */
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: auto; /* ⬅️ ENABLE clicks on hover */
}


.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000;
    color: var(--white);
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge.sale {
    background: #000;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Shop Layout with Sidebar */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.shop-sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.filter-header h3 {
    font-size: 18px;
    color: var(--text-dark);
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.filter-option input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-option label {
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.product-count {
    color: var(--text-light);
    font-size: 14px;
}

.sort-dropdown {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

/* Category Grid - Explore Srilakshanya */
.explore-section {
    background: var(--primary-color);
    padding: 80px 0;
}

.explore-section .section-title {
    color: #FFE5B4;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.explore-section .section-title::after {
    background: var(--gold-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    position: relative;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4c0 100%);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-arch {
    position: relative;
    padding: 30px 20px 20px;
    text-align: center;
}

.category-arch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
    border-radius: 50% 50% 0 0;
}

.category-image-wrapper {
    position: relative;
    width: 200px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50% 50% 0 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-info {
    background: var(--white);
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.category-ornament {
    width: 60px;
    height: 20px;
    margin: 10px auto 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 20"><path d="M30 0 L35 10 L30 20 L25 10 Z M15 5 L20 10 L15 15 L10 10 Z M45 5 L50 10 L45 15 L40 10 Z" fill="%23d4af37"/></svg>') center no-repeat;
    background-size: contain;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--gold-color);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--gold-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .shop-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hide desktop navigation */
    .desktop-nav {
        display: none;
    }
    
    /* Header adjustments */
    .logo {
        font-size: 22px;
    }
    
    .logo-icon {
        font-size: 26px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .icon-btn .material-icons {
        font-size: 22px;
    }
    
    /* Hero section */
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    /* Product grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    /* Category grid */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-image-wrapper {
        width: 150px;
        height: 200px;
    }
    
    /* Section spacing */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* Explore section */
    .explore-section .section-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    /* Single column for very small screens */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .hero {
        height: 350px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Catalog Page */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.catalog-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: block;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.catalog-image {
    height: 300px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.1);
}

.catalog-info {
    padding: 25px;
}

.catalog-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.catalog-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.catalog-link {
    color: var(--gold-color);
    font-weight: 500;
}

/* About Page */
.about-content {
    max-width: 1000px;
    margin: 40px auto;
}

.about-text {
    margin-bottom: 50px;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.about-text p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.about-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form,
.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h3,
.contact-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .material-icons {
    font-size: 32px;
    color: var(--gold-color);
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Shop Filters */
.shop-filters {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Filter Group */
.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Label Text */
.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Dropdown */
.filter-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--white);
    border: 1px solid #ddd;
    padding: 10px 40px 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%230F3A2F' d='M7 10l5 5l5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    transition: all 0.25s ease;
}

/* Hover & Focus */
.filter-group select:hover {
    border-color: var(--primary-color);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 2px rgba(212,166,74,0.25);
}

/* Option Styling */
.filter-group option {
    font-size: 14px;
    color: var(--text-dark);
}

/* ============================= */
/* MOBILE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {
    .shop-filters {
        justify-content: flex-start;
        gap: 15px;
    }

    .filter-group {
        width: 100%;
        justify-content: flex-start;
    }

    .filter-group select {
        width: 60%;
    }
}

/* ============================= */
/* CONTACT FORM STYLING */
/* ============================= */

.contact-form h3,
.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Form Field Wrapper */
.form-field {
    margin-bottom: 22px;
    position: relative;
}

/* Labels */
.form-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Inputs & Textarea */
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: var(--white);
    color: var(--primary-color);
    transition: all 0.25s ease;
    font-family: 'Roboto', sans-serif;
}

/* Placeholder */
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #aaa;
}

/* Focus State */
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 2px rgba(212,166,74,0.25);
}

/* Icon Fields */
.form-field-icon input {
    padding-left: 44px;
}

.form-icon {
    position: absolute;
    left: 14px;
    top: 38px;
    font-size: 16px;
    color: var(--primary-color);
    opacity: 0.7;
}

/* Submit Button */
.contact-form .btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================= */
/* CONTACT INFO BOX */
/* ============================= */

.contact-info {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-item .material-icons {
    font-size: 30px;
    color: var(--gold-color);
}

.contact-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================= */
/* MOBILE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {
    .contact-form,
    .contact-info {
        padding: 25px;
    }

    .contact-item {
        gap: 14px;
    }

    .contact-item .material-icons {
        font-size: 26px;
    }
}

/* ============================= */
/* CONTACT PAGE – MOBILE ORDER FIX */
/* ============================= */
@media (max-width: 768px) {
    .contact-layout {
        display: flex;
        flex-direction: column;
    }

    .contact-form {
        order: 1;
    }

    .contact-info {
        order: 2;
        margin-top: 30px;
    }
}

/* Range Slider Styling */
.form-field input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
    outline: none;
    padding: 0;
}

.form-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
    transition: all var(--transition-normal);
}

.form-field input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--gold-shine);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.7);
}

.form-field input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

/* Form Group Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    font-family: 'Playfair Display', serif;
}

/* Shop Filters Styling */
.shop-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--surface);
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-1);
}

.shop-filters .form-field {
    margin-bottom: 0;
}

.shop-filters .form-field label {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.shop-filters .form-field select {
    background: var(--background);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--text-primary);
    font-weight: 500;
}

.shop-filters .form-field select:hover {
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.shop-filters .form-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    background: var(--surface-elevated);
}

/* Responsive Form Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-field {
        margin-bottom: 24px;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .form-field select {
        background-position: right 14px center;
        padding-right: 45px;
    }
    
    .shop-filters {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
}

/* Alert Messages - Luxurious */
.alert {
    padding: 18px 20px;
    border-radius: 0;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    line-height: 1.6;
    border: 2px solid;
}

.alert-error {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border-color: #ff6b6b;
    border-left-width: 4px;
}

.alert-success {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    border-color: var(--gold);
    border-left-width: 4px;
}

.alert-info {
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold-light);
    border-color: rgba(212, 175, 55, 0.3);
    border-left-width: 4px;
}

/* Payment Page */
.payment-section {
    padding: 60px 0;
}

.payment-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.payment-methods {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-method {
    padding: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method:hover, .payment-method.active {
    border-color: var(--gold);
    background: var(--light-gold);
}

.payment-method input[type="radio"] {
    margin-right: 10px;
}

.order-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

/* Footer - Luxurious Black & Gold */
.footer {
    background: var(--black);
    color: var(--text-primary);
    padding: 64px 0 24px;
    margin-top: 80px;
    border-top: 3px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 20px;
    background: #f1f1f1;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.footer-section h4 {
    color: var(--gold-light);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(6px);
}

.footer-section i {
    margin-right: 10px;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Cart & Checkout Styles */
.cart-section, .checkout-section {
    padding: 80px 0;
    background: var(--background);
}

.cart-table {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    margin-bottom: 24px;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background: var(--primary);
    color: var(--text-on-primary);
    padding: 16px;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table td {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: middle;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-summary {
    background: var(--surface);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-2);
    max-width: 400px;
    margin-left: auto;
}

.cart-summary h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 15px;
}

.summary-row.total {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: none;
    margin-top: 8px;
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(98, 0, 234, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 200px;
    height: 200px;
}

/* Catalog Grid Styling */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.catalog-item {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    transition: all var(--transition-normal);
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.catalog-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold-strong);
    border-color: var(--gold);
    text-decoration: none;
    color: inherit;
}

.catalog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.05);
}

.catalog-info {
    padding: 24px;
}

.catalog-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
}

.catalog-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.catalog-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Grid (for new-arrivals.php and other pages) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.product-grid .product-card {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.product-grid .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold-strong);
    border-color: var(--gold);
}

.product-grid .product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-grid .product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-grid .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--text-on-gold);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 2;
}

.product-grid .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-grid .product-card:hover .product-overlay {
    opacity: 1;
}

.product-grid .btn-white {
    background: white;
    color: var(--black);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    border-radius: 4px;
}

.product-grid .btn-white:hover {
    background: var(--gold);
    color: var(--text-on-gold);
    transform: translateY(-2px);
}

.product-grid .product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-grid .product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
}

.product-grid .product-category {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-grid .product-price {
    font-size: 20px;
    color: var(--gold);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h2 {
        font-size: 42px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .product-image {
        height: 300px;
    }
    
    .catalog-image {
        height: 200px;
    }
    
    .product-grid .product-image {
        height: 250px;
    }
    
    .catalog-info {
        padding: 20px;
    }
    
    .product-grid .product-info {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .header-top {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 12px 0;
    }
    
    .logo {
        justify-content: flex-start;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 4px;
        order: 2;
    }
    
    .main-nav a {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .header-actions {
        justify-content: flex-end;
        order: 1;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .catalog-image {
        height: 180px;
    }
    
    .product-grid .product-image {
        height: 200px;
    }
    
    .catalog-info h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .catalog-info p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .catalog-link {
        font-size: 12px;
    }
    
    .product-grid .product-name {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .product-grid .product-category {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .product-grid .product-price {
        font-size: 16px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 18px;
    }
    
    .product-name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .product-price {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .product-description {
        font-size: 13px;
        margin-bottom: 16px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .category-card {
        padding: 28px 20px;
    }
    
    .category-icon {
        font-size: 44px;
        margin-bottom: 16px;
    }
    
    .category-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .category-card p {
        font-size: 13px;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .payment-container {
        grid-template-columns: 1fr;
    }
    
    .cart-table {
        overflow-x: auto;
    }
    
    .cart-summary {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .tagline {
        font-size: 9px;
        letter-spacing: 2px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
        letter-spacing: 4px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .auth-container {
        padding: 32px 24px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .catalog-info {
        padding: 16px;
    }
    
    .product-grid .product-info {
        padding: 14px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .category-card {
        padding: 24px 16px;
    }
    
    .category-icon {
        font-size: 40px;
    }
    
    .product-info {
        padding: 16px;
    }
    
    .product-name {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .product-price {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .product-description {
        font-size: 12px;
        margin-bottom: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .btn-add-cart {
        padding: 10px;
        font-size: 11px;
    }
}

/* Hero Slider Wrapper */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slides container */
.hero-slides-container {
    display: flex;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    width: 100%;
    min-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    max-height: 80svh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================= */
/* HERO SLIDER – MOBILE FIX (300px+) */
/* ============================= */
@media (min-width: 300px) {

    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    .hero-slider {
        position: relative;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: hidden;
    }

    .hero-slides-container {
        display: flex;
        width: 100vw;
        max-width: 100vw;
        transform: translateX(0);
    }

    .hero-slide {
        flex: 0 0 100vw;     /* 🔥 KEY FIX */
        width: 100vw;
        min-width: 100vw;

        aspect-ratio: 16 / 9;
        min-height: 180px;
        max-height: 80svh;

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
    .hero-slide {
        height: calc(100vw * 3 / 4); /* 4:3 ratio for small screens */
    }
}






.hero-slide.active {
    /* Active state handled by transform - no additional styles needed */
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0,0,0,0.7) 0%,
        rgba(212,175,55,0.1) 50%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 24px;
    text-shadow: 
        0 0 20px rgba(212,175,55,0.5),
        2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--primary);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-gold);
    color: var(--text-on-gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
    background: var(--gold-light);
    color: var(--black);
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.hero-nav:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* Responsive Hero Slider */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .hero-nav {
        width: 50px;
        height: 50px;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}



/* ============================= */
/* PRODUCT DETAIL PAGE - MATCHING INDEX THEME */
/* ============================= */

.product-detail-section {
    padding: 60px 0;
    background: var(--white);
    min-height: 100vh;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover .main-image {
    transform: scale(1.05);
}

.image-zoom-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-zoom-overlay {
    opacity: 1;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border-color: var(--gold-color);
    transform: scale(1.05);
}

/* Product Details */
.product-details {
    padding: 20px 0;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--gold-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
}

.product-details h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-price {
    font-size: 32px;
    font-weight: 600;
    color: var(--gold-color);
    margin-bottom: 25px;
}

.product-meta {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.product-meta p {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-meta i {
    color: var(--gold-color);
}

.viewing-count {
    color: #16a34a;
}

.stock-info {
    color: var(--text-dark);
}

/* Product Options */
.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 25px;
}

.option-label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.color-option:hover,
.color-option.selected {
    border-color: var(--gold-color);
    background: var(--bg-light);
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.color-name {
    font-size: 12px;
    font-weight: 500;
}

.variation-price {
    font-size: 11px;
    color: var(--gold-color);
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-option {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    font-size: 14px;
}

.variation-option:hover,
.variation-option.selected {
    border-color: var(--gold-color);
    background: var(--bg-light);
    color: var(--gold-color);
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    font-weight: 500;
}

.size-option:hover,
.size-option.selected {
    border-color: var(--gold-color);
    background: var(--gold-color);
    color: var(--white);
}

/* Quantity Selector */
.quantity-selector {
    margin-bottom: 30px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 10px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-color);
    background: var(--white);
    color: var(--gold-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--gold-color);
    color: var(--white);
}

.qty-btn:first-child {
    border-radius: 6px 0 0 6px;
}

.qty-btn:last-child {
    border-radius: 0 6px 6px 0;
}

#quantity {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--gold-color);
    border-left: none;
    border-right: none;
    background: var(--white);
    font-weight: 500;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-add-cart {
    flex: 1;
    padding: 15px 30px;
    background: var(--gold-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold-color);
    background: var(--white);
    color: var(--gold-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wishlist:hover {
    background: var(--gold-color);
    color: var(--white);
}

/* Product Tabs */
.product-tabs {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.tab-headers {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.tab-header {
    padding: 12px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-header.active,
.tab-header:hover {
    color: var(--gold-color);
    border-bottom-color: var(--gold-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-content li i {
    color: var(--gold-color);
}

.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.shipping-option i {
    font-size: 24px;
    color: var(--gold-color);
}

/* Product Variations Section */
.product-variations-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.product-variations-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.variations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.variation-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.variation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.variation-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.variation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.variation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.variation-card:hover .variation-overlay {
    opacity: 1;
}

.btn-view-variation {
    padding: 10px 20px;
    background: var(--gold-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.variation-info {
    padding: 15px;
}

.variation-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.variation-info .variation-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-color);
    margin-bottom: 5px;
}

.price-diff {
    font-size: 12px;
    color: var(--text-light);
}

.variation-stock {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Related Products */
.related-products-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-products-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.related-product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-product-card:hover .related-product-overlay {
    opacity: 1;
}

.btn-view-product {
    padding: 10px 20px;
    background: var(--gold-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-product-info {
    padding: 15px;
}

.related-product-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.related-product-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-color);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::before {
    width: 300px;
    height: 300px;
}

/* Mobile Responsiveness for Product Detail */
@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-details h1 {
        font-size: 28px;
    }
    
    .product-price {
        font-size: 24px;
    }
    
    .thumbnail-images {
        justify-content: center;
    }
    
    .color-options,
    .variation-options,
    .size-options {
        justify-content: center;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-wishlist {
        width: 100%;
        height: 50px;
    }
    
    .tab-headers {
        flex-wrap: wrap;
    }
    
    .variations-grid,
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-detail-section {
        padding: 30px 0;
    }
    
    .product-details h1 {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .quantity-controls {
        justify-content: center;
    }
}
/* Addit
ional JavaScript functionality for product detail page *//* ======
======================= */
/* PRODUCTS PAGE - MATCHING INDEX THEME */
/* ============================= */

.products-section {
    padding: 60px 0;
    background: var(--white);
    min-height: 100vh;
}

.products-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-color);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-details {
    padding: 12px 24px;
    background: var(--gold-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
}

/* No Products State */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: 40px;
}

.no-products i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-products h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-products p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
}

.btn-back-products {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gold-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back-products:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Filter and Sort Section (for future enhancement) */
.products-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-weight: 500;
    color: var(--text-dark);
}

.filter-select {
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold-color);
}

/* Breadcrumb for Products Page */
.products-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-light);
}

.products-breadcrumb a {
    color: var(--gold-color);
    text-decoration: none;
}

.products-breadcrumb a:hover {
    text-decoration: underline;
}

.products-breadcrumb span {
    margin: 0 8px;
}

/* Mobile Responsiveness for Products Page */
@media (max-width: 768px) {
    .products-section {
        padding: 40px 0;
    }
    
    .products-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .products-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .no-products {
        padding: 40px 15px;
    }
    
    .no-products i {
        font-size: 48px;
    }
    
    .no-products h3 {
        font-size: 20px;
    }
}/* Pro
duct category styling */
.product-category {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced filter styling for shop page */
.products-filters {
    display: flex !important; /* Override the display: none from products page */
}

/* Ensure consistent spacing */
.products-section .products-filters {
    margin-bottom: 40px;
}/* ====
========================= */
/* CATALOG PAGE - MATCHING INDEX THEME */
/* ============================= */

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.catalog-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.catalog-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.catalog-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.05);
}

.catalog-info {
    padding: 25px;
}

.catalog-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.catalog-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
}

.catalog-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.catalog-item:hover .catalog-link {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* No categories state */
.no-categories {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: 40px;
}

.no-categories i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-categories h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-categories p {
    color: var(--text-light);
    font-size: 16px;
}

/* Mobile responsiveness for catalog */
@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .catalog-info {
        padding: 20px;
    }
    
    .catalog-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .catalog-info {
        padding: 15px;
    }
    
    .catalog-info h3 {
        font-size: 18px;
    }
    
    .no-categories {
        padding: 40px 15px;
    }
    
    .no-categories i {
        font-size: 48px;
    }
    
    .no-categories h3 {
        font-size: 20px;
    }
}/
* ============================= */
/* ABOUT PAGE - MATCHING INDEX THEME */
/* ============================= */

.about-section {
    padding: 60px 0;
    background: var(--white);
    min-height: 100vh;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold-color);
    margin: 30px 0 15px 0;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-text li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.about-text li::before {
    content: '✓';
    color: var(--gold-color);
    font-weight: bold;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================= */
/* CONTACT PAGE - MATCHING INDEX THEME */
/* ============================= */

.contact-section {
    padding: 60px 0;
    background: var(--white);
    min-height: 100vh;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.form-field {
    margin-bottom: 25px;
    position: relative;
}

.form-field label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold-color);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field-icon {
    position: relative;
}

.form-field-icon input {
    padding-left: 45px;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
}

.contact-info {
    padding: 20px 0;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-item .material-icons {
    color: var(--gold-color);
    font-size: 24px;
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Button styling for forms */
.btn.btn-primary {
    background: var(--gold-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Badge styling for new arrivals */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Mobile responsiveness for about and contact pages */
@media (max-width: 768px) {
    .about-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-card h3 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form h3,
    .contact-info h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .about-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 22px;
    }
    
    .about-text h3 {
        font-size: 18px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-card h3 {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .contact-item {
        padding: 15px;
    }
}/
* ============================= */
/* CART PAGE - MATCHING INDEX THEME */
/* ============================= */

.cart-section {
    padding: 60px 0;
    background: var(--white);
    min-height: 100vh;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: 40px;
}

.empty-cart h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-dark);
    margin: 20px 0 10px 0;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.cart-items {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--gold-color);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--gold-color);
    border-radius: 6px;
    overflow: hidden;
}

.cart-item-quantity button {
    width: 35px;
    height: 35px;
    border: none;
    background: var(--gold-color);
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart-item-quantity button:hover {
    background: var(--primary-color);
}

.cart-item-quantity input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: none;
    background: var(--white);
    font-weight: 500;
}

.cart-item-total {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #ff4444;
    color: var(--white);
}

.cart-summary {
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    height: fit-content;
    box-shadow: var(--shadow);
}

.cart-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid var(--gold-color);
    margin-top: 15px;
    padding-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-block {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
    display: block;
    padding: 15px;
}

.btn.btn-white {
    background: var(--white);
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.btn.btn-white:hover {
    background: var(--gold-color);
    color: var(--white);
}

/* Mobile responsiveness for cart */
@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .cart-item-quantity,
    .cart-item-total,
    .cart-item-remove {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 10px;
    }
    
    .cart-item-quantity {
        justify-self: center;
    }
    
    .cart-item-total {
        justify-self: end;
        font-size: 16px;
    }
    
    .cart-items,
    .cart-summary {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cart-section {
        padding: 40px 0;
    }
    
    .empty-cart {
        padding: 60px 15px;
    }
    
    .empty-cart h2 {
        font-size: 24px;
    }
    
    .cart-item img {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-details h3 {
        font-size: 16px;
    }
    
    .cart-summary h3 {
        font-size: 20px;
    }
}/* Hide c
olor-related elements in product detail page */
.color-options,
.color-option,
.color-swatch,
.color-name,
.product-variations-section {
    display: none !important;
}

/* Ensure variation options work properly without colors */
.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-option {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    font-size: 14px;
}

.variation-option:hover,
.variation-option.selected {
    border-color: var(--gold-color);
    background: var(--bg-light);
    color: var(--gold-color);
}

.variation-option .variation-price {
    font-size: 11px;
    color: var(--gold-color);
    display: block;
    margin-top: 2px;
}