/* Luxury Dark Theme - Nazlah Premium */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Mode (Default) */
    --primary-color: #c9a55c; /* Luxury gold */
    --secondary-color: #a58a49; /* Deeper gold for accents */
    --dark-bg: #121212;
    --medium-bg: #1f1f1f;
    --light-bg: #2a2a2a;
    --text-color: #e6e6e6;
    --text-muted: #9e9e9e;
    --gold-gradient: linear-gradient(135deg, #c9a55c 0%, #e2c989 50%, #c9a55c 100%);
    --gold-accent: #c9a55c;
    --box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    --border-color: #333;
    --input-bg: #2a2a2a;
    --input-border: #444;
    --button-hover: #bb9648;
}

/* Light Mode Theme */
body.light-mode {
    --primary-color: #c9a55c; /* Keep gold accent */
    --secondary-color: #a58a49; /* Keep deeper gold */
    --dark-bg: #fff;
    --medium-bg: #f5f5f5;
    --light-bg: #eaeaea;
    --text-color: #333;
    --text-muted: #777;
    --gold-gradient: linear-gradient(135deg, #c9a55c 0%, #e2c989 50%, #c9a55c 100%);
    --gold-accent: #c9a55c;
    --box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    --border-color: #ddd;
    --input-bg: #fff;
    --input-border: #ccc;
    --button-hover: #bb9648;
}

body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    letter-spacing: 0.3px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

h1 {
    font-size: 28px;
    text-transform: uppercase;
}

h2 {
    font-size: 24px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin-top: 10px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 15px;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #e2c989;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s ease;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    margin: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.primary-btn {
    background: var(--gold-gradient);
    color: #000;
    border: none;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
}

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

.logo {
    height: auto;
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
}

.nazlah-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nazlah-logo span {
    font-family: 'Playfair Display', serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    line-height: 1;
}

.nazlah-logo span:first-child {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 2px;
}

.logo-luxury {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: 60px; /* Make room for the menu toggle */
}

.header-icons a {
    color: var(--primary-color);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.header-icons a:hover {
    transform: scale(1.2);
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .nazlah-logo span:first-child {
        font-size: 24px;
    }
    
    .logo-luxury {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nazlah-logo span:first-child {
        font-size: 22px;
    }
    
    .logo-luxury {
        font-size: 12px;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    header {
        padding: 12px 15px;
        position: relative;
    }
    
    .logo-container {
        flex: 0 0 auto;
        margin-right: auto;
        z-index: 99;
    }
    
    .logo {
        max-width: 130px;
        max-height: 65px;
    }
    
    .header-icons {
        flex: 0 0 auto;
        position: absolute;
        right: 80px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 99;
    }
    
    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
    }
    
    /* Ensure dark mode toggle doesn't overlap with other elements */
    .dark-mode-toggle-mobile {
        bottom: 20px;
        right: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px;
    }
    
    .logo {
        max-width: 100px;
        max-height: 50px;
    }
    
    .header-icons {
        right: 60px;
        gap: 10px;
    }
    
    .header-icons a {
        font-size: 18px;
    }
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

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

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    padding: 5px;
    z-index: 1001;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 12px 15px;
        position: relative;
    }
    
    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002; /* Higher than dark mode toggle */
    }
    
    .header-icons {
        margin-right: 60px; /* Make room for the menu toggle */
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-bg);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        z-index: 99;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
    }
    
    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 98;
    }
    
    .menu-overlay.active {
        display: block;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px;
    }
    
    .header-icons a {
        font-size: 18px;
    }
}

/* Welcome Banner */
.welcome-banner {
    background-image: url('images/banner.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    background-color: #000; /* Fallback color */
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.welcome-text, .action-buttons {
    position: relative;
    z-index: 2;
}

.welcome-text h1 {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.welcome-text h1 span {
    font-weight: 700;
    color: var(--primary-color);
}

.welcome-text p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 20px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 15px;
}

/* Mobile specific banner styles */
@media (max-width: 768px) {
    .welcome-banner {
        padding: 60px 15px;
        background-position: center center;
    }
    
    .welcome-text h1 {
        font-size: 24px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    
    .welcome-text p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .action-buttons {
        margin-top: 20px;
    }
    
    .action-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 140px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .welcome-banner {
        padding: 50px 10px;
    }
    
    .welcome-text h1 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        margin: 5px 0;
        width: 80%;
    }
}

/* Section Styling */
.section {
    padding: 60px 20px;
    margin-bottom: 30px;
    position: relative;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.5rem;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 10px auto 0;
}

.product-section {
    margin-bottom: 40px;
}

/* Styling voor View Collection knop op de homepage */
.view-collection-btn {
    background: var(--gold-gradient);
    color: #000;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
    border: none;
}

.view-collection-btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}

/* Gift Categories */
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.category-item {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--medium-bg);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.category-item:hover {
    transform: translateY(-10px);
}

.category-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: all 0.8s ease;
}

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

.category-item h3 {
    padding: 15px;
    font-size: 18px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Collections */
.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.collection-item {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--medium-bg);
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.collection-item:hover {
    transform: translateY(-10px);
}

.collection-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.8s ease;
}

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

.collection-item h3 {
    padding: 15px 10px;
    font-size: 18px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-more {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.view-more:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

/* Product Slider */
.product-slider {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.product-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.product-card {
    flex: 0 0 auto;
    width: 80%;
    margin-right: 20px;
    border-radius: 0;
    box-shadow: var(--box-shadow);
    background-color: var(--medium-bg);
    padding: 20px;
    text-align: center;
    scroll-snap-align: start;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.product-card:last-child {
    margin-right: 0;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: all 0.8s ease;
}

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

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
}

.add-to-cart {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    color: var(--text-color);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.payment-methods, .footer-links, .newsletter {
    margin-bottom: 40px;
}

.payment-methods h3, .footer-links h3, .newsletter h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.payment-icons img {
    height: 30px;
    padding: 5px;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    transform: translateY(-3px);
}

.footer-menu ul {
    list-style: none;
}

.footer-menu ul li {
    margin-bottom: 12px;
}

.footer-menu ul li a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-menu ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
    position: relative;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
    color: var(--text-color);
    width: 70%;
    border-radius: 0;
}

.newsletter-form button {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 38px;
    }
    
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-card {
        width: 45%;
    }
    
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .payment-methods, .footer-links, .newsletter {
        width: 48%;
    }
}

@media (min-width: 992px) {
    .collection-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .product-card {
        width: 30%;
    }
    
    .payment-methods, .footer-links, .newsletter {
        width: 32%;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--medium-bg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    background-color: rgba(201, 165, 92, 0.05);
}

.faq-question span {
    flex: 1;
    margin-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
    padding: 0 20px;
    opacity: 0;
}

.faq-answer.active {
    height: auto;
    padding: 0 20px 20px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Mobile-specific FAQ styles */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .faq-answer.active {
        padding: 0 15px 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Product Badge */
.product-card {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

/* Luxe gratis verzending voortgangsbalk */
.free-shipping-progress-container {
    padding: 15px 10px;
    background-color: var(--medium-bg);
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.free-shipping-progress-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.7;
}

.free-shipping-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.free-shipping-info i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.free-shipping-text {
    font-size: 14px;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.free-shipping-amount {
    color: var(--primary-color);
    font-weight: 700;
}

.free-shipping-progress-bar {
    height: 8px;
    background-color: var(--light-bg);
    border-radius: 10px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.free-shipping-progress {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
    position: relative;
    box-shadow: 0 1px 5px rgba(201, 165, 92, 0.5);
}

.free-shipping-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.5);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(0) rotate(30deg);
        opacity: 0.5;
    }
    100% {
        transform: translateX(-60px) rotate(30deg);
        opacity: 0;
    }
}

.free-shipping-endpoints {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-muted);
    margin-top: 3px;
}

.free-shipping-complete {
    background-color: rgba(201, 165, 92, 0.1);
    border: 1px solid rgba(201, 165, 92, 0.3);
}

.free-shipping-complete .free-shipping-text {
    font-weight: 500;
}

.free-shipping-complete .free-shipping-text strong {
    font-size: 110%;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    text-transform: uppercase;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--darker-bg);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: bottom 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.cart-notification i {
    color: var(--primary-color);
}

.cart-notification.show {
    bottom: 20px;
    opacity: 1;
}

/* Success Message */
.success-message {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-top: 15px;
    transition: opacity 0.5s ease;
}

.success-message i {
    font-size: 20px;
}

.success-message.fade-out {
    opacity: 0;
}

/* Form error state */
.newsletter-form input.error {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

/* Luxe verzendingshint op de checkout pagina */
.luxury-shipping-hint {
    background: linear-gradient(to right, rgba(201, 165, 92, 0.1), rgba(201, 165, 92, 0.2));
    border-left: 3px solid var(--primary-color);
    padding: 12px 15px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: shimmer-bg 2s infinite;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.luxury-shipping-hint i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

@keyframes shimmer-bg {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

/* Animation for added to cart */
.product-card.added-to-cart {
    animation: pulse 0.7s ease;
}

/* Coming Soon Overlay Styling */
.collection-image-container {
    position: relative;
    overflow: hidden;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.coming-soon-label {
    background: linear-gradient(135deg, #c9a55c 0%, #e9d5a0 50%, #c9a55c 100%);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    transform: rotate(-5deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: shine 2s infinite;
    margin-bottom: 10px;
}

.coming-soon-text {
    color: #fff;
    font-size: 12px;
    margin-top: 5px;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

@keyframes shine {
    0% {
        background-position: -100px;
    }
    40% {
        background-position: 200px;
    }
    100% {
        background-position: 200px;
    }
}

/* Order Success Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-color);
    margin: 5% auto;
    padding: 0;
    border: 1px solid var(--border-color);
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s;
    border-radius: 8px;
    overflow: hidden;
}

.modal-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #c9a55c 0%, #e9d5a0 50%, #c9a55c 100%);
    color: #000;
    position: relative;
    text-align: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.modal-body {
    padding: 30px;
    color: var(--text-color);
    text-align: center;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.modal-body h3 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 15px;
}

.modal-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.order-next-steps {
    margin: 25px 0;
    background-color: var(--dark-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.order-next-steps h4 {
    margin-top: 0;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.order-next-steps ol {
    margin-left: 20px;
    padding-left: 0;
}

.order-next-steps li {
    margin-bottom: 10px;
    font-size: 15px;
}

.order-next-steps i {
    color: var(--primary-color);
    margin-left: 5px;
}

.modal-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Collection image container */
.collection-image-container {
    overflow: hidden;
    position: relative;
}

.collection-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.3));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-item:hover .collection-image-container::after {
    opacity: 1;
}

/* Premium Announcement Bar */
.announcement-bar {
    background: var(--gold-gradient);
    color: #000;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.announcement-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 500%; /* 5 slides × 100% */
}

.announcement-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
    flex: 0 0 20%; /* Each slide takes 20% of the slider's width */
    font-weight: 500;
    letter-spacing: 0.5px;
}

.announcement-slide i {
    margin-right: 10px;
    font-size: 16px;
}

.announcement-slide span {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive adjustments for announcement bar */
@media (max-width: 768px) {
    .announcement-slide {
        padding: 0 15px;
    }
    
    .announcement-slide i {
        font-size: 14px;
    }
    
    .announcement-slide span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .announcement-slide {
        padding: 0 10px;
    }
    
    .announcement-slide i {
        font-size: 12px;
        margin-right: 6px;
    }
    
    .announcement-slide span {
        font-size: 11px;
    }
}

/* Dark Mode Toggle - Desktop */
.dark-mode-toggle-desktop {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #121212;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Dark Mode Toggle - Mobile (hidden by default) */
.dark-mode-toggle-mobile {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #121212;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dark-mode-toggle-desktop:hover,
.dark-mode-toggle-mobile:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .dark-mode-toggle-desktop {
        display: none;
    }
    
    .dark-mode-toggle-mobile {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
    }
    
    header {
        padding: 12px 15px;
        margin-top: 0;
    }
}

/* Collections Page Styles */
.collections-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    overflow: hidden;
}

.collections-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.collections-hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.collections-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0.15;
    z-index: 2;
}

.collections-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
}

.collections-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.collections-hero p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced mobile responsiveness for collections hero */
@media (max-width: 768px) {
    .collections-hero {
        height: 250px;
        background-position: center center;
    }
    
    .collections-hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .collections-hero p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .collections-hero {
        height: 200px;
    }
    
    .collections-hero h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .collections-hero p {
        font-size: 0.9rem;
    }
}

.collections-filter {
    background-color: var(--medium-bg);
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.filter-group select, 
.filter-group input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.filter-group select:focus, 
.filter-group input[type="text"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(201, 165, 92, 0.2);
}

.price-range {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-range input[type="range"] {
    flex: 1;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-color);
    border-radius: 5px;
    outline: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--dark-bg);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.price-range span {
    min-width: 80px;
    color: var(--text-color);
}

.active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.active-filters span {
    color: var(--text-muted);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    background: var(--light-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag i {
    font-size: 0.8rem;
}

.filter-tag:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

.clear-filters {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.collection-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.collection-summary h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.collection-summary p {
    color: var(--text-muted);
    margin: 0;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.collection-product {
    background: var(--medium-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.collection-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.collection-product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.collection-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-product:hover .collection-product-image img {
    transform: scale(1.05);
}

.collection-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.collection-product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.collection-product-wishlist:hover {
    background: var(--primary-color);
    color: #000;
}

.collection-product-details {
    padding: 20px;
}

.collection-product-details h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: var(--text-color);
}

.collection-product-details .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 0 15px;
}

.collection-product-details .rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.collection-product-details .stars {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-right: 10px;
}

.collection-product-details .review-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.collection-product-details .add-to-cart {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collection-product-details .add-to-cart:hover {
    background: var(--button-hover);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination-number, .pagination-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--medium-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-number.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.pagination-number:hover, .pagination-arrow:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.pagination-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.collection-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    padding: 40px 20px;
    background: var(--medium-bg);
    border-radius: 8px;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    color: var(--text-color);
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.feature p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.recently-viewed {
    margin: 60px 0;
}

.recently-viewed h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.recently-viewed-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--medium-bg);
}

.recently-viewed-slider::-webkit-scrollbar {
    height: 8px;
}

.recently-viewed-slider::-webkit-scrollbar-track {
    background: var(--medium-bg);
    border-radius: 10px;
}

.recently-viewed-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.recently-viewed-product {
    min-width: 180px;
    background: var(--medium-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.recently-viewed-product-image {
    height: 150px;
    overflow: hidden;
}

.recently-viewed-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recently-viewed-product-details {
    padding: 15px;
}

.recently-viewed-product-details h3 {
    font-size: 0.9rem;
    margin: 0 0 5px;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recently-viewed-product-details .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .collections-hero {
        height: 250px;
    }
    
    .collections-hero h1 {
        font-size: 2rem;
    }
    
    .collections-hero p {
        font-size: 1rem;
    }
    
    .collection-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .collection-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .collection-product-image {
        height: 180px;
    }
    
    .collection-product-details {
        padding: 15px;
    }
    
    .collection-product-details h3 {
        font-size: 1rem;
    }
    
    .collection-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mini Cart Styles */
.mini-cart {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 320px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    overflow: hidden;
    max-height: 80vh;
}

.mini-cart.active {
    display: block;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart-header h3 {
margin: 0;
font-family: 'Playfair Display', serif;
font-size: 18px;
font-weight: 600;
color: var(--primary-color);
}

.mini-cart-close {
background: none;
border: none;
cursor: pointer;
color: var(--text-muted);
font-size: 16px;
transition: all 0.2s ease;
}

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

.mini-cart-items {
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.mini-cart-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.mini-cart-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mini-cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border: 1px solid var(--border-color);
}

.mini-cart-item-details {
    flex: 1;
}

.mini-cart-item-details h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.mini-cart-item-details p {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

.mini-cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.2s ease;
}

.mini-cart-item-remove:hover {
    color: #ff4136;
}

.mini-cart-footer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    background: var(--medium-bg);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-color);
}

.mini-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mini-cart-buttons .btn {
    padding: 10px;
    font-size: 13px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for mini cart */
@media (max-width: 768px) {
    .mini-cart {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        max-height: 85vh;
        border-bottom: none;
        border-left: none;
        border-right: none;
        border-radius: 15px 15px 0 0;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.25);
        z-index: 9999;
        display: none;
        transform: none;
        transition: transform 0.3s ease;
    }
    
    .mini-cart.active {
        display: block;
        transform: translateY(0);
        animation: none;
    }
    
    .mini-cart-header {
        padding: 15px 20px;
    }
    
    .mini-cart-header::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 4px;
        background-color: var(--border-color);
        border-radius: 2px;
    }
    
    .mini-cart-items {
        max-height: calc(85vh - 150px);
    }
    
    .mini-cart-item-remove {
        top: 50%;
        transform: translateY(-50%);
        right: 5px;
        padding: 8px;
        font-size: 14px;
    }
    
    .mini-cart-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mini-cart-header h3 {
        font-size: 16px;
    }
    
    .mini-cart-item-details h4 {
        font-size: 13px;
    }
    
    .mini-cart-item-details p {
        font-size: 11px;
    }
    
    .mini-cart-subtotal {
        font-size: 14px;
    }
    
    .mini-cart-buttons .btn {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .empty-cart-message {
        font-size: 14px;
        padding: 15px 10px;
    }
}

/* Simple Cart Styles */
.simple-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 9999;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.simple-cart.active {
    display: flex;
}

.simple-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.simple-cart-header h3 {
    font-size: 18px;
    margin: 0;
    color: var(--text-color);
}

.simple-cart-header button {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 20px;
    cursor: pointer;
}

.simple-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.simple-cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.simple-cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.simple-cart-item h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 500;
}

.simple-cart-item p {
    margin: 0 0 10px 0;
    color: var(--gold-color);
    font-size: 14px;
}

.simple-cart-item .remove-item {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-cart-item .remove-item:hover {
    background-color: rgba(189, 165, 93, 0.2);
}

.simple-cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.simple-cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.checkout-btn {
    display: block;
    background: var(--gold-gradient);
    color: black;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 15px;
    border-radius: 3px;
}

#continueShoppingBtn {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 15px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

#continueShoppingBtn:hover {
    background-color: rgba(189, 165, 93, 0.2);
}

/* Cart count style */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold-gradient);
    color: black;
    font-size: 12px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Position fixes */
.cart-icon {
    position: relative;
}

@media (min-width: 768px) {
    .simple-cart {
        width: 400px;
        height: 100vh;
        right: 0;
        top: 0;
    }
}

/* About Us Section Styles */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border-radius: 5px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.about-content {
    flex: 1;
    padding: 20px;
    background-color: var(--medium-bg);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.about-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.trust-badge i {
    font-size: 28px;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

.trust-badge h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.trust-badge p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
    }
    
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-image img {
        height: 300px;
    }
    
    .about-content {
        padding: 15px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .about-image img {
        height: 250px;
    }
    
    .about-content {
        padding: 10px;
    }
    
    .trust-badge {
        padding: 15px;
    }
    
    .trust-badge i {
        font-size: 24px;
    }
    
    .trust-badge h4 {
        font-size: 16px;
    }
    
    .trust-badge p {
        font-size: 13px;
    }
}

/* Testimonials Section */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: var(--medium-bg);
    padding: 25px;
    border-left: 3px solid var(--primary-color);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.testimonial-content:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 60px;
    position: absolute;
    left: -10px;
    top: -20px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(201, 165, 92, 0.2);
    padding-top: 15px;
    margin-top: 10px;
}

.testimonial-author img, 
.testimonial-author div[style*="border-radius: 50%"] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: var(--gold-gradient);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 16px;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Testimonial Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .testimonial {
        padding: 20px;
    }
    
    .testimonial-content:before {
        font-size: 40px;
        left: -5px;
        top: -15px;
    }
}
