* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    padding-top: 50px;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #8B4513;
    --accent-color: #F5F5DC;
    --dark-color: #2c2c2c;
    --light-color: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #495057;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;

    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }


  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 5px #ff6b35b0, 0 0 10px #ff6b3580, 0 0 20px #ff6b3540; }
    50% { box-shadow: 0 0 10px #ff6b35, 0 0 20px #ff6b35a0, 0 0 40px #ff6b3580; }
  }
  .name-animation {
    animation: fadeInGlow 3s ease-in-out forwards;
  }
  @keyframes fadeInGlow {
    0% { opacity: 0; transform: translateY(10px); }
    50% { opacity: 0.8; }
    100% { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-in-down {
    animation: fade-in-down 0.8s ease-out forwards;
  }
  .animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
  }
  @keyframes fade-in-down {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.animate-scroll-left {
  animation: scroll-left 40s linear infinite;
}
.animate-scroll-right {
  animation: scroll-right 40s linear infinite;
}
.group:hover .animate-scroll-left,
.group:hover .animate-scroll-right {
  animation-play-state: paused;
}


/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* ================= CONTAINER ================= */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
   width: 100%;
   height: auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* ================= LOGO ================= */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 70px;
  width: auto;
}


.search-bar {
  flex: 1; 
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}

.search-bar input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-bar button {
  background: var(--primary-color, #333);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {

  .search-bar {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
  }
}

/* ================= NAV MENU ================= */
.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link,
.dropdown-toggle {
  text-decoration: none;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 15px;
  font-weight: 600;
  transition: color 0.3s;
}

/* Hover & Active states */
.nav-link:hover,
.dropdown-toggle:hover {
  color: #007bff;
}

.nav-link.active,
.nav-dropdown.active {
  color: #007bff;
}

.nav-link.active::after,
.nav-dropdown.active::after {
  content: '';
  display: block;
  height: 2px;
  background: #007bff;
  margin-top: 2px;
  
}

/* ================= DROPDOWNS ================= */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  z-index: 999;
  font-weight: 600;
  border-radius: 4px;
}

.dropdown-content a {
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  display: block;
}
.dropdown-content a:hover {
  background-color: #f0f0f0;
}

/* Desktop hover */
.nav-dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown arrow icon */
.dropdown-icon {
  transition: transform 0.3s ease;
}

.nav-dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-link {
  background: #ff6b35;
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background: #000000;
  transform: translateY(-2px);
}

/* ================= TOGGLE (HAMBURGER) ================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}
.nav-toggle:focus {
  outline: none;
  box-shadow: none;
}
.nav-toggle .bar {
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background-color: #ffffff;
    padding: 1rem 0;
    position: fixed;
    top: 80px;          
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: auto;    
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    font-size: 16px;
    padding: 12px 20px;

    color: #000000;
  }

  .dropdown-content {
    position: static;
    background: #ffffff;
    box-shadow: none;
  }

  .dropdown-content a {
    padding: 10px 20px;
    font-size: 15px;
    color: #000000;
  }

  .dropdown-content a:hover {
    background: #f0f0f0;
  }

  .whatsapp-link {
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 18px;
    width: fit-content;
    margin-left: 20px;
  }
}

.sendbtn {
  font-family: inherit;
  font-size: 20px;
  background: #ff6b35;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.sendbtn span {
  display: block;
  margin-left: 0.3em;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.sendbtn svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.sendbtn:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.sendbtn:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.sendbtn:hover span {
  transform: translateX(5em);
}

.sendbtn:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}


.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 24, 22, 0.3);
}
  /*
  ==========================================================================
    5. Animations (Fade In)   hero section
  ==========================================================================
*/

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

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

  /* Helper classes to trigger animations */
  .animate-fade-in-down {
    animation: fade-in-down 0.6s ease-out forwards;
  }

  .animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out forwards;
  }

  .home-hero-section.is-loading .home-hero-background {
    background-image: none !important;
    background-color: #101c22;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .home-hero-section:not(.is-loading) .home-hero-background {
    opacity: 1;
  }
  .home-hero-section.is-loading .home-hero-content {
    opacity: 0.8;
    transition: opacity 0.5s ease-in-out;
  }
  .home-hero-section:not(.is-loading) .home-hero-content {
    opacity: 1;
  }

[x-cloak] { 
  display: none !important; 
}
  .home-hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  .home-hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }

  .home-hero-content {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    /* p-4 */
    text-align: center;
    z-index: 10;
  }

  .home-hero-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* gap-6 */
    max-width: 56rem;
    /* max-w-4xl */
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-heading {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: #ffffff; 
  }

  .home-hero-heading span {
    color: #F57622;
  }

  .home-hero-subheading {
    font-size: 1rem;
    
    line-height: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 42rem;
  }

  .home-hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

.hero-link {
    font-size: 1rem;
    font-weight: 700; 
    color: #ffffff;
    background-color: #F57622;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
    box-shadow: 0 0 15px 0 rgba(245, 118, 34, 0.4);
  }

  .hero-link:hover {
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 25px 5px rgba(245, 118, 34, 0.6);
  }

  /* Responsive Styles */
  @media (min-width: 640px) {
    .home-hero-heading {
      font-size: 3rem;
      line-height: 1;
    }

    .home-hero-subheading {
      font-size: 1.125rem;
      line-height: 1.75rem;
    }
  }

  @media (min-width: 768px) {
    .home-hero-heading {
      font-size: 4.5rem;
      line-height: 1;
    }

    .home-hero-subheading {
      font-size: 1.25rem;
      line-height: 1.75rem;
    }
  }

.new-arrivals-banner {
  display: block;
  max-width: 1400px; 
  width: 100%; 
  height: auto;
  border-radius: 20px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 768px) {

  .new-arrivals-banner {
    width: 90vw; 
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: 100px;
  }
}

/* Banner Section */
.banner-sectionn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.banner-slide {
  display: none;      
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-slider {
  position: relative;
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  overflow: hidden;
}

.banner-slide.active {
  display: block;  
  position: relative;
}


.banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;

}

@media (max-width: 1024px) {
  .banner-slider {
    max-width: 100%;
     

  }
  .banner-image {
    height: auto;
    object-fit: cover;
  }
}
@media (max-width: 1280px) {
 .banner-slider {
    max-width: 100%;
     

  }
  .banner-image {
    height: auto;
    object-fit: cover;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .banner-image {
    height: auto;
    max-width: 100%;
    
  }
}

   /*
    ==========================================================================
     1. Base & Global Styles    shopping categories section
    ==========================================================================
    */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* Sets the icon font for the buttons */
    .material-symbols-outlined {
      font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
    }

    /*
    ==========================================================================
     2. Main Categories Section
    ==========================================================================
    */


    /* --- Basic Skeleton Styles (Reuse from previous example) --- */
.skeleton {
  background-color: #e0e0e0; /* Light grey */
  border-radius: 4px; /* Default */
  position: relative;
  overflow: hidden; /* Needed for animation */
}

/* Shimmer Animation (Reuse from previous example) */
.skeleton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  height: 100%;
  width: 150%;
  background: linear-gradient(to right, transparent 0%, #ededed 50%, transparent 100%);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* --- Specific Category Skeleton Styles --- */
.skeleton-image {
  /* Make it fill the image wrapper */
  width: 100%;
  height: 100%;
  border-radius: 50%; /* Match the circular image wrapper */
  position: absolute; /* Position it inside the wrapper */
  top: 0;
  left: 0;
}

.category-card-image-wrapper {
  position: relative; /* Needed to contain the absolute skeleton */
}


/* --- Controlling Visibility --- */

/* Initially hide the real image, show the skeleton */
.is-loading .category-card-image.REAL-CONTENT {
  opacity: 0; /* Use opacity for smoother transition */
  transition: opacity 0.3s ease-in-out;
}
.is-loading .skeleton-image {
  display: block; /* Show the skeleton */
  opacity: 1;
}

/* When loading is done, show the real image, hide the skeleton */
section:not(.is-loading) .category-card-image.REAL-CONTENT {
  opacity: 1; /* Fade in the real image */
}
section:not(.is-loading) .skeleton-image {
  display: none; /* Hide the skeleton */
}

/* --- Product Category Card Loading State --- */

/* Style the placeholder background */
#product-categories-section.is-loading .card-background {
  /* Hide the actual background image */
  background-image: none !important; /* Override inline style */
  
  /* Show a plain light grey placeholder */
  background-color: #e0e0e0; 
  
  /* Prepare for fade-in */
  opacity: 0; 
  transition: opacity 0.5s ease-in-out; 
}

/* When loading is finished, fade the background image in */
#product-categories-section:not(.is-loading) .card-background {
  opacity: 1;
}

/* Optional: Slightly dim the card content while image loads */
#product-categories-section.is-loading .card-content {
  opacity: 0.7;
  transition: opacity 0.5s ease-in-out;
}
#product-categories-section:not(.is-loading) .card-content {
  opacity: 1;
}

    .categories-container {
      width: 100%;
      max-width: 80rem; 
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;   
      padding-right: 1rem;  
      padding-top: 3rem;    
      padding-bottom: 3rem; 
    }

    /*
    ==========================================================================
     3. Category Row (Hardware, Kitchen, Paint)
    ==========================================================================
    */
    .category-row {
      margin-bottom: 4rem;
    }

    .category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem; 
    }

    .category-controls {
      display: flex;
      align-items: center;
    }
    
    .category-controls > * + * {
      margin-left: 1rem;
    }

    .category-view-all {
      color: #F57622; 
      font-weight: 600;
      text-decoration: none;
      display: none;
    }
    .category-view-all:hover {
      color: rgba(245, 118, 34, 0.8); 
    }

    .category-nav-buttons {
      display: flex;
      align-items: center;
    }
    .category-nav-buttons > * + * {
      margin-left: 0.5rem;
    }

    .category-scroll-btn {
      background-color: #ffffff;
      padding: 0.5rem; 
      border-radius: 100%;
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); 
      transition-property: background-color;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
      border: none;
      cursor: pointer;
      color: #000000;
    }

    .category-scroll-btn:hover {
      background-color: #eef0f5;
    }

    /*
    ==========================================================================
     4. Category Gallery & Cards
    ==========================================================================
    */
    .category-gallery-wrapper {
      position: relative;
    }

    .category-gallery-scroll {
      display: flex;
      overflow-x: auto;
      padding-bottom: 1rem; 
      margin-bottom: -1rem; 
      scroll-behavior: smooth;
      scrollbar-width: none;
    }
    .category-gallery-scroll::-webkit-scrollbar {
      display: none;
    }
    
    .category-gallery-scroll > * + * {
      margin-left: 1.5rem;
    }

    .category-card {
      position: relative;
      flex: none; 
      width: 12rem; 
      display: flex;
      flex-direction: column; 
      align-items: center;
      text-align: center;
      background-color: #ffffff; 
      padding: 1rem; 
      border-radius: 2rem;
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      transition-property: box-shadow;
      transition-duration: 300ms;
      border: 1px solid #e5e7eb; 
    }

    .category-card:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    }

    .category-card-image-wrapper {
      width: 8rem; 
      height: 8rem; 
      margin-bottom: 1rem;
      border-radius: 9999px;
      background-color: #f3f4f6;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .category-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition-property: transform;
      transition-duration: 300ms;
    }

    
    .category-card:hover .category-card-image {
      transform: scale(1.1);
    }

    .category-card-title {
      font-weight: 600; 
      color: #111827;
      margin-bottom: 0.5rem; 
      font-size: 1rem; 
      line-height: 1.1;
      height: 3rem; 
      display: flex;
      align-items: center;
    } 

    .category-card-link {
      margin-top: auto; 
      font-size: 0.875rem; 
      line-height: 1.25rem;
      font-weight: 500; 
      color: #F57622; 
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      padding-left: 1rem; 
      padding-right: 1rem;
      border-radius: 50rem;
      border: 1px solid rgba(245, 118, 34, 0.5); 
      text-decoration: none;
      transition-property: background-color;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }

    .category-card-link:hover {
      background-color: rgba(245, 118, 34, 0.1); 
    }

    /*
    ==========================================================================
     5. Responsive Styles
    ==========================================================================
    */

    @media (min-width: 640px) {
      .categories-container {
        padding-left: 1.5rem;  
        padding-right: 1.5rem; 
      }


      .category-view-all {
        display: block;
      }
    }
    @media (min-width: 1024px) {
      .categories-container {
        padding-left: 2rem;  
        padding-right: 2rem; 
      }
    }

  /* ---explore  General Layout and Typography --- */
     
        /* --- Header Styles --- */
        .header-content {
            max-width: 48rem; 
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            margin-bottom: 3rem; 
        }

        .header-title {
            font-size: 2.5rem;
            font-weight: 700; 
            letter-spacing: -0.025em;
            color: #3f3f46; 
            line-height: 1.1;
        }

        @media (min-width: 640px) {
            .header-title {
                font-size: 3rem; 
            }
        }

        .header-subtitle {
            margin-top: 1rem;
            font-size: 1.125rem;
            color: #52525b; 
            line-height: 1.75rem;
        }

        /* --- Grid Container (Responsive Layout) --- */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr)); 
            gap: 2rem; 
        }

        @media (min-width: 768px) { 
            .category-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)); 
            }
        }

        @media (min-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
  
        .category-car {
            position: relative;
            overflow: hidden;
            border-radius: 2rem; 
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.209), 0 4px 6px -4px rgba(0, 0, 0, 0.249);
            min-height: 10rem; 
            transition: all 0.3s ease;
        }
        
        /* Hover Effect */
        .category-car:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.37), 0 10px 10px -5px rgba(0, 0, 0, 0.324); 
        }

        /* Image/Background Placeholder */
        .card-background {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center; 
            transition: transform 0.5s ease-in-out;
            z-index: 1;
        }

        .category-car:hover .card-background {
            transform: scale(1.1); 
        }

        /* Gradient Overlay */
        .card-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
        }

        /* Content Area */
        .card-content {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            height: 100%; 
            padding: 1.5rem;
            justify-content: flex-end;
        }

        /* Title and Count Row */
        .content-row {
            display: flex;
            justify-content: space-between;
            align-items: center; 
        }

        .card-title {
            font-size: 1.875rem;
            font-weight: 700; 
            color: white; 
            letter-spacing: -0.025em; 
        }

        .product-count {
            background-color: rgba(255, 107, 53, 0.9); 
            color: white; 
            font-size: 0.75rem; 
            font-weight: 600; 
            padding: 0.1875rem 0.75rem; 
            border-radius: 9999px;
            letter-spacing: 0.025em; 
        }

        .card-description {
            color: #e4e4e7; 
            margin-top: 0.5rem; 
            font-size: 0.875rem; 
            font-weight: 400; 
        }

      
        .view-products-link {
            margin-top: 1.5rem; 
            opacity: 0; 
            transform: translateY(1rem); 
            transition: all 0.3s ease-in-out; 
        }

        .category-car:hover .view-products-link {
            opacity: 1;
            transform: translateY(0); 
        }

        .view-products-link span {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: #ff6b35; 
            color: white;
            font-weight: 600; 
            padding: 0.5rem 1rem;
            border-radius: 2rem; 
        }

 .why-choose-us-section {
            padding-top: 4rem;
            padding-bottom: 4rem;
            background-color: #f8f6f5;
            font-family: 'Work Sans', sans-serif;
            color: #181210; 
        }

        .container-wrapper {
            max-width: 80rem; 
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem; 
            padding-right: 1rem; 
        }

        /* --- Header Styles --- */
        .header-content {
            max-width: 48rem; 
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            margin-bottom: 3rem; 
        }


        .header-text {
            margin-top: 1rem;
            font-size: 1.125rem;
            color: #52525b; 
        }

        /* --- Grid Container (Responsive Layout) --- */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 2rem; /* gap-8 */
        }

        @media (min-width: 640px) { 
            .feature-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)); 
            }
        }

        @media (min-width: 1024px) { 
            .feature-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr)); 
            }
        }

        /* --- Feature Card Styles --- */
        .feature-card {
            background-color: #ffffff; 
            border: 1px solid #e5e7eb; 
            border-radius: 2rem;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.146), 0 2px 4px -2px rgba(0, 0, 0, 0.06); 
            transition: all 0.3s ease; 
        }

        /* Hover effects */
        .feature-card:hover {
            transform: translateY(-0.5rem); 
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.425), 0 10px 10px -5px rgba(0, 0, 0, 0.352); 
            border-color: #ff6b35; 
        }

        /* Icon Container */
        .feature-icon {
            color: #ff6b35; 
            transition: transform 0.3s ease; 
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1); 
        }
        
        /* Icon size from SVG attributes */
        .feature-icon svg {
            width: 3rem; 
            height: 3rem; 
        }

        .feature-title {
            font-size: 1.25rem; 
            font-weight: 700; 
            color: #3f3f46; 
            margin-top: 0.5rem;
        }

        .feature-description {
            margin-top: 0.5rem; 
            font-size: 1rem; 
            color: #52525b; 
        }



/* Container Styles */
    .video-series-container {
        max-width: 80rem; 
        margin-left: auto;
        margin-right: auto;
        padding: 4rem 1rem; 
    }

    /* Header Styles */
    .header-section {
        text-align: center;
        margin-bottom: 3rem; 
    }

    .header-subtitle {
        margin-top: 1rem;
        font-size: 1.125rem;
        color: #8d6a5e;
        line-height: 1.75rem;
    }

    /* Grid Layout (Desktop View) */
    .video-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem; 
    }

    @media (min-width: 1024px) { 
      .video-grid {
          grid-template-columns: repeat(3, 1fr);
      }
      .main-video-area {
          grid-column: span 2 / span 2; 
      }
      .video-list-container {
          display: block !important;
      }
    }

    /* **********************************************
      * THE REAL, COMPLETE FIX IS HERE
      **********************************************
    */
    
    /* 1. This creates the 16:9 container */
    .main-video-player {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        border-radius: 0.75rem;
        overflow: hidden;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); 
        background-color: rgb(169, 169, 169);
    }
    
    /* 2. This new rule makes the iframe fill that container */
    .video-iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    /* **********************************************
      * END OF FIX
      **********************************************
    */


    /* These rules are no longer needed */
    .play-button-overlay { display: none; }
    .play-button { display: none; }
    

    .main-video-details {
        margin-top: 1rem;
    }

    .main-video-title {
        font-size: 1.25rem; 
        font-weight: 700; 
        color: #181210;
    }

    .main-video-expert {
        font-size: 1rem;
        color: #8d6a5e;
    }

    /* Sidebar Video List Styles */
    .video-list-container {
        position: relative;
        height: 450px;
        overflow: hidden;
    }

    @media (min-width: 1024px) {
        .video-list-container {
            max-height: 500px;
            height: auto;
        }
    }

    .scrollable-video-list {
        display: flex;
        flex-direction: column;
        row-gap: 1rem;
        overflow-y: auto;
        height: 100%;
        padding-right: 0.5rem;
    }

    /* Video List Item Styles */
    .video-list-item {
        cursor: pointer;
    }

    .video-list-item-content {
        display: flex;
        align-items: center;
        column-gap: 1rem; 
        border-right: 4px solid #ff6b35;
        padding-right: 0.5rem;
    }

    .video-list-thumbnail {
        position: relative;
        width: 6rem;
        height: 4.5rem;
        flex-shrink: 0;
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        background-color: rgb(169, 169, 169);
        transition: transform 0.3s;
    }

    .video-list-item:hover .video-list-thumbnail {
        transform: scale(1.03);
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }

    .video-list-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .video-item-title {
        font-weight: 700; 
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #181210;
    }

    .video-item-expert {
        font-size: 0.75rem;
        color: #8d6a5e;
    }

    /* Custom Scrollbar Styles */
    .scrollable-video-list::-webkit-scrollbar {
        width: 8px;
    }
    .scrollable-video-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .scrollable-video-list::-webkit-scrollbar-thumb {
        background: #ff6b35;
        border-radius: 10px;
    }
    .scrollable-video-list::-webkit-scrollbar-thumb:hover {
        background: #e05a2d;
    }


    /* --- Custom Animation --- */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
    
        100% {
            transform: translateX(calc(-288px * 3));
        }
    }
    .animate-scroll {
        animation: scroll 20s linear infinite;
    }
    .group:hover .animate-scroll {
        animation-play-state: paused;
    }
        

        /* --- General Layout and Typography --- */
        .testimonials-container {
            max-width: 120rem;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem; 
            padding-right: 1rem;
        }

        @media (min-width: 640px) { 
            .testimonials-container {
                padding-left: 1.5rem; 
                padding-right: 1.5rem;
            }
        }

        @media (min-width: 1024px) { 
            .testimonials-container {
                padding-left: 2rem; 
                padding-right: 2rem;
            }
        }

        /* --- Header Styles --- */
        .header-content {
            max-width: 48rem; 
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            margin-bottom: 3rem; 
        }


        .header-subtitle {
            margin-top: 1rem;
            font-size: 1.125rem;
            color: #52525b; 
            line-height: 1.75rem;
        }

        /* --- Carousel Structure --- */
        .carousel-wrapper {
            margin-top: 5rem; 
        }

        .carousel-overflow {
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            width: max-content;
        }

        /* --- Testimonial Card Styles --- */
        .testimonial-item-wrapper {
            width: 18rem; 
            flex-shrink: 0;
            padding: 1rem;
        }

        .testimonial-card {
            border-radius: 2rem; 
            background-color: #ffffff; 
            padding: 1.5rem; 
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.206), 0 4px 6px -4px rgba(0, 0, 0, 0.1); 
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .user-info {
            display: flex;
            align-items: center;
            column-gap: 1rem; 
            margin-bottom: 1rem;
        }

        .user-avatar {
            height: 4rem; /* h-16 */
            width: 4rem; /* w-16 */
            border-radius: 9999px; /* rounded-full */
            object-fit: cover;
        }

        .user-name {
            font-size: 1.125rem;
            font-weight: 700; 
            color: #111827;
        }

        .star-rating {
            display: flex;
            align-items: center;
            color: #ff6b35; 
        }

        .star-rating span {
            font-size: 1.25rem; 
        }

        .testimonial-quote {
            color: #4b5563; /* text-gray-600 */
            font-style: italic;
        }

        /* --- Button Style --- */
        .review-button {
            margin-top: 4rem; /* mt-16 */
            text-align: center;
        }
        
        .review-button a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 2rem; /* px-8 py-3 */
            border: 1px solid transparent;
            font-size: 1rem; 
            font-weight: 500; /* font-medium */
            border-radius: 0.5rem; /* rounded-lg */
            color: white;
            background-color: #ff6b35; /* bg-primary */
            transition: background-color 0.15s ease;
            text-decoration: none;
        }

        .review-button a:hover {
            background-color: rgba(255, 107, 53, 0.9); /* hover:bg-primary/90 */
        }

          /* --- General Layout and Typography --- */
        .gallery-section-wrapper {
            width: 100%; /* w-full */
            padding-top: 4rem; /* py-16 */
            padding-bottom: 4rem; /* py-16 */
        }

        @media (min-width: 640px) {
            .gallery-section-wrapper {
                padding-top: 6rem; /* sm:py-24 */
                padding-bottom: 6rem;
            }
        }

        .header-container {
            max-width: 80rem; 
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem;
        }

        @media (min-width: 1024px) {
            .header-container {
                padding-left: 2rem; 
                padding-right: 2rem;
            }
        }

        .header-content {
            max-width: 48rem; 
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            margin-bottom: 3rem; 
        }



        .header-subtitle {
            margin-top: 1rem;
            font-size: 1.125rem;
            color: #52525b; 
        }

        /* --- Carousel Animations --- */

        /* Animation for Row 1 (Leftward scroll) */
        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-2560px); 
            }
        }

        .animate-scroll-left {
            animation: scroll-left 40s linear infinite;
        }
        
        /* Animation for Row 2 (Rightward scroll) */
        @keyframes scroll-right {
            0% {
                transform: translateX(-2560px); 
            }
            100% {
                transform: translateX(0);
            }
        }

        .animate-scroll-right {
            animation: scroll-right 40s linear infinite;
        }

        /* Pause animation on hover */
        .gallery-row-wrapper:hover .animate-scroll-left,
        .gallery-row-wrapper:hover .animate-scroll-right {
            animation-play-state: paused;
        }

        /* --- Carousel Row Structure --- */
        .gallery-row-wrapper {
            margin-top: 3rem; /* mt-12 or mt-6 */
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .gallery-track {
            display: flex;
            width: max-content; /* w-max */
        }

        .image-group {
            display: flex;
            column-gap: 1.5rem;
            padding-left: 0.75rem;
            padding-right: 0.75rem; 
            flex-shrink: 0; 
        }

        /* --- Individual Image Card Styles --- */
        .image-card {
            position: relative;
            width: 20rem;
            height: 13rem; 
            flex-shrink: 0;
            cursor: pointer;
            overflow: hidden;
            border-radius: 0.75rem; 
        }

        .image-card img {
            height: 100%; 
            width: 100%; 
            object-fit: cover;
        }

        /* --- Gradient Fade Edges --- */
        .gradient-fade {
            position: absolute;
            inset: 0;
            pointer-events: none;
            /* Adjusted for more fade: transparent section is smaller (from 20-80% to 30-70%) */
            background-image: linear-gradient(to right, #f8f6f57c 0%, #f8f6f587 15%, transparent 35%, transparent 65%, #f8f6f59d 85%, #f8f6f587 100%);
        }

.embla {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 50px;
    height: 150px;
     background: #f7f7f7;
}

.embla__viewport {
    overflow: hidden;
    width: 100%;
}

.embla__container {
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
}

.embla__slide {
    flex: 0 0 auto;
    width: 250px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    gap: 40px;
}


.embla__slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.embla__slide:hover img {
    transform: scale(1.4);
    filter: brightness(1.5); /* Makes logo pop */
}

@media screen and (max-width: 768px) {
    .embla__slide {
        width: 150px;
        margin-right: 15px; /* Adjust for mobile */
        justify-content: center;
    align-items: center;
  
    }
}

/* Social Media Icons */

.wrapper {
  display: inline-flex;
  list-style: none;
    bottom: 30px;
    right: 30px;
  
  
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.345);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #a4ea63;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}
.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #ff0000;
    color: #fff;
}

/* --- Modern Scroll Buttons --- */

.scroll-btn {
  background-color: #ffffff; /* Clean white background */
  border: none; /* Remove the old border */
  border-radius: 50%;
  width: 40px;  /* Slightly larger for an easier click */
  height: 40px;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 50%; /* Better vertical centering */
  z-index: 10;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Soft shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scroll-btn:hover {
  transform: translateY(-50%) scale(1.1); /* Slight zoom on hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* This styles the SVG icon inside the button */
.scroll-btn svg {
  fill: #333333; /* Dark icon color for contrast */
  width: 24px;
  height: 24px;
}

.scroll-btn.left {
  left: 10px; /* Give it some space from the edge */
}

.scroll-btn.right {
  right: 10px; /* Give it some space from the edge */
}

.instagram-reels {
  padding: 60px 10px;
 background: #f7f7f7;
}
.reels-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}


.reels-row {
  display: flex;
  overflow-x: auto;
  gap: 20px; /* Space between the reels */
  padding: 10px 0; 
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;  /* Hides scrollbar (IE/Edge) */
  scrollbar-width: none;     /* Hides scrollbar (Firefox) */
}
.reels-row::-webkit-scrollbar {
  display: none; /* Hides scrollbar (Chrome/Safari) */
}

/* This is the new card for the iframe */
.reel-card-wrapper { 
  flex: 0 0 300px; /* Set width of each card */
  border-radius: 2rem;
  overflow: hidden; /* Clips the iframe to be rounded */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  height: 470px; /* Set height of each card */ 
}

/* This styles the iframe itself */
.reel-iframe {
  width: 100%; 
  height: 100%;
  border: none;
}


.reels-row blockquote.instagram-media {
  flex: 0 0 auto;
  width: 240px;
}

@media (max-width: 768px) {
  .reels-row blockquote.instagram-media {
    width: 200px;
  }

  .instagram-reels {
    
    text-align: center;
  }

  .instagram-reels .section-subtitle {
    
    text-align: center;
  }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
     font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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


.footer-section ul li {
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 0.5rem;
     align-items: center; 
}

/* Targets the SVG icon within the list item */
.footer-section ul li svg {
    margin-right: 2px; 
    height: 1.2em; /* Increase the size of the SVG */
    width: 1.2; /* Keep it proportional */
    flex-shrink: 0; /* Prevents the SVG from shrinking on smaller screens */
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

/* This targets the <p> elements that contain the SVGs and text in your Contact Info section */
.footer-section p {
    display: flex;
    align-items: center; /* This is the key property */
    margin-bottom: 0.5rem;
}

/* This targets the SVG icons specifically */
.footer-section p svg {
    margin-right: 10px; /* Adds space between the icon and the text */
    height: 1.2em; /* Ensures the SVG's height matches the text line height */
    width: 1.2em;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Contact Page Styles */
.contact-main {
    padding-top: 0rem;
}

.contact-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffffff 100%);
    padding: 4rem 0;
    text-align: center;
}

.contact-content {
    padding: 5rem 0;
   background: #f7f7f7;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.contact-text strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
}


@media (max-width: 480px) {
    .ifrabig{
        height: 500px;
        width: 100%;
    }
    .iframe {
        height: 400px;
        width: 100%;
        border-radius: 8px;
    }
}

.contact-form-card {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-layout {
  display: grid;
  grid-template-columns: 3fr 3fr;
  gap: 4rem;
  align-items: center;
}

.form-image img {
  max-width: 100%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-image {
    text-align: center;
    margin-bottom: 1rem;
  }

  .form-image img {
    width: 100%;
    height: auto;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }


    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-actions {
        flex-direction: column;
    }
    
    .reels-container {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 1rem;
    }


    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer {
        width: 100vw;
        max-width: 100vw;
        padding: 2rem 1rem 1rem;
        font-size: 0.95rem;
        
        box-sizing: border-box;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 0.5rem;
    }
}

/* Performance Optimizations */
.product-image,
.hero-image img,
.category-card img,
.about-image img,
.main-image {
    will-change: transform;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card,
.feature-card,
.testimonial-card,
.product-card {
    animation: fadeInUp 0.6s ease-out;
}
