/* --- Global Reset and Typography --- */
:root {
    --primary-color: #e4269f; /* Deep Black/Navy for text/primary elements */
    --secondary-color: #e0229d; /* Primary accent (Deep Blue) */
    --accent-color: #e53935; /* Secondary accent (Red/Discount) */
    --light-bg: #f5f5f5;
    --dark-bg: #212121;
    --text-light: #f5f5f5;
    --max-width: 1280px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --border-radius: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5em;
    font-weight: 700;
}

p {
    margin-bottom: 1em;
}

.section-padding {
    padding: var(--spacing-lg) 20px;
    margin: 0 auto;
    max-width: var(--max-width);
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 0.25em;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: var(--spacing-lg);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #3947a6;
    transform: translateY(-2px);
}

/* --- Header & Navigation Styles (Shared) --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--spacing-md);
    border-bottom: 1px solid var(--light-bg);
    max-width: var(--max-width);
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.main-nav ul {
    list-style: none;
    display: none; /* Hidden by default on mobile */
    margin-left: var(--spacing-lg);
}

.main-nav li {
    display: inline-block;
    margin-right: 25px;
}

.main-nav a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 5px 0;
    position: relative;
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}
.main-nav a.active::after { width: 100%; }
.main-nav a:not(.active)::after { width: 0; }


.utility-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.utility-nav i {
    font-size: 1.1em;
    color: var(--primary-color);
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 0.7em;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.nav-icon {
    border: none;
    background: none;
    font-size: 1.5em;
    cursor: pointer;
    display: block;
    color: var(--primary-color);
}

/* --- Sidebar (Categories Panel) --- */
.categories-panel {
    position: fixed;
    top: 0;
    right: -300px; /* Hidden off-screen */
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    padding: var(--spacing-md);
    overflow-y: auto;
}

.categories-panel.open {
    right: 0;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-bg);
    margin-bottom: 15px;
}

.panel-header h2 {
    font-size: 1.5em;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    line-height: 1;
}

.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid #eee;
}

.category-list a {
    display: block;
    padding: 12px 0;
    font-size: 1em;
    font-weight: 500;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow-icon {
    font-size: 0.7em;
    color: #999;
}

/* --- Features Bar (Quick Info) --- */
.features-bar {
    background-color: var(--light-bg);
    padding: 20px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}

.feature-item {
    text-align: center;
    flex: 1 1 200px; /* Allows wrapping on smaller screens */
    padding: 10px;
}

.feature-item i {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9em;
    font-weight: 600;
    margin: 0;
}

/* --- Footer --- */
.detailed-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: var(--spacing-lg) 20px 20px;
    font-size: 0.9em;
}

.footer-grid-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li,
.footer-column ul li a {
    color: #bbb;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.footer-column ul li a:hover {
    color: var(--text-light);
}

.footer-column i {
    margin-right: 8px;
    font-size: 0.8em;
    color: var(--secondary-color);
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.2em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form input {
    padding: 10px 15px;
    flex-grow: 1;
    border: none;
    background-color: #333;
    color: var(--text-light);
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background-color: var(--secondary-color);
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #3947a6;
}

.download-app h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.download-app img {
    /* Corrected selector for the download app images */
    height: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    color: #999;
}

/* ================================================= */
/* --- HOME PAGE SPECIFIC STYLES (Modern & Creative) --- */
/* ================================================= */

/* --- 1. HERO SLIDER --- */
.hero-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 550px; /* Fixed height for the slider */
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: #333; /* Fallback color */
}

.slide.active-slide {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: var(--text-light);
    padding: 20px;
    /* Semi-transparent overlay for text readability */
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
}

.slide-subtitle {
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #e2e8f0;
}

.slide-title {
    font-size: 4em;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1em;
}

.hero-cta-button:hover {
    background-color: #c0392b;
    color: var(--text-light);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot.active-dot {
    background-color: var(--text-light);
    transform: scale(1.2);
}


/* --- 2. CATEGORY SPOTLIGHT --- */
.category-spotlight {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.category-card {
    position: relative;
    min-height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    z-index: 1;
}

.category-info {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    color: var(--text-light);
    z-index: 2;
}

.category-info h3 {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.category-info p {
    margin: 0 0 10px 0;
    font-size: 0.9em;
}

.shop-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8em;
    color: #e2e8f0;
}


/* --- 3. FEATURE DEEP DIVE --- */
.feature-deep-dive {
    background-color: var(--light-bg);
    padding: var(--spacing-lg) 20px;
}

.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.deep-dive-item {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.deep-dive-item i {
    font-size: 3em;
    margin-bottom: 15px;
}

.deep-dive-item h3 {
    font-size: 1.5em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deep-dive-item p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
}

.icon-green { color: #27ae60; }
.icon-blue { color: var(--secondary-color); }
.icon-gold { color: #f39c12; }

/* --- 4. PREMIUM COLLECTION BANNER (Updated CTA Banner) --- */
.premium-collection-banner {
    /* * IMPORTANT: Replace 'path/to/your/image_e9b44e.jpg' with your image path * */
    background-image: url('path/to/your/image_e9b44e.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0; /* Vertical padding to give the banner height */
    min-height: 400px;
    display: flex; /* Flexbox setup for centering content */
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark Overlay for Readability */
.premium-collection-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Creates a dark, semi-transparent layer */
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
}

/* Ensure inner content is positioned above the overlay and is centered */
.premium-collection-banner .section-padding {
    position: relative; 
    z-index: 2; 
    width: 100%;
    max-width: var(--max-width);
}

/* Styling for the titles */
.premium-collection-banner .section-subtitle-small {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.25em;
    color: var(--text-light); /* Light/white text color */
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.premium-collection-banner .section-title-large {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 4em; /* Large size for impact */
    color: var(--text-light); 
    margin: 0 0 30px 0;
    line-height: 1.1;
}

/* Styling for the secondary CTA button within the banner */
.premium-collection-banner .hero-cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--text-light); /* White border */
    color: var(--text-light);
    font-weight: 600;
}

.premium-collection-banner .hero-cta-button.secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color); /* Primary color text on hover */
    border-color: var(--text-light);
}
/* REMOVING OLD GENERIC .cta-banner STYLE */
/* .cta-banner {
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
    margin-top: var(--spacing-lg);
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
} 
*/
/* The .hero-cta-button.secondary style is moved and updated inside .premium-collection-banner */


/* ================================================= */
/* --- SHOP PAGE STYLES (Kept for completeness) --- */
/* ================================================= */

.shop-page-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding: 10px 0;
    border-bottom: 1px solid var(--light-bg);
}

.sort-options label {
    font-weight: 600;
    margin-right: 10px;
}

.sort-options select {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: box-shadow 0.3s;
    /* Adding Flexbox for internal layout consistency */
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    background-color: var(--light-bg);
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-info {
    padding: 15px;
    text-align: center;
    /* Allows this section to take up space, pushing the button down */
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to the bottom */
}

.product-card-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 5px;
    height: 2.4em; /* Ensure uniform height for title */
    overflow: hidden;
    line-height: 1.2;
}

.product-card-info p {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.8em;
    margin-right: 5px;
}

.discount-badge {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7em;
    font-weight: 700;
    margin-left: 5px;
    display: inline-block;
}

/* * NEW CODE FOR UNIFORM BUTTONS 
 * Enforce a consistent size and style for all 'ADD TO BAG' buttons 
 */
.card-add-to-cart-btn {
    /* 1. Resetting default style to ensure consistency */
    width: 100%; 
    
    /* 2. Applying consistent button style from the CTA button */
    display: flex; /* Use flex to center text perfectly */
    justify-content: center;
    align-items: center;
    height: 40px; /* **Fixed Height** for consistent vertical size */
    
    /* Inheriting standard CTA style for visual consistency */
    padding: 0; /* Remove default padding, use height for size */
    background-color: var(--primary-color); /* Used primary-color for the purple/pink seen in the image */
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em; 
    
    /* 💥 MUST BE ADDED: To ensure it sits correctly next to the wishlist button */
    flex-grow: 1; 
}

.card-add-to-cart-btn:hover {
    background-color: #d83d73; /* Slightly darker pink/purple on hover */
    transform: translateY(-1px);
}

/* --- NEW STYLES FOR WISHLIST INTEGRATION --- */

/* Container for the two buttons */
.product-card-info .card-actions {
    display: flex; /* Aligns buttons side-by-side */
    gap: 10px;      /* Space between the two buttons */
    width: 100%;
    margin-top: 10px; /* Space above the button bar */
}

/* Style for the new Wishlist button (Heart Icon) */
.card-wishlist-btn {
    /* Base style, using light background and primary/secondary color for the heart */
    background-color: #fff; 
    color: var(--primary-color); /* Heart icon color */
    
    /* Size and shape */
    height: 40px; 
    width: 40px; /* Fixed width for the square button */
    padding: 0;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    
    /* Layout and Font */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0; /* Prevents it from shrinking */
}

.card-wishlist-btn:hover {
    background-color: var(--primary-color); /* Pink/Purple background on hover */
    color: var(--text-light); /* White icon on hover */
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Style for when a product is actively in the wishlist (for JavaScript to toggle) */
.card-wishlist-btn.active {
    background-color: var(--primary-color); 
    color: var(--text-light);
    border-color: var(--primary-color);
}
/* --- END NEW WISHLIST STYLES --- */


.pagination {
    text-align: center;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.pagination a:hover:not(.active-page) {
    background-color: var(--light-bg);
}

.pagination a.active-page {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}

/* ================================================= */
/* --- CONTACT PAGE SPECIFIC STYLES (New Code) --- */
/* ================================================= */

.contact-page-main {
    /* Ensures consistent padding and spacing on the contact page */
    padding-top: var(--spacing-lg); 
    padding-bottom: var(--spacing-lg);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1em;
    margin-bottom: var(--spacing-lg);
}

/* GRID LAYOUT for Direct Contact and Self-Service */
.contact-grid {
    display: grid;
    /* Two equal columns on large screens, stack on small screens */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: var(--spacing-md);
    margin: 0 auto var(--spacing-lg) auto;
    max-width: var(--max-width); 
}

.contact-card {
    background-color: var(--light-bg); /* Use light background variable */
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    transition: transform 0.3s ease-in-out;
}

.contact-card:hover {
    transform: translateY(-3px); /* Slight lift on hover */
}

.contact-card h3 {
    color: var(--secondary-color); 
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.contact-card p {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95em;
}

/* List Styling for Self-Service Links */
.self-service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 20px;
}

.self-service-card li {
    padding: 10px 0;
}

.self-service-card a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.self-service-card a:hover {
    color: var(--secondary-color);
}

.self-service-card i.fas {
    color: var(--secondary-color);
    font-size: 1.3em;
}

.secondary-cta {
    /* Style for the 'Visit Help Center' button */
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-cta:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Styling for Direct Details List */
.details-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.details-card li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #333;
    font-size: 1em;
}

.details-card li i.fas {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-top: 4px;
}

.details-card .small-note {
    display: block;
    font-size: 0.85em;
    color: #888;
    margin-top: 5px;
}

/* Social Icons in Details Card (override footer style) */
.details-card .follow-us-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 10px;
}
.details-card .social-icons {
    justify-content: flex-start;
}
.details-card .social-icons a {
    color: var(--primary-color);
    font-size: 1.5em;
}
.details-card .social-icons a:hover {
    color: var(--secondary-color);
}

/* Message Form Container (Dedicated Area) */
.message-form-container {
    max-width: 650px;
    margin: 0 auto var(--spacing-lg) auto;
    padding: var(--spacing-lg);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.message-form-container .form-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.3s;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(224, 34, 157, 0.2);
}

.contact-form .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    font-weight: 600;
}

/* Map Styling */
.map-container {
    max-width: var(--max-width);
    margin: var(--spacing-lg) auto;
    text-align: center;
}
.map-container .section-title {
    margin-bottom: 20px;
}
/* ================================================= */
/* --- ABOUT PAGE SPECIFIC STYLES (NEW) --- */
/* ================================================= */

.about-page-main {
    padding-bottom: 0; 
}

/* --- Section 2 & 3: Story and Mission Layout --- */
.about-intro, 
.about-mission {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.intro-grid,
.mission-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column on mobile */
    gap: var(--spacing-lg);
    align-items: center;
}

.intro-image img,
.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    object-fit: cover;
    max-height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-content h2,
.mission-content h2 {
    font-size: 2.5em;
    color: var(--primary-color);
}

.small-tag {
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.intro-content ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.intro-content li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #555;
}

.intro-content li i {
    color: #27ae60; /* Green checkmark */
    margin-right: 10px;
    font-size: 1.1em;
    margin-top: 4px;
}

/* --- Section 4: Testimonials --- */
.about-testimonials {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    text-align: center;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 30px auto 0;
    background-color: white;
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}


.testimonial-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto; /* Centered on mobile */
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-content .rating i {
    color: gold;
    margin-bottom: 10px;
}

.testimonial-content .quote {
    font-style: italic;
    font-size: 1.2em;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
}

.customer-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.customer-title {
    font-weight: 400;
    font-size: 0.9em;
    color: #888;
}

.customer-avatars {
    display: flex;
    justify-content: center; /* Center on mobile */
    margin-top: 15px;
    gap: 5px;
}

.customer-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* --- Section 5: Seller Logos --- */
.seller-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 10px;
}

.seller-logos img {
    height: 45px; /* Smaller height for better fit */
    margin: 10px 15px;
    filter: grayscale(100%); /* Optional: Make them grayscale */
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}

.seller-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ================================================= */
/* --- MEDIA QUERIES (Responsiveness) --- */
/* ================================================= */

@media (min-width: 768px) {
    .main-header {
        padding: 20px var(--spacing-lg);
    }

    .main-nav ul {
        display: block; /* Show main nav on desktop */
    }

    .nav-icon {
        display: none; /* Hide mobile toggle on desktop */
    }

    /* Category Spotlight Grid (Desktop) */
    .category-grid {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 350px;
    }

    .large-card {
        grid-column: span 1;
        min-height: 100%;
    }
    
    .small-card:nth-child(2) {
        grid-column: 2 / 3;
    }

    .small-card:nth-child(3) {
        grid-column: 3 / 4;
    }
    
    .deep-dive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .slide-title {
        font-size: 5em;
    }
    
    /* Updated CTA Banner Desktop Padding */
    .premium-collection-banner {
        padding: 100px 20px;
    }
    
    /* --- ABOUT PAGE MEDIA QUERIES --- */
    /* Two-column layout on desktop */
    .intro-grid {
        grid-template-columns: 1fr 1.5fr; /* Image left, content wider right */
        text-align: left;
    }
    .mission-grid {
        grid-template-columns: 1.5fr 1fr; /* Content wider left, image right */
        text-align: left;
    }

    .testimonial-card {
        flex-direction: row;
        text-align: left;
        padding: var(--spacing-lg);
    }
    .testimonial-image {
        margin: 0 40px 0 0;
    }
    .customer-avatars {
        justify-content: flex-start;
    }
}
@media (max-width: 767px) {
    .main-header {
        padding: 10px 15px;
    }
    
    .header-left {
        gap: 15px;
    }

    .logo img {
        height: 30px;
    }

    .utility-nav {
        gap: 15px;
    }

    .feature-item {
        flex: 1 1 45%;
        margin: 10px 0;
    }
    
    .slide-title {
        font-size: 2.5em;
    }
    
    .slide-subtitle {
        font-size: 0.9em;
    }

    .hero-cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    /* Responsive Adjustments for Premium Collection Banner */
    .premium-collection-banner {
        min-height: 300px;
        padding: 60px 20px;
    }
    .premium-collection-banner .section-title-large {
        font-size: 2.5em; /* Smaller title on mobile */
    }
    .premium-collection-banner .section-subtitle-small {
        font-size: 1em; /* Smaller subtitle on mobile */
    }

    .deep-dive-item {
        text-align: left;
    }

    /* Responsive adjustments for Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-card {
        padding: 20px;
    }
    .message-form-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-bar p {
        margin-bottom: 10px;
    }
}

.premium-collection-banner {
  /* Replace with the actual path to your image */
  background-image: url('image/Foot1.jpeg');

  /* This makes the image cover the entire section without stretching */
  background-size: cover;

  /* This centers the image within the section */
  background-position: center;

  /* This prevents the image from repeating if it's too small */
  background-repeat: no-repeat;
}