    :root {
    --primary: #000000;
    --secondary: #ff3c00;
    --light: #f8f8f8;
    --dark: #121212;
    --gray: #e0e0e0;
    --text: #333333;
    --text-light: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 72px;
}

/* Header Styles */
.top-bar {
    background-color: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 12px;
    overflow: hidden;
    text-align: center;
}

/* Add this to your style.css for the animated arrows */

/* Style each link in the top bar */
.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    /* Provides space around each link */
    transition: color 0.3s ease;
    /* Smooth color transition on hover */
}

/* Create the arrow using the ::after pseudo-element */
.top-bar a::after {
    content: '›';
    /* This character looks like a small arrow */
    display: inline-block;
    /* Allows us to apply transforms */
    margin-left: 8px;
    /* Creates space between the text and the arrow */
    transition: transform 0.2s ease-out;
    /* Defines the animation's smoothness and duration */
}

/* Animate the arrow when the link is hovered */
.top-bar a:hover::after {
    transform: translateX(5px);
    /* Moves the arrow 5px to the right */
}

/* Optional: Slightly change link color on hover for more feedback */
.top-bar a:hover {
    color: #cccccc;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 14px;
    white-space: nowrap;
    /* Prevent text from breaking into two lines */
}

.top-bar a:hover {
    color: white;
}

/* On mobile, we transform the top bar into a vertical slider */
@media (max-width: 768px) {
    .top-bar {
        height: 40px;
        /* Give it a fixed height for the animation window */
    }

    .top-bar-content {
        /* Apply the sliding animation */
        animation: slide-up-mobile 12s ease-in-out infinite;
        /* The container itself is not a flexbox on mobile */
        display: block;
    }

    .top-bar a {
        /* Each link takes up the full space and is centered */
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .top-bar:hover .top-bar-content {
        animation-play-state: paused;
    }
}

/* Keyframes for the mobile-only animation */
@keyframes slide-up-mobile {

    0%,
    25% {
        transform: translateY(0%);
    }

    /* Show item 1 */
    33%,
    58% {
        transform: translateY(-25%);
    }

    /* Show item 2 */
    66%,
    91% {
        transform: translateY(-50%);
    }

    /* Show item 3 */
    100% {
        transform: translateY(-75%);
    }

    /* Loop back to start */
}


/* --- Store Locator Modal Styling --- */
.map-placeholder {
    background-color: #e9ecef;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-light);
}

header.nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.cart-icon {
    position: relative;
    /* This is the anchor for the count badge */
}

.header-icons {
    display: flex;
    gap: 20px;
}

.header-icons a {
    color: var(--text);
    font-size: 18px;
    transition: color 0.3s;
}

.header-icons a:hover {
    color: var(--secondary);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Add a small border for better visibility */
    border: 2px solid white;
}


.hero-slideshow .slide::before {
    content: '';
    /* Required to make the pseudo-element appear */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* This is a black color with 40% opacity */
}

/* 1. Main hero section now acts as a container */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    /* Ensure text is visible on all images */

}

/* 2. The slideshow container fills the hero section */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Sits behind the hero content */
}

/* 3. Each slide fills the container and is positioned on top of each other */
.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* All slides start invisible */
    animation: crossfade 15s infinite;
    /* Apply the 24-second animation loop */
}

/* 4. Stagger the animation for each slide */
.hero-slideshow .slide:nth-child(2) {
    animation-delay: 5s;
    /* Starts after the first slide finishes */
}

.hero-slideshow .slide:nth-child(3) {
    animation-delay: 7s;
    /* Starts after the second slide */
}

.hero-slideshow .slide:nth-child(4) {
    animation-delay: 10s;
    /* Starts after the third slide */
}


/* 6. The animation keyframes that create the cross-fade effect */
@keyframes crossfade {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    /* Fade in for the first 10% of the duration */
    25% {
        opacity: 1;
    }

    /* Hold the image visible */
    35% {
        opacity: 0;
    }

    /* Fade out */
    100% {
        opacity: 0;
    }

    /* Remain invisible for the rest of the cycle */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 5%;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.hero-content h1,
.hero-content p
{
  background: linear-gradient(270deg, #797171, #ffcc01, #fef9f9);
 font-family: 'Montserrat', sans-serif;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* fallback */
}



.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;

}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

/* This is the updated style for the "View Lookbook" button */
.btn-outline {
    background-color: #000;
    /* Set default background to black */
    color: #fff;
    /* Set default text color to white */
    border: 2px solid #000;
    /* Set a matching border */
    margin-left: 15px;
    border-color: #fff;
}

/* This defines the new hover effect */
.btn-outline:hover {
    background-color: black;
    /* Background becomes transparent on hover */
    color: #fff;
    /* Text color stays white */
    border-color: #fff;
    border-color: #e03500;
    /* Border color becomes white */
}

/* Categories */
.section-title {
    text-align: center;
    margin: 60px 0 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.category-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.category-overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* Products */
.products-container {
    background-color: white;
    padding: 60px 5%;
}

/* === REFINED PRODUCT FILTERS SECTION === */

/* The main container for the filter bar */
.product-filters {
    max-width: 1400px;
    margin: 0 auto 40px;
}

.product-filters .offcanvas-body {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    /* This groups everything to the start of the line */
    align-items: center;
    flex-wrap: wrap;
    /* Allows wrapping if the screen gets too narrow */
    gap: 2.5rem;
    /* Increased gap to create nice spacing between the filter/sort groups */
}

/* A group containing a label (e.g., "Filter by:") and its dropdowns */
.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* Space between label and dropdowns */

}

/* The "Filter by:" and "Sort by:" text labels */
.filter-group span {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- Custom Styling for all <select> Dropdowns --- */
.filter-group select {
    /* 1. Reset browser default appearance */
    -webkit-appearance: none;
    appearance: none;

    /* 2. Add our own custom arrow using an embedded SVG */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3path fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;

    /* 3. Custom styling for the box */
    border: 1px solid var(--gray);
    border-radius: 6px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    /* Extra right padding for the arrow */
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    background-color: white;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Custom focus style to match other inputs */
.filter-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
    outline: 0;
}


/* --- Responsive styles for filters inside the mobile Offcanvas --- */
@media (max-width: 991.98px) {
    .offcanvas-body {
        /* On mobile, stack the filter/sort groups vertically */
        flex-direction: column;
        align-items: flex-start !important;
    }

    .filter-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-group span {
        margin-bottom: 0.5rem;
    }

    .filter-group select {
        width: 100%;
        /* Make dropdowns full-width on mobile */
    }
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.product-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    color: var(--text);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background-color: yellow;
    color: rgb(0, 0, 0);
    transform: translateY(-3px);
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price {
    font-weight: 700;
    font-size: 18px;
}

.original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 14px;
}

.product-rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 10px;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: var(--secondary);
}

/* Newsletter */
.newsletter {
    background-color: var(--dark);
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #e03500;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 5% 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    color: white;
    text-decoration: none;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(255, 60, 0, 0.3);
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 60, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 30px;
    }
}

@media (max-width: 576px) {
    .categories {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

.action-btn.is-favorited .fa-heart {
    color: red;
    /* Changed to a pure red for better visibility */
    font-weight: 900;
    /* Ensures the icon becomes bold and solid */
}

/* Add this to your styles.css file */

.lookbook-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    /* 60% for image, 40% for details */
    height: 80vh;
    /* 80% of the viewport height */
}

.lookbook-main,
.lookbook-sidebar {
    overflow: hidden;
}

.lookbook-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lookbook-sidebar {
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.lookbook-sidebar .btn-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.lookbook-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lookbook-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: auto;
    /* Pushes thumbnails to the bottom */
}

.lookbook-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.lookbook-thumbnail:hover {
    border-color: var(--secondary);
}

.lookbook-thumbnail.active {
    border-color: var(--primary);
}

/* Responsive adjustments for the lookbook modal */
@media (max-width: 992px) {
    .lookbook-container {
        grid-template-columns: 1fr;
        /* Stack them on smaller screens */
        height: auto;
    }

    .lookbook-main {
        height: 50vh;
        /* Give the image a fixed height on mobile */
    }
}

/* --- Search Overlay Styling --- */
.search-overlay {
    display: none;
    /* Hidden by default */
    position: sticky;
    top: 75px;
    /* Adjust this value to match your header's height */
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
    /* Below the header but above other content */
    padding: 1rem 0;
}

.search-results {
    max-width: 1400px;
    margin: 1rem auto 0;
    padding: 0 5%;
    max-height: 60vh;
    /* Limit the height and allow scrolling */
    overflow-y: auto;
}

.search-result-title {
    margin: 0;
    font-weight: 600;
}

.search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
}

.search-result-price {
    margin: 0;
    color: var(--text-light);
}

.search-overlay.active {
    display: block;
    /* Show the search bar */
}

.search-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    display: flex;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    /* A light gray hover effect */
}

#searchInput {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.5rem;
    padding: 0.5rem 0;
    font-weight: 300;
}

.search-close-btn {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray);
    text-decoration: none;
    color: var(--text);
    transition: background-color 0.2s;
}

/* --- No Results Message Styling --- */
.no-results-message {
    display: none;
    /* Hidden by default */
    text-align: center;
    padding: 4rem 0;
    color: var(--text-light);
}

/* Add this to your styles.css file */

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
}

.cart-item-quantity .quantity-display {
    width: 35px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
}

.btn-quantity {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--text);
}

/* Add this to your styles.css for the login modal */
#userModal .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

#userModal .modal-footer {
    background-color: #f8f9fa;
}

/* Add this to your styles.css file */
.order-summary {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Add this to your styles.css file */

/* Chat Transcript Area */
.chat-transcript {
    height: 400px;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: #f1f1f1;
}

/* Base style for all chat messages */
.chat-message {
    display: flex;
    max-width: 80%;
}

.chat-bubble {
    padding: 0.5rem 1rem;
    border-radius: 18px;
    line-height: 1.4;
}

/* Styling for messages from Support */
.chat-message.support {
    justify-content: flex-start;
    /* Align to the left */
}

.chat-message.support .chat-bubble {
    background-color: #e9ecef;
    color: var(--text);
    border-top-left-radius: 4px;
}

/* Styling for messages from the User */
.chat-message.user {
    align-self: flex-end;
    /* Align to the right */
    justify-content: flex-end;
}

.chat-message.user .chat-bubble {
    background-color: var(--secondary);
    color: white;
    border-top-right-radius: 4px;
}

/* Chat Input Area */
.chat-input-area {
    display: flex;
    width: 100%;
    gap: 0.5rem;
}

/* Add this to your style.css file */

#proceedToCheckoutBtn:disabled {
    background-color: #6c757d;
    /* A muted gray color */
    border-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.65;
}

/* Add this entire block to the bottom of your style.css file */

/* 1. Define the animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
        /* Start 20px down */
    }

    to {
        opacity: 1;
        transform: translateY(0);
        /* End at its normal position */
    }
}

/* 2. Prepare the elements you want to animate */
/* Initially, they will be transparent and ready to be animated */
.hero-content h1,
.hero-content p,
.hero-content .btn {
    opacity: 0;
    /* Start invisible */
    animation: fadeInUp 0.8s ease-out forwards;
}

/* 3. Add a staggered delay to each element for a cascading effect */
.hero-content p {
    animation-delay: 0.2s;
}

/* The first button ("Shop Now") */
.hero-content .btn:nth-of-type(1) {
    animation-delay: 0.4s;
}

/* The second button ("View Lookbook") */
.hero-content .btn:nth-of-type(2) {
    animation-delay: 0.6s;
}

/* Add this to your styles.css file */

/* Styles for the legal information modals */
.legal-modal-content .modal-body {
    line-height: 1.7;
    color: #555;
    /* A softer black for easier reading */
}

.legal-modal-content .modal-body h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* Make footer links more obviously clickable */
.footer-bottom a {
    cursor: pointer;
    color: #e03500;
    text-decoration: underline;
    text-decoration-color: var(--secondary);
    text-decoration-thickness: 2px;
}

/* Add this to your style.css file */

/* Style BOTH the <p> and <a> tags in the contact section for consistent alignment */
.footer-contact p,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    /* Use the footer's text color */
    text-decoration: none;
    /* Remove the default link underline */
    transition: color 0.3s;
    /* Add a smooth transition for the hover effect */
}

/* Add a hover effect ONLY to the clickable <a> tags */
.footer-contact a:hover {
    color: var(--secondary);
    /* Change color on hover to your brand's secondary color */
}

/* === CORRECTED FOOTER LINKS SECTION === */

/* This is the main fix: It makes the container a vertical flexbox,
   stacking the heading on top of the list. */
.footer-links {
    display: flex;
    flex-direction: column;
}

/* Style for the 'Shop' and 'Help' headings */
.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    /* Space between heading and list */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    /* Explicitly set the color */
}

/* Style for the list of links (the <ul> element) */
.footer-links ul {
    list-style: none;
    /* Removes the default bullet points */
    padding: 0;
    /* IMPORTANT: Removes default browser indentation */
    margin: 0;
    /* Removes default browser margin */
}

/* Style for each list item */
.footer-links li {
    margin-bottom: 10px;
}

/* Style for each individual link */
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* === STYLISH CONTACT FORM MODAL === */

/* --- Overall Modal Style --- */
#contactModal .modal-content {
    border-radius: 0.75rem;
    /* Softer corners */
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    /* A more pronounced shadow */
}

#contactModal .modal-header {
    background-color: var(--light);
    /* A light background for the header */
    border-bottom: 1px solid var(--gray);
}

#contactModal .modal-header .modal-title {
    font-weight: 700;
    color: var(--primary);
}


/* --- Form Fields & Labels --- */
#contactModal .form-label {
    font-size: 0.875rem;
    /* Slightly smaller label text */
    font-weight: 600;
    color: var(--text-light);
}

#contactModal .form-control {
    background-color: #f8f9fa;
    /* Light gray background for inputs */
    border: 1px solid var(--gray);
    border-radius: 8px;
    /* Softer corners for inputs */
    padding: 12px 15px;
    font-size: 1rem;
    /* Smooth transition for the focus effect */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* --- Stylish Focus Effect --- */
#contactModal .form-control:focus {
    background-color: #fff;
    border-color: var(--secondary);
    /* Highlight with your brand color */
    /* Add a soft "glow" in your brand color */
    box-shadow: 0 0 0 0.25rem rgba(255, 60, 0, 0.15);
}


/* --- Footer & Send Button --- */
#contactModal .modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid var(--gray);
}

#contactModal .modal-footer .btn-dark {
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 12px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

#contactModal .modal-footer .btn-dark:hover {
    background-color: #343a40;
    /* A slightly lighter black */
    transform: translateY(-2px);
    /* A subtle lift on hover */
}

/* Add this to your style.css file */

/* Style for the active navigation link */
.navbar-nav .nav-link.active {
    color: var(--secondary) !important;
    font-weight: 700;
    border-bottom: 2px solid var(--secondary);
}

/* REPLACE your old .category-card and .category-overlay CSS with this */

.category-card {
    display: block;
    /* Make the <a> tag behave like a div */
    text-decoration: none;
    /* Remove link underline */
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
    /* Zoom the image on hover */
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.category-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.category-shop-now {
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Add a "→" arrow that appears on hover */
.category-shop-now::after {
    content: ' →';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.category-card:hover .category-shop-now::after {
    opacity: 1;
    transform: translateX(0);
}

/* Default navbar (transparent) */
#mainNavbar {
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* Scrolled navbar (solid background) */
#mainNavbar.scrolled {
    background-color: black !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#mainNavbar.scrolled .nav-link,
#mainNavbar.scrolled .header-icons a,
#mainNavbar.scrolled .logo
{
    color: rgb(255, 255, 255) !important;
  

}
#mainNavbar.scrolled .navbar-toggler-icon{
       filter: invert(100%);

}

 #toast {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #333;
      color: #fff;
      padding: 12px 24px;
      border-radius: 4px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      font-family: Arial, sans-serif;
      z-index: 9999;
    }



/* Full-screen shadow loader overlay */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* dark shadow effect */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinner loader */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid var(--secondary);
    /* Your theme color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animated-heading h1 {
    font-size: 3rem;
    color: linear-gradient(270deg, #ffffff, #ff6a00, #111111) !important;
    text-align: center;
}

/* Gradient animation */
@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
