  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --black-color: #000000;
    --maroon-color: #AD1A22;
    --white-color: #ffffff;
    --light-grey: #f0f0f0;
    --dark-grey: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-grey);
    color: var(--dark-grey);
    overflow-x: hidden;
}

a {
    color: var(--dark-grey);
    text-decoration: none;
}

section {
    padding: 60px 5%;
}

/* Top Bar */
.top-bar {
    background: var(--maroon-color);
    padding: 10px 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: var(--white-color);
}

.top-bar-content {
    display: flex;
    gap: 20px;
}
 
.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    position: sticky;
    top: 0;
    height: 85px;
}

.logo img {
    margin-top: 8px;
    height: 180px;
    width: auto;
    display: block;
}

@media (max-width: 992px) {
    .logo img {
        height: 120px; /* Example: Adjust this value as needed */
        width: auto;
    }
}

.header-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    gap: 30px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a {
  font-size: 1rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #333; /* A base color for the link */
  transition: color 0.3s ease; /* Transition for the text color */
}

/* Style for the underline pseudo-element */
.navbar a::after {
  content: '';
  position: absolute;
  bottom: -5px; /* Adjust this value to change the distance from the text */
  left: 0;
  width: 0;
  height: 2px; /* Thickness of the underline */
  background-color: var(--maroon-color); /* Color of the underline */
  transition: width 0.3s ease; /* Animate the width of the line */
}

/* Hover state */
.navbar a:hover {
  color: var(--maroon-color);
}
/* Add to your existing index.css file */

/* Categories Nav - Parent container update */
.categories-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* Dropdown Container */
.category-dropdown {
    position: relative;
    display: inline-block;
}

 .dropdown-content {
    display: none; /* Hide the dropdown by default */
    position: absolute;
    top: 100%; /* Position it right below the main link */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 10px 0;
    z-index: 1000;
    border-radius: 5px;
}

/* Show the dropdown content on hover */
.category-dropdown:hover .dropdown-content {
    display: block;
}

/* Styling for the list inside the dropdown */
.dropdown-content ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}
.m-categories-nav{
    display: none;
}
.dropdown-content ul li a {
    color: var(--dark-grey);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    white-space: nowrap; /* Prevent items from wrapping */
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover effect for dropdown links */
.dropdown-content ul li a:hover {
    background-color: var(--light-grey);
    color: var(--maroon-color);
}
/* Animate the underline on hover */
.navbar a:hover::after {
  width: 100%; /* The line expands to 100% of the link's width */
}

/* Search Bar */
.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--maroon-color);
    border-radius: 50px;
    margin-right: 30px;
    padding: 8px 10px;
    box-shadow: 0 4px 15px rgba(173, 26, 34, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 450px;
}

.search-bar:hover,
.search-bar:focus-within {
    box-shadow: 0 6px 20px rgba(173, 26, 34, 0.6);
    transform: scale(1.02);
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white-color);
    padding: 5px 15px;
    flex-grow: 1;
    font-size: 1rem;
    padding-right: 40px;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.search-bar input:focus::placeholder {
    color: transparent;
}

.search-bar i {
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-bar i:hover {
    transform: scale(1.1);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--maroon-color);
}

/* Menu Icon */
.menu-icon {
    display: none;
        color: var(--maroon-color);

}

.call-icon {
    display: flex;
    font-size: 2rem;
    cursor: pointer;
    color: var(--maroon-color);
}


/* Categories Nav */
.categories-nav {
    background: var(--dark-grey);
    padding: 10px 5%;
    display: flex;
    justify-content: center;
    gap: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 85px;
    z-index: 999;
}

.categories-nav a {
    color: var(--white-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.categories-nav a:hover {
    color: var(--maroon-color);
}

 .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('cover.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    padding: 0;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInScale 1.5s ease-out forwards;
}.close-icon {
    display: none;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-color);
    animation: slideInFromTop 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    color: var(--white-color);
    animation: slideInFromBottom 1s 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    opacity: 0;
}

 .cta-button {
  display: inline-block;
  background: var(--maroon-color);
  color: var(--white-color);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 8px 15px rgba(173, 26, 34, 0.4);
  animation: slideInFromBottom 1s 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
  opacity: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  transform: translateX(-100%);
  transition: transform 0.4s ease-out;
  z-index: -1;
}

.cta-button:hover {
  color: var(--maroon-color);
  box-shadow: 0 8px 25px rgba(173, 26, 34, 0.6);
}

.cta-button:hover::after {
  transform: translateX(0);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Product Slider */
.product-slider-section {
    text-align: center;
    padding: 80px 5%;
}

.product-slider-section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 50px;
    color: var(--maroon-color);
}

.product-slider-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--maroon-color);
}

.product-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-item {
    min-width: 300px;
    text-align: center;
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Scrolling Animation */
.scrolling-animation-section {
    padding: 40px 0;
    overflow: hidden;
    background-color: var(--white-color);
}

.scroll-text {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.scroll-text span {
    display: inline-block;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--maroon-color);
    animation: scrollText 30s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
 /* Update to the existing .banner-section style */
.banner-section {
    display: flex;
    justify-content: space-around;
    align-items: stretch; /* Makes all items the same height */
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

/* Updated styling for each banner item */
.banner-item {
    background: var(--white-color);
    color: var(--dark-grey);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 250px; /* Adjusted min-width for smaller screens */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--light-grey);
}

.banner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Styling for the icon container */
.banner-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--maroon-color);
    color: var(--white-color);
    font-size: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px; /* Centers the icon */
    transition: background-color 0.3s ease;
}

.banner-item:hover .banner-icon-box {
    background-color: var(--dark-grey);
}

/* Styling for the text */
.banner-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--maroon-color);
}

.banner-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}
/* Products Grid */
.products-grid {
    text-align: center;
}

.products-grid h2 {
    font-size: 2.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 50px;
    color: var(--maroon-color);
}

.products-grid h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--maroon-color);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    border: 1px solid var(--light-grey);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--maroon-color);
}

.product-card img {
    width: 100%;
    height: 200px; /* You can adjust this value as needed */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.product-card h4 {
    font-size: 1.3rem;
    color: var(--dark-grey);
    margin-top: 15px;
}

.product-card p {
    color: #666;
    margin: 10px 0;
}

  

/* The primary button styles */
.cart-button {
    position: relative;
        background: var(--maroon-color);

    padding: 10px;
    width: 155px;
    height: 45px;
    border: 0;
    border-radius: 10px;
     outline: none;
    cursor: pointer;
    color: #fff;
    transition: .3s ease-in-out;
    overflow: hidden;
}

 

.cart-button:active {
    transform: scale(.9); /* Shrinks the button slightly on click */
}

/* Positioning and styling for the icon and text elements inside the button */
.cart-button .fa-shopping-cart {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: -10%;
    font-size: 1.5em;
    transform: translate(-50%, -50%);
}

.cart-button .fa-box {
    position: absolute;
    z-index: 3;
    top: -20%;
    left: 52%;
    font-size: 1em;
    transform: translate(-50%, -50%);
}

.cart-button span {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    font-size: 1em;
    color: #fff;
    transform: translate(-50%, -50%);
}

.cart-button span.add-to-cart {
    opacity: 1; /* Shows the "Add to Cart" text initially */
}

.cart-button span.added {
    opacity: 0; /* Hides the "Added" text initially */
}

/* The 'clicked' class and its animations, which are triggered by JavaScript */
.cart-button.clicked .fa-shopping-cart {
    animation: cart 1.5s ease-in-out forwards;
}

.cart-button.clicked .fa-box {
    animation: box 1.5s ease-in-out forwards;
}

.cart-button.clicked span.add-to-cart {
    animation: txt1 1.5s ease-in-out forwards;
}

.cart-button.clicked span.added {
    animation: txt2 1.5s ease-in-out forwards;
}

/* Keyframes for the animations */
@keyframes cart {
    0% { left: -10%; }
    40%, 60% { left: 50%; }
    100% { left: 110%; }
}

@keyframes box {
    0%, 40% { top: -20%; }
    60% { top: 40%; left: 52%; }
    100% { top: 40%; left: 112%; }
}

@keyframes txt1 {
    0% { opacity: 1; }
    20%, 100% { opacity: 0; }
}

@keyframes txt2 {
    0%, 80% { opacity: 0; }
    100% { opacity: 1; }
} 
 

.map-container {
    flex: 1.5;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}


/* Scroll-to-top button */
.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--maroon-color);
    color: var(--white-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    text-decoration: none;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #9a161d;
    transform: translateY(-5px);
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #25D366;
    color: var(--white-color);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    text-decoration: none;
    z-index: 1001;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    .mobile-search-bar {
        display: none;
        
    }
.whatsapp-icon:hover {
    transform: scale(1.15);
    animation-play-state: paused;
    box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

 @media (max-width: 992px) {
    /* Hide the desktop search bar */
    .header .search-bar {
        display: none;
    }
  /*
  Mobile Search Bar: Next-Level Styling ✨
  A modern, accessible, and responsive search bar.
*/



.mobile-search-bar {
  display: flex;
  align-items: center;   /* centers input & icon */
  justify-content: space-between;
  background: linear-gradient(135deg, var(--maroon-color), #a21a22);
  border-radius: 50px;
  margin: 20px 1%;
  padding: 0 15px;       /* no vertical padding */
  height: 50px;          /* fixed height keeps alignment consistent */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 
              inset 0 1px 3px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-search-bar:focus-within {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35), 
              0 0 0 3px var(--white-color), 
              inset 0 1px 3px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.mobile-search-bar input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white-color);
  padding: 0 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  height: 100%;          /* fills bar height */
}

.mobile-search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.mobile-search-bar input:focus {
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.mobile-search-bar button {
  display: flex;
  align-items: center;   /* centers icon */
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  height: 100%;          /* matches bar height */
  padding: 0 12px;
}

.mobile-search-bar button:active {
  transform: scale(0.95);
}

.mobile-search-bar i {
  color: var(--white-color);
  font-size: 1.5rem;
  line-height: 1;        /* prevents top/bottom offset */
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-search-bar button:hover i {
  color: #ffcc00;
  transform: scale(1.2);
}




  /* Hide the categories-nav on mobile by default */
    .categories-nav {
        display: none;
     }
 
     .top-bar {
        display: none; 
    }
    
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

    .header-right {
        display: flex;
        align-items: center;
        flex: unset;
        justify-content: flex-end;
    }
    


     


/*-----------------------------------------------------------------------------------------*/
/* MODIFIED CODE FOR FULL-SCREEN, VERTICALLY AND HORIZONTALLY CENTERED MENU */
.nav-container {
    flex-direction: column;
    /* Vertically centers the main content block within the viewport */
    justify-content: center;
    /* Horizontally aligns the main content block within the viewport */
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* FIX 1: Change solid white to semi-transparent white (90% opacity) */
    background: rgba(255, 255, 255, 0.9);
    /* FIX 2: Add backdrop-filter for the blur effect */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* Safari/iOS prefix */
    
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 998;
    display: flex;
    flex-grow: unset;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    /* Enable vertical scrolling if content is too long */
    overflow-y: auto;
    /* Ensures vertical centering is not offset by padding */
    padding-top: 0;
}

.nav-container.active {
    transform: translateX(0);
}

/* Centering FIX for the Categories Navigation Block */
.nav-container.active .m-categories-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    padding: 40px;
    background: var(--light-grey);
    
    /* FIX: Center all categories links/items horizontally */
    align-items: center;
    
    /* FIX: Center the category list vertically within its block */
    justify-content: center;
}

.m-categories-nav .category-dropdown {
    position: static;
}

.m-categories-nav .dropdown-content {
    position: static;
    display: none;
    width: 100%;
    left: auto;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 10px;
}


.navbar {
    flex-direction: column;
    /* Centers all links/items within the navbar horizontally */
    align-items: center;
    gap: 20px;
    /* Reset margin for proper horizontal centering */
    margin-left: 0;
    width: 100%;
    padding: 0 20px;
}

.search-bar {
    /* 'margin: auto' handles horizontal centering for block elements */
    margin: 20px auto;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-icons {
    /* Use justify-content: center to center the icons within their container */
    justify-content: center;
    gap: 10px;
    width: 100%;
    display: flex;
}

/* Close icon styling - NOW BIGGER */
.nav-container .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    /* Increased size of the 'X' icon */
    font-size: 2.5rem;
    color: var(--maroon-color);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    border-radius: 50%;
    /* Increased size of the button's background/hit area */
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-container .close-icon:hover {
    transform: rotate(180deg) scale(1.1);
}

.cart-icon {
    display: block;
    font-size: 1.5rem;
    margin-right: 10px;
}

.menu-icon {
    font-size: 2rem;
    display: block;
}

.call-icon {
    display: flex;
    font-size: 1.7rem;
    cursor: pointer;
    color: var(--maroon-color);
}
/*------------------------------------------------------------------------------------------*/










    /* Sections */
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .product-slider-section {
        padding: 60px 5%;
    }

    .product-slider-section h2,
    .products-grid h2,
   

    .scrolling-animation-section .scroll-text span {
        font-size: 2rem;
    }

     

    .grid-container {
    grid-template-columns: repeat(2, 1fr);
    }

    

    /* Floating Buttons */
    .scroll-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .whatsapp-icon {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 2.2rem;
    }
}



.categories-nav a,
.category-dropdown a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-dropdown > a::after {
    content: '>';
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.category-dropdown:hover > a::after {
    transform: rotate(90deg);
}

.category-dropdown .dropdown-content a::before {
    content: '>';
    font-size: 1em;
    font-weight: normal;
    margin-right: 5px;
    opacity: 0;
    transform: translateX(-5px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-dropdown .dropdown-content a:hover::before {
    opacity: 1;
    transform: translateX(0);
}@media (max-width: 992px) {
    /* ... your existing mobile styles ... */
    
    .hero-section {
        /* Make the hero section taller on mobile to give more space for content */
        height: 40vh; 
        background-size: cover;
        background-position: center;
    }

    .hero-content h1 {
        /* Decrease font size for better readability on small screens */
        font-size: 2.5rem;
        /* Reduce margin to fit content better */
        margin-bottom: 15px; 
    }

    .hero-content p {
        /* Adjust font size for the description */
        font-size: 1rem;
        /* Reduce the spacing below the paragraph */
        margin-bottom: 25px; 
    }

    .cta-button {
        /* Adjust padding for a smaller, more tappable button */
        padding: 12px 30px; 
        /* Decrease font size of the button text */
        font-size: 1rem; 
    }
.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  transform: translateX(-101%); /* Changed from -100% to -101% */
  transition: transform 0.4s ease-out;
  z-index: -1;
}

.cta-button:hover::after {
  transform: translateX(0);
}
    /* Add a subtle animation to the hero content on mobile */
    .hero-content {
        animation: mobileFadeIn 1s ease-out;
    }

    @keyframes mobileFadeIn {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* New Footer Styles */
.footer {
    background: var(--dark-grey);
    color: var(--white-color);
    padding: 60px 5%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-size: 1.5rem;
    color: var(--white-color);
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--maroon-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* About Column */
.about-col .footer-logo img {
    height: 160px;
    width: auto;
    
    margin-bottom: 15px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white-color);
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--maroon-color);
    transform: translateY(-5px);
}

/* Links Column */
.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 10px;
}

.links-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.links-col ul li a:hover {
    color: var(--maroon-color);
}

/* Contact Column */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--maroon-color);
}

.contact-item span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--maroon-color);
}

/* Newsletter Column */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--maroon-color);
    color: var(--white-color);
    border: none;
    padding: 12px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1.2rem;
}

.newsletter-form button:hover {
    background: #9a161d;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles for Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col {
        min-width: 100%;
        margin-bottom: 30px;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
    .contact-item {
        justify-content: center;
    }
    .newsletter-form {
        width: 100%;
    }
}


/* Content Banner Section - Left Image, Right Text */
.content-banner-section {
    padding: 80px 5%; /* Adds consistent padding */
}

.content-banner-container {
    display: flex;
    flex-direction: row; /* Default layout side-by-side */
    gap: 40px;
    align-items: center; /* Vertically aligns content */
    background-color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.banner-image-wrapper {
    flex: 1; /* Takes up one-half of the space */
}

.banner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container without distortion */
    display: block;
}

.banner-text-wrapper {
    flex: 1; /* Takes up the other half of the space */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-text-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.banner-text-wrapper p {
    font-size: 1.1rem;
    color: var(--dark-grey);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Make the section responsive */
@media (max-width: 992px) {
    .content-banner-container {
        flex-direction: column; /* Stacks the items on mobile */
        text-align: center;
    }

    .banner-text-wrapper {
        padding: 30px 20px;
    }

    .banner-text-wrapper h2 {
        font-size: 2rem;
    }

    .cta-button {
        margin: 0 auto; /* Centers the button on mobile */
    }
}
#cart-subtotal {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}


:root {
    --black-color: #000000;
    --maroon-color: #AD1A22;
    --white-color: #ffffff;
    --light-grey: #f0f0f0;
    --dark-grey: #333333;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--maroon-color);
    color: var(--white-color);
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}
 
/* --- Cart Icon and Count --- */
.cart-container {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cart-count {
    background-color: #AD1A22;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    font-weight: normal;
    position: absolute;
    top: -5px;
    right: -10px;
    min-width: 18px;
    text-align: center;
}

/* --- Cart Popup --- */
#cart-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    flex-direction: column;
    padding: 20px;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cart-header h3 {
    font-size: 1.5rem;
    color: #333333;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #AD1A22;
}

/* --- Cart Items --- */
#cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item p {
    margin: 0;
    font-size: 1rem;
    color: #333333;
}

#checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: #AD1A22;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#checkout-btn:hover {
    background-color: #8B151A; /* A slightly darker shade of maroon */
}

/* --- Mobile Styles --- */
@media (max-width: 600px) {
    #cart-popup {
        max-width: 100%;
        width: 100%;
    }
}


 .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--maroon-color);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
}.cart-button {
    /* Existing button styles... */
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* This is the class that will be added/removed by JavaScript */
.cart-button.animate {
    animation: pop-in 0.5s ease-out;
}

/* Define the animation keyframes */
@keyframes pop-in {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}/* Styling for the next-level error message */
.error-message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Gives the container space */
    text-align: center;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 50px auto;
    max-width: 800px;
}

.error-message-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.error-message-container p {
    font-size: 1.1rem;
    color: var(--dark-grey);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

.error-message-container .icon {
    font-size: 4rem;
    color: var(--maroon-color);
    margin-bottom: 20px;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* Optional: Button style for returning to the homepage */
.error-message-container .home-btn {
    display: inline-block;
    background: var(--maroon-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

.error-message-container .home-btn:hover {
    background: var(--dark-grey);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}