 :root {
    /* Main Colors */
    --color-primary: #E60000;
    --color-secondary: #000000;
    --color-supporting: #FFFFFF;
    
    /* RGB values for transparent overlays */
    --color-primary-rgb: 230, 0, 0;
    --color-secondary-rgb: 0, 0, 0;
    --color-supporting-rgb: 255, 255, 255;

    /* Accent Colors */
    --color-accent-light: #F2F2F2;
    --color-accent-dark: #808080;
    
}
 
 body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-secondary);utility-buttons-container
    line-height: 1.6;
    background-color: var(--color-supporting);
 
}
 
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* --- Top Bar (Red Strip) --- */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-supporting);
    text-align: center;
    padding: 0.2px 0;
    font-size: 0.8rem;
    position: relative;
        overflow: hidden; /* Hide content when height shrinks/transforms */
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;    


}
 body.scrolled .top-bar {
    /* Option A: Slide it up and off screen */
    transform: translateY(-100%); 
    opacity: 0;
    /* You may need to set height to 0 if transform causes layout issues */
    /* height: 0; */ 
}

/* ----------------------------- */
/* --- HERO SECTION STYLES --- */
/* ----------------------------- */
.hero-section {
     background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    position: relative;
    text-align: center;
}

 

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color-secondary-rgb), 0.5); /* Black overlay */
}

.hero-content {
    color: var(--color-supporting);
    z-index: 1;
    max-width: 500px;
    padding-left: 0; /* Ensures centering works */
    text-align: center;
}

.hero-content .subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding: 5px 15px;
    border: 1px solid rgba(var(--color-supporting-rgb), 0.5);
    display: inline-block;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 10px 0 30px 0;
    line-height: 1.1;
   }

.shop-button {
    background-color: var(--color-primary);
    color: var(--color-supporting);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.shop-button:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}



 /* ------------------------------------------- */
/* --- Mobile Layout (Max Width: 768px) --- */
/* ------------------------------------------- */
@media (max-width: 768px) {
    
 
 
/* 2. Reduce Text Sizes */
.hero-content {
    /* Content width remains at 90% */
    max-width: 80%; 
 }

.hero-content .subtitle {
    /* Further reduced font size for subtitle */
    font-size: 0.7rem;    
    padding: 2px 8px; /* Reduced vertical padding */
    margin-bottom: 3px; /* Reduced margin */
}

.hero-content h1 {
    /* Significantly reduced font size for main heading (as requested) */
    font-size: 1.4rem;    
    margin: 3px 0 15px 0; /* Reduced margins */
}
.shop-button {
        /* *** REDUCED SIZE FOR SHOP BUTTON *** */
        /* Original: padding: 8px 18px; font-size: 0.85rem; */
        padding: 6px 15px; /* Reduced padding (makes button smaller) */
        font-size: 0.55rem; /* Reduced font size (makes text smaller) */
    }
    
}



/* --- NEW SLIDER CONTAINER STYLES --- */
.hero-slider-container {
    /* Ensures relative positioning for navigation dots */
    position: relative;
    overflow: hidden; /* Crucial: Hides slides that are off-screen */
    width: 100%;
}

.hero-slider {
    /* Set all slides horizontally */
    display: flex;
    /* Disable all wrapping */
    flex-wrap: nowrap;
    /* Transition for the sliding movement */
    transition: transform 0.8s ease-in-out;
    /* Start at 0 */
    transform: translateX(0);
}

/* --- INDIVIDUAL SLIDE STYLES (Use existing .hero-section content styles) --- */
.hero-section.slide {
    /* Essential: Each slide must be 100% of the parent container width */
    flex: 0 0 100%;
    /* Restore the height and background properties */
    height: 70vh; /* Restore original height */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    /* Ensure the overlay is inside the slide */
    overflow: hidden;
}


 /* ----------------------------- */
/* --- SLIDER DOTS STYLES --- */
/* ----------------------------- */
.slider-dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%); 
    z-index: 2; /* Above the hero content */
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.slider-dot.active {
    background-color: var(--color-primary); /* Red color for active dot */
    transform: scale(1.8);
}

@media (max-width: 768px) {
 
    /* 1. Reduce Slider Height */
    .hero-section.slide {
        /* Align with the previous .hero-section height for mobile */
        /* Previous value was 35vh for a very compact look */
        height: 35vh; 
        
    }

    /* 2. Adjust Slider Dots Position */
    .slider-dots-container {
        /* Move the dots closer to the bottom edge of the slide */
        bottom: 10px; /* Reduced from 20px */
            gap: 7px;

    }

    /* 3. Reduce Dot Size (Optional, but aligns with overall reduction) */
    .slider-dot {
        width: 8px; /* Reduced from 10px */
        height: 8px; /* Reduced from 10px */
    }
    
    /* 4. Ensure the content inside the slide also uses the smaller mobile font sizes */
    /* Note: These styles rely on your previous CSS for .hero-content, .subtitle, h1, and .shop-button 
       being applied correctly within the .hero-section.slide (since it has the same classes). 
       The styles below are a reminder/repetition of what should already be applied to the content: */
    
    .hero-content .subtitle {
        font-size: 0.7rem; 
    }
    .hero-content h1 {
        font-size: 1.1rem; 
        margin-top: 10px;
    }
    .shop-button {
        padding: 5px 13px;
        font-size: 0.52rem;
    }
    
}
/* -------------------------------------- */
/* --- NEW: SLIDER ARROW STYLES --- */
/* -------------------------------------- */
.slider-arrow {
    position: absolute;
    top: 50%;
    /* Pull up to truly center the icon vertically */
    transform: translateY(-50%);
    z-index: 3; /* Ensure arrows are above the content (z-index 1) and dots (z-index 2) */
    
    /* Styling */
    background: rgba(var(--color-secondary-rgb), 0.3); /* Semi-transparent black */
    color: var(--color-supporting); /* White icon */
    border: none;
    padding: 15px 10px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.slider-arrow:hover {
    background-color: var(--color-primary); /* Red hover effect */
}

/* Positioning the arrows */
.slider-arrow.prev {
    left: 0;
    /* Round corners only on the outer edge */
    border-top-right-radius: 0px;
    border-bottom-right-radius: 00px;
}

.slider-arrow.next {
    right: 0;
    /* Round corners only on the outer edge */
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

/* --- Mobile Adjustments for Arrows --- */
@media (max-width: 768px) {
    .slider-arrow {
        /* Make arrows smaller on mobile */
        padding: 8px 5px;
        font-size: 1rem;
    }
}




/* --- NEW SLIDER CONTAINER STYLES --- */
.hero-slider-container {
    /* Ensures relative positioning for navigation dots */
    position: relative;
    overflow: hidden; /* Crucial: Hides slides that are off-screen */
    width: 100%;
    
}

.hero-slider {
    /* Set all slides horizontally */
    display: flex;
    /* Disable all wrapping */
    flex-wrap: nowrap;
    /* Transition for the sliding movement */
    transition: transform 0.8s ease-in-out;
    /* Start at 0 */
    transform: translateX(0);
}

/* --- INDIVIDUAL SLIDE STYLES (Use existing .hero-section content styles) --- */
.hero-section.slide {
    /* Essential: Each slide must be 100% of the parent container width */
    flex: 0 0 100%;
    /* Restore the height and background properties */
    height: 70vh; /* Restore original height */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    /* Ensure the overlay is inside the slide */
    overflow: hidden;
}
 

/* ------------------------------------------- */
/* --- Mobile Layout (Max Width: 768px) --- */
/* ------------------------------------------- */
@media (max-width: 768px) {
    /* ... (Previous mobile styles for navigation, header, etc. go here) ... */

    /* -------------------------------------- */
    /* --- SLIDER-SPECIFIC MOBILE FIXES --- */
    /* -------------------------------------- */

    /* 1. Reduce Slider Height */
    .hero-section.slide {
        /* Align with the previous .hero-section height for mobile */
        /* Previous value was 35vh for a very compact look */
        height: 35vh; 
    }

    /* 2. Adjust Slider Dots Position */
    .slider-dots-container {
        /* Move the dots closer to the bottom edge of the slide */
        bottom: 10px; /* Reduced from 20px */
    }

    /* 3. Reduce Dot Size (Optional, but aligns with overall reduction) */
    .slider-dot {
        width: 8px; /* Reduced from 10px */
        height: 8px; /* Reduced from 10px */
    }
    
    /* 4. Ensure the content inside the slide also uses the smaller mobile font sizes */
    /* Note: These styles rely on your previous CSS for .hero-content, .subtitle, h1, and .shop-button 
       being applied correctly within the .hero-section.slide (since it has the same classes). 
       The styles below are a reminder/repetition of what should already be applied to the content: */
    
    .hero-content .subtitle {
        font-size: 0.7rem; 
    }
    .hero-content h1 {
        font-size: 1.1rem; 
        margin-top: 10px;
    }
    .shop-button {
        padding: 5px 13px;
        font-size: 0.52rem;
    }
    
}
/* --- Text Animation Styles --- */

/* 1. Set initial state (hidden and shifted down) */
.hero-content .subtitle,
.hero-content h1,
.hero-content .shop-button {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* 2. Define the 'active' state for content */
.hero-section.slide.active-animation .subtitle,
.hero-section.slide.active-animation h1,
.hero-section.slide.active-animation .shop-button {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Add delays so they pop in one after another */
.hero-section.slide.active-animation .subtitle {
    transition-delay: 0.3s;
}

.hero-section.slide.active-animation h1 {
    transition-delay: 0.6s;
}

.hero-section.slide.active-animation .shop-button {
    transition-delay: 0.9s;
}
.hero-section.slide {
    overflow: hidden;
    background-size: 120%; /* Start slightly zoomed in */
    transition: background-size 6s ease-out; /* Slow zoom out effect */
}

.hero-section.slide.active-animation {
    background-size: 130%; /* Zooms to normal size when active */
}
/*
|==========================================================================
| BASE STYLES: DESKTOP LAYOUT (3-COLUMN FLEX)
|==========================================================================
*/

/* --- Layout for the Section --- */
.category-offers-section {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between the cards */
    max-width: 1200px; /* Optional: Adjust to your page width */
    margin: 0 auto;
    padding: 20px 0;
}

/* --- Individual Card Styling --- */
.category-card {
    flex: 1 1 30%; /* Allows cards to grow/shrink and maintains 3-in-a-row */
    position: relative;
    overflow: hidden; /* Ensures image doesn't bleed out */
    background-color: var(--color-supporting); /* White background */
}

.category-card a {
    text-decoration: none; /* Remove underline from the link */
    color: inherit;
    display: block; /* Make the link cover the whole card */
}

/* --- Image Styling --- */
.category-card img {
    width: 100%;
    height: 300px; /* Fixed height on desktop */
    object-fit: cover; /* Ensures image covers the area without distortion */
    display: block;
    transition: transform 0.3s ease; /* Scale the image slightly on hover for an effect */
}

.category-card a img {
  /* Add the transition property to the base image style */
  /* This tells the browser to animate changes to the 'transform' property 
     over a duration of 0.5 seconds (you can adjust this value)
     using an 'ease-in-out' timing function for a smooth start and end. */
  transition: transform 1s ease-in-out; 
}

.category-card a:hover img {
  /* This is the hover effect you already had */
  transform: scale(1.2);
}
/* --- Product Title Overlay (The large text) --- */
.product-title {
    position: absolute;
    top: 23%; /* Position roughly in the middle for desktop */
    left: 50%;
    transform: translate(-50%, -50%); /* Center the block */
    z-index: 10;
    width: 90%; /* To ensure it stays within bounds */
    text-align: center;
}

.product-title h3 {
    margin: 0;
    color: var(--color-secondary); /* Black text */
    font-size: 1.5rem; /* Responsive font size */
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--font-family-header);
    /* Adding a subtle text shadow to make it pop over the image */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7); 
    margin-top: 20px;
}

/* --- Discount Overlay (The Blue Box) --- */
.offer-overlay {
    position: absolute;
    top: 20px; /* Keeps it 20px from the top */
    left: 50%; /* Moves the start of the element to the center */
    transform: translateX(-50%); /* Shifts it back by half its own width to truly center it */
    z-index: 20; /* Ensure it's above the title */
    
    background-color: var(--color-primary); /* Bright Blue */
    color: var(--color-supporting); /* White text */
    padding: 5px 5px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Image Tint Overlay --- */
.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Slight white/light tint over the image */
    pointer-events: none; /* Allows clicks to go through to the anchor tag */
    z-index: 5;
}


/*
|==========================================================================
| RESPONSIVE STYLES: MOBILE (MAX-WIDTH 768px)
|==========================================================================
*/
@media (max-width: 768px) {
    /* 1. Layout & Scrolling Optimization */
    .category-offers-section {
        display: flex; /* 'flex-direction: row' is default */
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 15px;
        padding: 15px;
        /* Scrollbar hiding (Combined) */
        -ms-overflow-style: none; /* IE/Edge */
        scrollbar-width: none; /* Firefox */
    }
    .category-offers-section::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Opera */
    }

    /* 2. Card Size */
    .category-card {
        flex: 0 0 75vw; /* flex-grow, flex-shrink, flex-basis */
        min-height: 250px;
    }

    /* 3. Image Sizing */
    .category-card img {
         width: 100%;
    height: 250px; /* Fixed height on desktop */
    object-fit: cover; /* Ensures image covers the area without distortion */
    display: block;
     }
.category-card a img {
  /* Add the transition property to the base image style */
  /* This tells the browser to animate changes to the 'transform' property 
     over a duration of 0.5 seconds (you can adjust this value)
     using an 'ease-in-out' timing function for a smooth start and end. */
  transition: transform 1s ease-in-out; 
}


    /* 4. Overlay & Title Optimization */
    .product-title {
        top: 30%;
        transform: translate(-50%, -50%); /* Centering */
        padding: 10px 5px;
    }
    
    .product-title h3 {
        font-size: 1.2rem;
     }
    
    .offer-overlay {
        font-size: 0.75rem;
        padding: 4px 8px;
        top: 20px;
    }
}



/* Define a global variable if you haven't already */
:root {
    /* Example color variables - adjust these to match your theme */
    --color-primary: #007bff; /* Example: Blue */
    --color-secondary: #333; /* Example: Dark Gray */
    --color-supporting: #fff; /* Example: White (for the icon) */
}

 

 
/* --------------------------------------------------- */
/* --- NEW ARRIVALS & PRODUCT CARD STYLES --- */
/* --------------------------------------------------- */

.new-arrivals-section {
    padding: 60px 30px; /* Standard section padding */
    position: relative;
}

/* Ensure content is centered and contained */
.container {
    max-width: 1100px; /* Max width for content */
    margin: 0 auto;
    /* Important for containing the product grid and slider buttons */
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: -10px;
}


/* --- Product Grid/Slider Layout (Core Fix) --- */
.product-grid {
    display: flex; /* Use flexbox for horizontal sliding */
    overflow-x: scroll; /* Allow horizontal scrolling */
    scroll-snap-type: x mandatory; /* Snap scrolling to each item */
    -webkit-overflow-scrolling: touch; /* Smoother scrolling on iOS */
    gap: 30px;
    padding-bottom: 20px; /* Space for scrollbar or shadow */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.product-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* --- Individual Product Card Styling --- */

/* Base Card Width (PC Mode: 4 cards visible) */
.product-card {
    /* KEY FIX: Define a fixed width using flex-shrink/grow = 0, so 4 cards fit with the 30px gap */
    /* Calculation: (100% / 4) - (30px * 3 / 4) = 25% - 22.5px */
    flex: 0 0 calc((100% / 4) - 22.5px); 
    
    background-color: var(--color-supporting); /* White background */
    border-radius: 0px;
    overflow: hidden;
    /* Use flex column to stack image, info, and actions */
    display: flex; 
    flex-direction: column;
    transition: box-shadow 0.3s;
    position: relative;
    scroll-snap-align: start; /* Snap the beginning of the card to the container start */
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-primary); /* Red background */
    color: var(--color-supporting); /* White text */
    padding: 8px 10px;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1;
    z-index: 10;
}

.product-info {
    padding: 15px;
    /* Use flex-grow to take up available space between image and fixed action bar */
    flex-grow: 1; 
    text-align: center;
}

.product-name {
    font-size: 1rem;
    font-weight: 550;
    line-height: 1.3;
    margin: 0 0 8px 0;
    min-height: 2.6em;
}

.product-rating {
    color: #FFC107;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.product-rating .rating-value {
    color: var(--color-accent-dark);
    font-size: 0.8rem;
    margin-left: 5px;
}

/* --- PRICE STYLES --- */
.product-prices {
    display: flex;
    justify-content: center;
    align-items: baseline; /* Align prices along the baseline */
    gap: 8px; /* Space between old and new price */
    margin: 0; 
}

.old-price {
    font-size: 0.9rem; 
    font-weight: 400; 
    color: var(--color-accent-dark); 
    opacity: 0.7; 
}

.old-price del {
    display: inline;
}

.new-price {
    font-size: 1.1rem; 
    font-weight: 600; 
    color: var(--color-primary); 
    margin: 0; 
}

.product-price { 
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}
/* --- END PRICE STYLES --- */


.product-actions {
    display: flex;
    /* Common styles: positioned absolutely within .product-card */
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    
    /* PC: Start position right below the image container (280px high) */
    top: 250px; /* Changed from 250px to 280px to match .product-image-container height */
    
    /* Initially hidden and shifted up by its own height to prepare for slide-up/down effect */
    opacity: 0;
    transform: translateY(-100%); 
    transition: opacity 0.3s ease, transform 0.3s ease;
    
    background-color: var(--color-supporting);
    z-index: 10; 
    border-radius: 0; /* Should be 8px for the full action bar */
}

/* On hover, slide the product actions down to its natural position (top: 280px) */
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0); /* Slides down to cover the product info */
}
 /* 1. KEYFRAME ANIMATION */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 2. BASE BUTTON STYLES (Updated Transition) */
.add-to-cart-btn {
    flex-grow: 1;
    background-color: var(--color-secondary);
    color: var(--color-supporting);
    border: none;
    padding: 10px 8px;
    font-size: 0.83rem;
    font-weight: 550;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s, width 0.3s, padding 0.3s; 
    text-transform: uppercase;
    
    border-radius: 0 0 0 0px;
    /* Ensure position is relative for the absolute spinner */
    position: relative;
    overflow: hidden; /* Hide the original text when spinner is visible */
}

.add-to-cart-btn:hover {
    background-color: var(--color-primary); /* Red hover */
}

/* 3. LOADING STATE STYLES */
.add-to-cart-btn.loading {
    /* Set a fixed width/height to prevent layout shift */
    min-width: 100px; /* Adjust this as needed to look good */
    pointer-events: none; /* Prevent double-clicking */
    /* Adjust padding to center the spinner */
    padding: 10px; 
    background-color: var(--color-primary); /* Distinct color for loading */
    color: transparent !important; /* HIDE button text when loading */
}

/* Ensure the hover effect is disabled during loading */
.add-to-cart-btn.loading:hover {
    background-color: var(--color-primary);
}

/* 4. SPINNER ELEMENT STYLES */
.loading-spinner {
    display: inline-block;
    width: 1em; 
    height: 1em;
    border: 3px solid rgba(255, 255, 255, 0.3); /* Light border */
    border-radius: 50%;
    border-top-color: var(--color-supporting); /* Solid color for the spinning part */
    /* Apply the animation defined in keyframes */
    animation: spin 0.6s linear infinite; 
    /* Center the spinner */
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}
 

/* BASE BUTTON ADJUSTMENTS (Ensure relative positioning and overflow are set) */
.wishlist-btn {
    /* Keep existing styles */
    width: 45px;
    background-color: var(--color-supporting);
    color: var(--color-secondary);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
    padding: 10px 0;
    border-left: 1px solid var(--color-accent-light);
    border-radius: 0;

    /* KEY FOR SPINNER PLACEMENT */
    position: relative; 
    overflow: hidden; /* Important to hide spinner corners if it slightly exceeds boundaries */
}

/* WISHLIST SPINNER ELEMENT */
.wishlist-spinner {
    display: none; /* Hidden by default */
    width: 1em; /* Matches the font-size of the icon (1rem) */
    height: 1em;
    border: 3px solid rgba(0, 0, 0, 0.3); /* Light background circle */
    border-radius: 50%;
    border-top-color: var(--color-primary); /* The colored spinning part */
    animation: spin 0.6s linear infinite;
    
    /* Centering the spinner */
    position: absolute;
    top: 25%;
    left: 25%;
    transform: translate(-50%, -50%);
}

/* ANIMATING STATE (Toggled by JavaScript) */
.wishlist-btn.animating {
    pointer-events: none; /* Disable clicks while animating */
    /* Set button background to match the spinner style if desired */
    background-color: var(--color-supporting); 
}

/* Hide the heart icon when animating */
.wishlist-btn.animating i {
    opacity: 0;
}

/* Show the spinner when animating */
.wishlist-btn.animating .wishlist-spinner {
    display: block;
}
.wishlist-btn,
.quickview-btn {
    width: 45px;
    background-color: var(--color-supporting);
    color: var(--color-secondary);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
    padding: 10px 0;
    border-left: 1px solid var(--color-accent-light);
    border-radius: 0; /* Reset for general action buttons */
}

/* PC: Apply bottom-right radius to the last button */
.quickview-btn {
    border-radius: 0 0 8px 0;
}

.wishlist-btn:hover i,
.quickview-btn:hover i {
    color: var(--color-primary);
}


/* --- Slide Buttons Positioning and Styling --- */
.slider-btn {
    position: absolute;
    /* Adjusted top position to roughly center within the product cards' height */
    top: 50%; 
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-accent-light);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.slider-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-supporting);
}

.slider-btn-prev {
    left: -20px; 
}

.slider-btn-next {
    right: -20px; 
}


/* --------------------------------------------------- */
/* --- MOBILE RESPONSIVENESS (2 products per row) --- */
/* --------------------------------------------------- */
@media (max-width: 768px) {
    .new-arrivals-section {
        padding: 40px 15px;
    }
.loading-spinner {
   
    top: 25%;
   
}
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .product-grid {
        gap: 15px;
    }
    
    /* Mobile Card Width (KEY FIX: 2 cards visible) */
    .product-card {
        /* Calculation: (100% / 2) - (15px * 1 / 2) = 50% - 7.5px */
        flex: 0 0 calc((100% / 2) - 7.5px); 
        min-height: auto;
    }

    .product-image-container {
        height: 180px;
    }

    .product-name {
        font-size: 0.85rem;
        min-height: 2.8em;
    }

    /* Adjust price font size for mobile */
    .product-price,
    .new-price {
        font-size: 0.9rem;
    }
    .old-price {
        font-size: 0.75rem;
    }

    /* FIX: Mobile/Tablet actions - make them permanently visible and place them at the bottom */
    .product-actions {
        /* *** KEY CHANGE 1: Override PC absolute positioning and make it visible *** */
        position: static; 
        order: 3; /* Use flexbox 'order' property to push it to the bottom */
        opacity: 1; /* Make visible */
        transform: translateY(0); /* Reset transform */
        border-radius: 0 0 8px 8px;
        border-top: 1px solid var(--color-accent-light);
    }
    
    .product-info {
        order: 2; 
    }
    
    .product-image-container {
        order: 1;
    }

    .add-to-cart-btn {
        padding: 6px 4px;
        font-size: 0.65rem;
        border-radius: 0 0 0 8px; /* Apply bottom-left radius for mobile */
    }

    .wishlist-btn,
    .quickview-btn {
        width: 30px;
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    .quickview-btn {
        border-radius: 0 0 8px 0; /* Apply bottom-right radius for mobile */
    }

    .slider-btn {
         top: 40%; 

    width: 30px;
    height: 30px;
   
}

    /* Adjust slider buttons to be inside the viewable area */
    .slider-btn-prev {
        left: 0; 
    }

    .slider-btn-next {
        right: 0;
    }
}

.product-filters {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif; /* Proper quotes and fallback */
}

.filter-tab {
    background: none;
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent-dark); /* Default text color */
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.filter-tab:hover {
    color: var(--color-primary); /* Hover color */
}

/* Active Tab Indicator */
.filter-tab.active {
    color: var(--color-primary);
    font-weight: 600;
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 2px;
}
 /* Media query for screens smaller than 600px (e.g., most phones) */
@media (max-width: 600px) {
    
    .product-filters {
        /* Reduce overall margin/padding if needed */
        margin-bottom: 20px;
    }
    
    .filter-tab {
        /* Reduce padding for narrower tabs */
        padding: 6px 10px; 
        /* Reduce font size for smaller screens */
        font-size: 0.9rem; 
        /* Use a slightly larger margin to prevent crowding */
        margin: 5px 3px;
    }

   
}

/* --------------------------------------------------- */
/* --- FIX: STACK PRICES ON VERY SMALL MOBILE SCREENS (< 370px) --- */
/* --------------------------------------------------- */
@media (max-width: 470px) {
    .product-prices {
        /* KEY FIX: Change flex direction to stack prices vertically */
        display: flex;
        flex-direction: column;
        
        /* Optional: Reduce the vertical gap if they are too far apart */
        gap: 2px; 
        
        /* Center the text elements within the column */
        align-items: center; 
    }

    /* Optional: Ensure the old price is centered when stacked */
    .old-price {
        text-align: center;
    }
}
/* --------------------------------------------------- */
/* --- NEW: FEATURE VIDEO & GUARANTEE SECTION --- */
/* --------------------------------------------------- */

.feature-video-section {
    padding: 0 30px; /* Standard horizontal padding */
    padding-top: 50px;
    background-color: var(--color-accent-light); /* Light gray background for separation */
}

/* --- 1. Video Banner Styles (The main image/CTA area) --- */
.video-banner-container {
    height: 400px; /* Fixed height for the banner */
    background-image: url('placeholder-kitchen-video.jpg'); /* Placeholder image */
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 50px; /* Space between video and features */
    overflow: hidden;
}

/* Dark Overlay for contrast */
.video-banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color-secondary-rgb), 0.4); /* Darker overlay for text contrast */
}

.video-content {
    color: var(--color-supporting); /* White text */
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-cta h2 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.video-cta h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 -10px 0;
}

.play-button-icon {
    /* Use a large icon for the play button */
    font-size: 6rem; 
    color: var(--color-supporting);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.play-button-icon:hover {
    color: var(--color-primary); /* Red hover effect */
    transform: scale(1.1);
}

/* Secondary CTA Button (e.g., Get a Plumber) */
.secondary-cta-btn {
    background-color: var(--color-primary);
    color: var(--color-supporting);
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    display: inline-block;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.secondary-cta-btn:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}


/* --- 2. Guarantee Features Styles --- */
.guarantee-features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 60px; /* Ensures section bottom padding */
}

.feature-card {
    flex: 1; /* Equal width for all cards */
    text-align: center;
    padding: 20px 10px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--color-primary); /* Red icon color */
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--color-secondary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-accent-dark);
    line-height: 1.4;
    margin: 0;
}

/* --- Mobile Adjustments (Max Width: 768px) --- */
@media (max-width: 768px) {
    .feature-video-section {
        padding: 0 15px;
        padding-top: 30px;
    }

    .video-banner-container {
        height: 180px; /* Reduced height on mobile */
        margin-bottom: 30px;
    }
.video-cta h2 {
    /* Reduced from 1rem to 0.75rem */
    font-size: 0.75rem; 
    /* Reduced from 1px to 0.5px */
    letter-spacing: 0.5px; 
    margin-top: -5px;
 }

.video-cta h1 {
    /* Reduced from 1.8rem to 1.2rem */
    font-size: 1.2rem; 
    margin-bottom: -5px;
}

.play-button-icon {
    /* Reduced from 3rem to 1.5rem */
    font-size: 3rem; /* Much smaller play icon */
}

.secondary-cta-btn {
    /* Reduced padding */
    padding: 5px 10px; 
    /* Reduced from 0.85rem to 0.75rem */
    font-size: 0.65rem; 
    /* Reduced margin-top */
    margin-top: -3px; 
}
/* Stack features vertically on mobile and reduce sizes */
.guarantee-features {
    /* Reduced padding-bottom for smaller vertical space */
    padding-bottom: 20px; 
    
    /* Reduced gap between stacked features */
    gap: 10px; 
    
    flex-direction: column;
}

.feature-icon i {
    /* Reduced icon size */
    font-size: 1.5rem; 
}

.feature-card {
    /* Reduced heading size */
    h3 { 
        font-size: 0.9rem; 
    }
    
    /* Reduced paragraph text size */
    p { 
        font-size: 0.7rem; 
    }
}
}


/* --------------------------------------------------- */
/* --- DEAL OF THE WEEK SPECIFIC STYLES --- */
/* --------------------------------------------------- */
.main-section-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 30px;
        color: var(--color-primary); /* Assuming a red/accent color */

}

 .deal-of-the-week-section .section-title{
  margin-bottom: 20px;

 }
/* --- Countdown Timer Styling --- */
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    /* REDUCED: Smaller padding for the overall container */
    padding: 6px 10px; 
    background-color: #f7f7f7; /* Light background for the timer */
    border-top: 1px solid var(--color-accent-light);
    border-bottom: 1px solid var(--color-accent-light);
    /* REDUCED: Smaller gap between items */
    gap: 8px; 
}

.countdown-timer .timer-label {
    /* REDUCED: Smaller font size */
    font-size: 0.75rem; 
    font-weight: 500;
    color: var(--color-accent-dark);
    margin-right: 3px; /* Reduced margin */
}

.countdown-timer .time-value {
    /* Style for the actual time numbers (00d, 00h, etc.) */
    /* REDUCED: Smaller font size */
    font-size: 0.9rem; 
    font-weight: 600;
    color: var(--color-primary); /* Red color for urgency */
    /* REDUCED: Smaller inner padding */
    background-color: var(--color-supporting); /* White background for the time block */
    padding: 1px 3px;
    border-radius: 4px;
    line-height: 1;
    /* REDUCED: Smaller minimum width */
    min-width: 30px; 
    text-align: center;
    /* Optional: make time blocks visually distinct */
    border: 1px solid var(--color-primary);
}

/* Ensure the product info and actions remain below the timer */
.deal-of-the-week-section .product-card {
    /* Reset order if you use flex 'order' in the base card */
    display: flex;
    flex-direction: column; 
}

/* Override mobile layout to ensure timer is between image and info */
@media (max-width: 768px) {
    
    /* 1. Target the Timer Container for overall sizing and layout */
    .product-card .countdown-timer {
        order: 2; /* Place timer below image (order 1) */
        padding: 3px 6px; 
        gap: 4px;
        /* NEW: Set a consistent, small font size for the whole timer */
        font-size: 0.7rem; 
        /* NEW: Center the content for cleaner horizontal alignment */
        justify-content: center; 
    }
    .deal-of-the-week-section {
        padding: 40px 15px;
    }
.main-section-title {
        margin-top: -5px;
 
}
    /* 2. Target the Timer Label ("Ends in:") */
    .deal-of-the-week-section .countdown-timer .timer-label {
        /* Adjusted from 0.6rem to inherit/0.7rem for consistency, 
           or use 0.6rem if you prefer it smaller than the time values */
        font-size: 0.6rem;
         /* NEW: Ensure label doesn't take up excessive space */
        line-height: 1.2; 
    }

    /* 3. Target the Time Values (00d, 00h, etc.) */
    .deal-of-the-week-section .countdown-timer .time-value {
        /* Adjusted from 0.7rem to match container font or slightly larger */
        font-size: 0.5rem; 
        /* Further reduced min-width for time blocks */
        min-width: 18px; 
        /* Further reduced inner padding for time values */
        padding: 0 1px; 
        font-weight: 600;
        /* NEW: Remove margin for tight packing (if margin was present) */
        margin: 0; 
        /* NEW: Ensure text is centered within the narrow block */
        text-align: center;
    }
    
    /* Ensure the product info still sits below the timer */
    .deal-of-the-week-section .product-card .product-info {
        order: 3; /* Place product info below timer */
        padding-top: 8px; 
    }
}



/* --------------------------------------------------- */
/* --- NEW: SERVICES PROMOTION SECTION STYLES --- */
/* --------------------------------------------------- */
.plumbing-promo-section {
    padding: 60px 0; /* Padding applied here instead of the container */
    background-color: var(--color-accent-light); /* Light grey background */
}

.plumbing-promo-section .promo-container {
    /* Set up the 3-column layout on desktop */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 30px; /* Use standard side padding for alignment */
}

/* --- Image Columns --- */
.promo-image-left,
.promo-image-right {
    /* Fixed width for desktop to balance the content */
    flex: 0 0 30%;
    overflow: hidden;
    height: 450px; /* Fixed height for visual consistency */
    position: relative;
 }

.promo-image-left img,
.promo-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Content Column --- */
.promo-content {
    flex: 1 1 40%; /* Takes up slightly more space than the images */
    text-align: center;
    max-width: 500px;
}

.promo-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary); /* Highlight the main heading in red */
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-copy {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 30px;
    padding: 0 10px;
}

.read-more-button {
    /* Reuses the existing .shop-button style for a consistent CTA */
    /* No need to define styles here, just reuse the class */
}

/* ------------------------------------- */
/* --- Responsive Adjustments (Mobile) --- */
/* ------------------------------------- */
@media (max-width: 768px) {
    .plumbing-promo-section {
        padding: 30px 0;
    }
    
    .plumbing-promo-section .promo-container {
        /* Stack elements vertically on mobile */
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .promo-image-left,
    .promo-image-right {
        /* Images span full width, reduced height */
        flex: 1 1 100%;
        width: 100%;
        height: 250px; 
    }

    /* Order change for better flow on mobile: Image 1, Content, Image 2 */
    .promo-image-left {
        order: 1;
    }
    .promo-content {
        order: 2;
        padding: 0 10px;
    }
    .promo-image-right {
        order: 3;
    }

    .promo-heading {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .promo-copy {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

 

/* --------------------------------------------------- */
/* --- NEW: PROMOTIONAL BANNERS SECTION STYLES --- */
/* --------------------------------------------------- */

.promotional-banners {
    /* Standard padding or use a container class if you have one */
    padding: 50px 30px; 
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between the two banner cards */
    max-width: 1200px; /* Optional: Align with your main content width */
    margin: 0 auto;
}

.banner-card {
    flex: 1; /* Both cards take equal width */
    height: 350px; /* Fixed height for visual consistency */
    position: relative;
    overflow: hidden;
    color: var(--color-supporting); /* White text over image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(var(--color-secondary-rgb), 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
}

.banner-card:hover {
    box-shadow: 0 8px 25px rgba(var(--color-secondary-rgb), 0.2);
    transform: translateY(-2px);
}

/* --- Content Styling & Overlay --- */
.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Subtle dark overlay to ensure text readability */
    background: rgba(var(--color-secondary-rgb), 0.4); 
}

.banner-card .content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 1; /* Keep content above the overlay */
    text-align: left;
    max-width: 70%;
}

.banner-card .discount {
    display: inline-block;
    background-color: var(--color-primary); /* Red highlight */
    padding: 5px 10px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
}

.banner-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* --------------------------------------------------- */
/* --- MOBILE MODE (Banners Stack) --- */
/* --------------------------------------------------- */

@media (max-width: 768px) {
    .promotional-banners {
         flex-direction: column; 
         margin-top: -50px;
        padding: 30px 20px; /* Adjust padding for smaller screens */
        gap: 20px; /* Slightly less space between stacked cards */
    }

    .banner-card {
        /* When stacking, the cards should take the full available width */
        flex: none; 
        width: 100%;
        /* A slightly smaller height for better mobile viewing */
        height: 180px; 
    }

    .banner-card .content {
        /* Center content or adjust for smaller width */
        left: 20px; 
        max-width: 90%; 
    }

    .banner-card h2 {
        /* Reduce font size for smaller screens */
        font-size: 1.5rem; 
        margin-bottom: 15px;
    }

    .banner-card .discount {
        /* Adjust padding for smaller highlight */
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* --------------------------------------------------- */
/* --- NEW: PARTNER BRAND SECTION STYLES --- */
/* --------------------------------------------------- */

.partner-brand-section {
    padding: 40px 30px; /* Reduced padding from 60px to 40px */
    background-color: var(--color-accent-light); /* Light background for contrast */
    text-align: center;
}

/* Ensure content is centered and contained */
.partner-brand-section .container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative; /* For positioning potential arrows */
}

.brand-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-secondary);
}


/* --- Brand Grid/Slider Layout (Horizontal Scrolling) --- */
.brand-grid {
    display: flex;
    overflow-x: scroll; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Snap scrolling to each item */
    -webkit-overflow-scrolling: touch;
    gap: 20px; /* Slightly less gap than products */
    padding-bottom: 5px; 
    
    /* *** ADDITION FOR SMOOTH AUTO-SCROLLING *** */
    scroll-behavior: smooth; 
    
    /* Hide scrollbar for a cleaner look */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.brand-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* --- Individual Brand Card Styling --- */
.brand-card {
    /* Desktop: Show 6 brands at once with 20px gap */
    /* Calculation: (100% / 6) - (20px * 5 / 6) ≈ 16.66% - 16.66px */
    flex: 0 0 calc((100% / 6) - 16.66px); 
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    height: 100px; /* Fixed height for consistent presentation */
        
    transition: transform 0.3s, opacity 0.3s;
    cursor: pointer;
    
    scroll-snap-align: start;
}

.brand-card:hover {
    transform: scale(1.05);
    opacity: 0.9;
 }

.brand-card img {
    max-width: 80%;
    max-height: 70%;
    height: auto;
    width: auto;
    object-fit: contain; /* Ensure logo is contained without cropping */
     opacity: 1;
    transition: filter 0.3s, opacity 0.3s;
}

.brand-card:hover img {
    filter: grayscale(0%); /* Show color on hover */
    opacity: 1;
}


/* --- Mobile Adjustments (Max Width: 768px) --- */
@media (max-width: 768px) {
    .partner-brand-section {
        padding: 30px 15px;
    }
    .brand-section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .brand-card {
        /* Mobile: Show 3 brands at once */
        /* Calculation: (100% / 3) - (20px * 2 / 3) ≈ 33.33% - 13.33px */
        flex: 0 0 calc((100% / 3) - 13.33px);
        height: 80px;
    }
}







/* --- FAQ SECTION STYLES --- */
.faq-section {
    padding: 80px 20px;
    background-color: var(--color-accent-light); /* Light gray background to separate section */
}

.section-subtitle {
    text-align: center;
    color: var(--color-accent-dark);
    margin-bottom: 40px;
    font-size: 1rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--color-supporting);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background-color: #fff;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* --- ACTIVE STATE (When Opened) --- */
.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item.active .faq-question {
    color: var(--color-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns + into x */
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Large enough to show content */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 15px;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 15px;
    }
    .faq-answer p {
        padding: 0 15px 15px 15px;
        font-size: 0.9rem;
    }
}



/* Container to center the button */
.view-all-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

/* Button Styling */
.view-all-btn {
    display: inline-block;
    background-color: var(--color-primary); /* Your Red */
    color: var(--color-supporting); /* White */
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none; /* Removes link underline */
}

/* Hover Effect */
.view-all-btn:hover {
    background-color: var(--color-secondary); /* Turns Black on hover */
    border-color: var(--color-secondary);
    color: var(--color-supporting);
}

/* Arrow Animation */
.btn-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover .btn-arrow {
    transform: translateX(5px); /* Moves arrow to the right */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .view-all-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}