@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap'); /*latest collection*/

    :root {
      --clr-primary: #111827;
      --clr-secondary: #4b5563;
      --clr-bg: #ffffff;
      --clr-border: #e5e7eb;
      --clr-shadow: rgba(0,0,0,0.06);
      --clr-hover-bg: #f9fafb;
      --transition-fast: 0.25s ease-in-out;
      --radius: 0.75rem;
      --sidebar-width: 100%;
      
    }

    * {
      box-sizing: border-box;
      top: 0;
    }
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: var(--clr-bg);
      color: var(--clr-secondary);
      font-size: 16px;
      line-height: 1.5;
      overflow-x: hidden;
     padding-top: 0 !important; /* Remove any body to p padding */
    }

    a {
      color: var(--clr-primary);
      text-decoration: none;
      transition: color var(--transition-fast);
    }
    a:hover,
    a:focus {
      color: #1f2937;
      outline: none;
    }

    /* Container max width */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Sticky header nav */
    header {
      position: relative;
      top: 0;
      background: var(--clr-bg);
      border-bottom: 1px solid var(--clr-border);
      z-index: 1001;
      margin-top: 0; /* Remove any top margin */
    }
    .top-nav-1 {
      background: linear-gradient(to right, #94bfde, #3a5673);
      height: 50px;
      margin-top: 0 !important; /* Ensure no margin on top */
    }

    .top-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
    }

    .logo {
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--clr-primary);
      user-select: none;
    }

    nav.login-nav a {
      font-weight: 600;
      font-size: 0.95rem;
      padding: 0.375rem 0.75rem;
      border-radius: var(--radius);
      border: 1.5px solid transparent;
      transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    }
    nav.login-nav a:hover,
    nav.login-nav a:focus {
      background-color: var(--clr-primary);
      color: #fff;
      border-color: var(--clr-primary);
      outline: none;
    }

    /* Hamburger toggle */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 4px;
      width: 24px;
      height: 20px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      z-index: 1101;
    }
    .hamburger span {
      display: block;
      height: 3px;
      background: var(--clr-primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    .hamburger[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(8.5px) rotate(45deg);
    }
    .hamburger[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
    .hamburger[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-8.5px) rotate(-45deg);
    }

    /* Search bar */
    .search-bar {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--clr-border);
      background: var(--clr-bg);
    }
    .search-bar form {
      max-width: 600px;
      margin: 0 auto;
    }
    .search-bar input[type="search"] {
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      border: 1.5px solid var(--clr-border);
      border-radius: var(--radius);
      transition: border-color var(--transition-fast);
    }
    .search-bar input[type="search"]:focus {
      border-color: var(--clr-primary);
      outline: none;
    }

    /* Category panel - desktop */
    .category-panel {
      padding: 1rem 0;
      border-bottom: 1px solid var(--clr-border);
      background: var(--clr-bg);
    }

    .category-list {
      display: flex;
      justify-content: center;
      gap: 2rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .category-list li {
      position: relative;
    }

    .category-list button {
      background: none;
      border: none;
      font-weight: 600;
      font-size: 1rem;
      color: var(--clr-primary);
      cursor: pointer;
      padding: 0.25rem 0;
      border-radius: var(--radius);
      transition: background-color var(--transition-fast);
    }
    .category-list button:hover,
    .category-list button:focus {
      background-color: var(--clr-hover-bg);
      outline: none;
    }

    /* Dropdown modal for categories - desktop */
.dropdown-modal {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-bg);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px var(--clr-shadow);
  border: 1px solid var(--clr-border);
  width: 640px;
  max-width: 90vw;
  padding: 1.5rem;
  display: none; /* Hidden by default */
  z-index: 1500;
}
.dropdown-modal.active {
  display: grid; /* This makes BOTH subcategories AND products visible */
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

/* Improved responsive behavior */
@media (max-width: 768px) {
  .dropdown-modal {
    width: 90%;
    left: auto;
    right: 0;
    transform: none;
  }
}

    /* Ensure subcategory list is always visible when dropdown is active */
    .subcategory-list {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    .subcategory-list li {
      margin-bottom: 0.75rem;
    }
    .subcategory-list li a {
      color: var(--clr-secondary);
      font-weight: 600;
      font-size: 0.95rem;
      transition: color var(--transition-fast);
    }
    .subcategory-list li a:hover,
    .subcategory-list li a:focus {
      color: var(--clr-primary);
      outline: none;
    }

    .product-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
      gap: 1rem;
    }
    .product-card {
      background: var(--clr-hover-bg);
      border-radius: var(--radius);
      box-shadow: 0 4px 8px var(--clr-shadow);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
    }
    .product-card:hover,
    .product-card:focus-within {
      transform: translateY(-4px);
      box-shadow: 0 6px 14px var(--clr-shadow);
      outline: none;
    }
    .product-card img {
      width: 100%;
      height: 100px;
      object-fit: contain;
      margin-bottom: 0.75rem;
    }
    .product-card h4 {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--clr-primary);
      margin: 0;
      text-align: center;
    }

    /* Accessibility: hide visually but keep accessible */
    .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }


    /* Mobile sidebar styles with slide animation */
    .sidebar-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 1400;
      display: none;
    }
    .sidebar-overlay.active {
      opacity: 1;
      pointer-events: auto;
      display: block;
    }
    .sidebar {
      position: fixed;
      top: 0;
      left: 0;
      width: var(--sidebar-width);
      height: 100vh;
      background: var(--clr-bg);
      border-right: 1px solid var(--clr-border);
      box-shadow: 4px 0 12px var(--clr-shadow);
      display: flex;
      flex-direction: column;
      padding: 1rem 1rem 2rem 1rem;
      transform: translateX(-100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1500;
      will-change: transform;
      /* Do not use display:none because we want animation */
    }
    .sidebar.active {
      transform: translateX(0);
      display: flex;
    }

    .sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }
    .sidebar-header h2 {
      font-weight: 700;
      font-size: 1.25rem;
      margin: 0;
      color: var(--clr-primary);
    }
    .sidebar-close {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--clr-secondary);
      transition: color var(--transition-fast);
      padding: 0;
      line-height: 1;
    }
    .sidebar-close:hover,
    .sidebar-close:focus {
      color: var(--clr-primary);
      outline: none;
    }

    /* Sidebar category list */
    .sidebar-category-list {
      list-style: none;
      padding: 0;
      margin: 0;
      overflow-y: auto;
      flex-grow: 1;
    }
    .sidebar-category-item {
      border-bottom: 1px solid var(--clr-border);
    }
    .sidebar-category-button {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      padding: 0.75rem 0;
      font-weight: 600;
      font-size: 1rem;
      color: var(--clr-primary);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color var(--transition-fast);
    }
    .sidebar-category-button:hover,
    .sidebar-category-button:focus {
      background-color: var(--clr-hover-bg);
      outline: none;
    }
    .sidebar-category-button .arrow {
      border: solid var(--clr-primary);
      border-width: 0 2px 2px 0;
      display: inline-block;
      padding: 4px;
      transform: rotate(45deg);
      transition: transform 0.3s ease;
    }
    .sidebar-category-button[aria-expanded="true"] .arrow {
      transform: rotate(-135deg);
    }

    /* Sidebar subcategory list */
    .sidebar-subcategory-list {
      list-style: none;
      padding-left: 1rem;
      margin: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .sidebar-subcategory-list.expanded {
      max-height: 1000px; /* large enough to show all */
    }
    .sidebar-subcategory-list li {
      padding: 0.4rem 0;
    }
    .sidebar-subcategory-list a {
      color: var(--clr-secondary);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: color var(--transition-fast);
      display: block;
    }
    .sidebar-subcategory-list a:hover,
    .sidebar-subcategory-list a:focus {
      color: var(--clr-primary);
      outline: none;
    }

    /* Sidebar product cards */
    .sidebar-product-cards {
      display: grid;
      grid-template-columns: repeat(auto-fill,minmax(120px,1fr));
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .sidebar-product-card {
      background: var(--clr-hover-bg);
      border-radius: var(--radius);
      box-shadow: 0 4px 8px var(--clr-shadow);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0.75rem;
    }
    .sidebar-product-card:hover,
    .sidebar-product-card:focus-within {
      transform: translateY(-4px);
      box-shadow: 0 6px 14px var(--clr-shadow);
      outline: none;
    }
    .sidebar-product-card img {
      width: 100%;
      height: 80px;
      object-fit: contain;
      margin-bottom: 0.5rem;
    }
    .sidebar-product-card h4 {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--clr-primary);
      margin: 0;
      text-align: center;
    }
    

    /* Hide desktop dropdown modal and category panel on mobile */
    @media (max-width: 768px) {
      .category-panel {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .hide-mobile {
        display: none;
      }
    }

    /* Ensure sidebar and overlay hidden on desktop */
    @media (min-width: 769px) {
      .sidebar,
      .sidebar-overlay {
        display: none !important;
      }
    }

    /* hero section */

    * slider img css */
.slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.slider-button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
.slider-button:hover {
    background-color: rgba(255, 255, 255, 1);
}
    /* category panel section */
    :root {
    --hwcat-card-bg: #ffffff;
    --hwcat-text-color: #374151;
    --hwcat-text-secondary: #6b7280;
    --hwcat-shadow-color: rgba(0, 0, 0, 0.05);
    --hwcat-border-radius: 0.75rem; /* 12px */
    --hwcat-scrollbar-bg: #f3f4f6;
    --hwcat-scrollbar-thumb: #cbd5e1;
  }
    .hwcat-wrapper {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: var(--hwcat-text-color);
    padding: 64px 24px 80px;
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  .hwcat-container {
    max-width: 1500px;
    width: 100%;
  }

  .hwcat-heading {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 48px;
    color: #111827;
    user-select: none;
  }

  .hwcat-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.25rem; /* 20px */
    scroll-padding: 1rem 0;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--hwcat-scrollbar-thumb) var(--hwcat-scrollbar-bg);
  }

  /* Webkit scrollbar */
  .hwcat-scroll::-webkit-scrollbar {
    height: 8px;
  }
  .hwcat-scroll::-webkit-scrollbar-track {
    background: var(--hwcat-scrollbar-bg);
    border-radius: 0.5rem;
  }
  .hwcat-scroll::-webkit-scrollbar-thumb {
    background-color: var(--hwcat-scrollbar-thumb);
    border-radius: 0.5rem;
  }

  .hwcat-card {
    background-color: var(--hwcat-card-bg);
    flex: 0 0 140px;
    border-radius: var(--hwcat-border-radius);
    box-shadow: 0 1.5px 6px var(--hwcat-shadow-color);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    user-select: none;
    scroll-snap-align: start;
  }

  .hwcat-card:hover,
  .hwcat-card:focus-visible {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    outline: none;
  }

  .hwcat-image {
    width: 130px;
    height: 130px;
    border-radius: 30px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
  }

  .hwcat-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--hwcat-text-color);
    text-align: center;
    line-height: 1.2;
  }

  /* Responsive */

  @media (max-width: 768px) {
    .hwcat-wrapper {
      padding: 48px 16px 64px;
    }
    .hwcat-container {
      max-width: 100%;
    }
    .hwcat-heading {
      font-size: 2.25rem;
      margin-bottom: 32px;
    }
    .hwcat-card {
      flex: 0 0 120px;
      padding: 0.75rem;
    }
    .hwcat-image {
      width: 64px;
      height: 64px;
      margin-bottom: 0.5rem;
    }
  }

  @media (max-width: 480px) {
    .hwcat-card {
      flex: 0 0 100px;
      padding: 0.5rem;
    }
    .hwcat-image {
      width: 56px;
      height: 56px;
      margin-bottom: 0.4rem;
    }
    .hwcat-name {
      font-size: 0.9rem;
    }
  }

    /* category panel section ends */
    
    /*top product section*/
    
    /*top product section ends*/
    

  

    /* latest collection css  */



    :root {
      --color-bg: #ffffff;
      --color-primary: #111827;
      --color-gray-500: #6b7280;
      --border-radius: 0.75rem;
      --spacing-lg: 4rem;
      --spacing-md: 2rem;
      --spacing-sm: 1rem;
      --card-width: 340px;
      --card-height: 460px; /* increased height for small photos */
      --small-card-size: 120px;
      --small-photo-size: 64px; /* size for the new small photos inside big card */
      --small-card-spacing: 0.75rem;
      --shadow-light: rgba(0,0,0,0.05);
      --shadow-hover: rgba(0,0,0,0.12);
    }

    /* Reset & base */


    main.container {
      max-width: 1500px;
      margin: 0;
      margin-top: 10px !important; /* Remove any top margin */
      padding: var(--spacing-lg) var(--spacing-md) var(--spacing-lg);
      display: flex;
      flex-direction: column;
      gap: var(--spacing-lg);
    }

    h1.section-title {
    font-size: 48px; /* Adjust font size as needed */
    font-weight: bold; /* Optional: make the text bold */
    font-family: 'Inter', sans-serif; /* Use a modern sans-serif font */
    background-image: linear-gradient(to right, #e86868, #471d40); /* Define your gradient colors */
    -webkit-background-clip: text; /* Clip the background to the text */
    background-clip: text; /* For non-webkit browsers */
    color: transparent; /* Make the text color transparent */
    margin: 10px;
    text-align: center;
    }

    /* Slider wrapper */
    .collection-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    /* Horizontal scroll container */
    .slider-track {
      display: flex;
      gap: var(--spacing-md);
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 1rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    /* Scrollbar styling */
    .slider-track::-webkit-scrollbar {
      height: 8px;
    }
    .slider-track::-webkit-scrollbar-track {
      background: transparent;
    }
    .slider-track::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.1);
      border-radius: 4px;
    }

    /* Collection card with background image */
    .collection-card {
      flex: 0 0 var(--card-width);
      height: var(--card-height);
      position: relative;
      border-radius: var(--border-radius);
      box-shadow: 0 8px 20px var(--shadow-light);
      overflow: hidden;
      scroll-snap-align: start;
      background-size: cover;
      background-position: center;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: flex-end; /* content at bottom */
      padding: var(--spacing-md);
      cursor: pointer;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      user-select: none;
      gap: var(--spacing-sm);
    }
    .collection-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
      border-radius: var(--border-radius);
      pointer-events: none;
      z-index: 0;
    }
    .collection-card:hover,
    .collection-card:focus-visible {
      box-shadow: 0 16px 40px var(--shadow-hover);
      transform: translateY(-8px);
      outline: none;
    }

    /* Overlay content container */
    .collection-content {
      position: relative;
      z-index: 1;
      display: flex;
      gap: var(--small-card-spacing);
      justify-content: center;
    }

    /* Small product cards container */
    .small-product-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--small-card-spacing);
      width: 100%;
    }

    /* Small product card revised to square, no price or name */
    .small-product-card {
      background: rgba(255 255 255 / 0.9);
      border-radius: var(--border-radius);
      box-shadow: 0 4px 8px var(--shadow-light);
      cursor: pointer;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      aspect-ratio: 1 / 1; /* square */
      overflow: hidden;
      user-select: none;
      position: relative;
    }

    .small-product-card:hover,
    .small-product-card:focus-visible {
      box-shadow: 0 8px 20px var(--shadow-hover);
      transform: translateY(-4px);
      outline: none;
    }

    .small-product-image {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      border-radius: var(--border-radius);
      will-change: transform;
      transition: transform 0.3s ease;
    }
    .small-product-card:hover .small-product-image,
    .small-product-card:focus-visible .small-product-image {
      transform: scale(1.05);
    }

    /* New row for just product photos at bottom of big card */
    .small-photos-row {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 0.75rem;
      position: relative;
      z-index: 1;
    }

    .small-photo {
      width: var(--small-photo-size);
      height: var(--small-photo-size);
      border-radius: 0.5rem;
      box-shadow: 0 3px 8px var(--shadow-light);
      background-size: cover;
      background-position: center;
      cursor: pointer;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      user-select: none;
      flex-shrink: 0;
    }

    .small-photo:hover,
    .small-photo:focus-visible {
      box-shadow: 0 8px 20px var(--shadow-hover);
      transform: scale(1.1);
      outline: none;
    }

    /* Accessibility focus */
    a, button, .collection-card, .small-product-card, .small-photo {
      outline-offset: 3px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      main.container {
        max-width: 90vw;
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
      }
      .collection-card {
        flex: 0 0 280px;
        height: 440px; /* adjusted for photo row */
      }
    }

    @media (max-width: 640px) {
      .collection-card {
        flex: 0 0 260px;
        height: 410px; /* adjusted */
      }
      .small-product-cards {
        grid-template-columns: repeat(2, 1fr);
      }
      .small-photos-row {
        gap: 0.75rem;
      }
      .small-photo {
        width: 56px;
        height: 56px;
      }
    }
    @media (max-width: 400px) {
      .collection-card {
        flex: 0 0 220px;
        height: 370px; /* adjusted */
      }
      .small-product-cards {
        grid-template-columns: 1fr;
      }
      .small-photos-row {
        gap: 0.5rem;
      }
      .small-photo {
        width: 48px;
        height: 48px;
      }
      .kitchen-main-img {
       height: 500px !important; /* Adjusted height for smaller screens */
  }
    }

    @media (max-width: 768px) {
      .kitchen-ui-hero {
        height: 400px;
        min-height: 220px;
      }
      .kitchen-main-img {
        height: 400px;
        min-height: 400px;
        max-height: 430px;
        object-fit: cover;
        border-radius: 0!important; /* Ensure no border radius */
      }
    }

/* latest collection css ends */

/* kitchen product css */
   /* Recommended product css - updated for horizontal scroll following default design guidelines */
.product-container {
    display: flex; /* flex instead of grid for horizontal scroll */
    overflow-x: auto; /* horizontal scroll enabled */
    gap: 1rem; /* spacing between cards */
    padding: 1rem 1.5rem; /* generous padding */
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #ffffff; /* light background */
    border-radius: 0.75rem; /* subtle rounded corners */
    scroll-snap-type: x mandatory; /* scroll snap */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    z-index: 0;
}

/* Hide scrollbar if you want cleaner look (optional) */
/* Uncomment below to hide scrollbar */
/*
.product-container::-webkit-scrollbar {
    display: none;
}
.product-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
*/

.product-card-k {
    flex: 0 0 auto;
    width: 280px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 400px;
    scroll-snap-align: start;
    border-radius: 0.75rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    user-select: none;
}

.product-card-k:hover,
.product-card-k:focus-within {
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    transform: translateY(-6px);
    outline: none;
}

.product-card-k img {
    flex-shrink: 0;
    width: 100%;
    height: 224px; /* fixed height (about 56% of card height to balance layout) */
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    object-fit: cover;
}

.product-card-k h2 {
    font-size: 20px;
    font-family: "Inter", sans-serif; /* elegant modern font */
    color: #111827; /* dark primary text */
    padding-left: 10px;
    margin: 0.5rem 0 0 0;
    font-weight: 700;
}

.product-card-k h6 {
    text-decoration: line-through;
    color: #6b7280; /* neutral gray */
    font-family: "Inter", sans-serif;
    padding-left: 10px;
    margin: 0;
    font-weight: 500;
}

.product-card-k p {
    font-size: 14px;
    color: #6b7280; /* neutral gray */
    padding-left: 10px;
    font-family: "Inter", sans-serif;
    margin: 0.25rem 0 0 0;
    flex-grow: 1;
}

.add-cart-button {
    background: linear-gradient(60deg, #45796d, #6db8c6);
    padding: 10px 20px;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    display: grid;
    place-content: center;
    text-decoration: none;
    color: #111827;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    text-align: center;
    margin: 1rem 10px 10px 10px;
    transition: background-color 0.3s ease;
    user-select: none;
    flex-shrink: 0; /* prevent button from shrinking */
}

.add-cart-button:hover,
.add-cart-button:focus {
    background: linear-gradient(60deg, #81c4e1, #4daeef);
    outline: none;
}

.product-card-k a {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.product-details {
    padding: 0 16px;
    flex-grow: 1; /* take remaining space between image and button */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
}

@media(max-width: 800px){ 
    .product-container {
        padding: 1rem;
    }
}

@media(max-width: 480px){
    .product-container {
        gap: 0.75rem;
        margin-left: 5px;
        margin-right: 5px;
    }
    .product-card-k {
        width: 220px;
        height: auto;
    }
    .product-details {
        text-align: center;
        height: auto;
    }
    .product-card-k:hover {
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        transform: translateY(-3px);
    }
    .header-h1 {
      font-size: 14px;
    }
}


/* why us css */
.why-us {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: #5F9EA0;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            gap: 30px;
            padding: 0 20px;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            width: 350px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: #5F9EA0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 32px;
            box-shadow: 0 10px 20px rgba(95, 158, 160, 0.3);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .feature-card p {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .feature-card:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #5F9EA0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
            z-index: -1;
        }
        
        .feature-card:hover:after {
            transform: scaleX(1);
        }
        
        .stats-section {
            background: #5F9EA0;
            padding: 60px 0;
            margin-top: 80px;
            color: white;
            text-align: center;
        }
        
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .highlight-bar {
            height: 10px;
            background: repeating-linear-gradient(
                -45deg,
                rgba(95, 158, 160, 0.3),
                rgba(95, 158, 160, 0.3) 10px,
                rgba(95, 158, 160, 0.15) 10px,
                rgba(95, 158, 160, 0.15) 20px
            );
            margin: 40px 0;
        }
        
        /* Animation Effects */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-feature {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .features-container {
                gap: 25px;
            }
            
            .feature-card {
                width: 300px;
            }
        }
        
        @media (max-width: 992px) {
            .why-us {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .feature-card {
                width: calc(50% - 20px);
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .feature-card {
                width: 100%;
                max-width: 400px;
            }
            
            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
            
            .feature-card h3 {
                font-size: 1.3rem;
            }
            
            .stats-container {
                flex-direction: column;
            }
            
            .stat-item {
                margin-bottom: 30px;
            }
            
            .stat-item:last-child {
                margin-bottom: 0;
            }
        }
        
        @media (max-width: 480px) {
            .why-us {
                padding: 50px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
                margin-bottom: 20px;
            }
        }
/* why us css ends */

/* location style */
 .business-loc-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa;
            line-height: 1.6;
        }
        
        .business-loc-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        .business-loc-outer {
            max-width: 1500px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        .business-loc-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e1e5eb;
        }
        
        .business-loc-header h1 {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .business-loc-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .business-loc-main {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        
        .business-loc-mapbox {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .business-loc-map {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }
        
        .business-loc-details {
            flex: 1;
            min-width: 300px;
            padding: 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #f9fafc;
        }
        
        .business-loc-details h2 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        
        .business-loc-details h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #2f6f85;
        }
        
        .business-loc-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 22px;
        }
        
        .business-loc-icon {
            margin-right: 18px;
            color: #39687b;
            font-size: 1.4rem;
            min-width: 24px;
            text-align: center;
            padding-top: 3px;
        }
        
        .business-loc-text h3 {
            margin: 0 0 6px 0;
            font-size: 1.15rem;
            color: #34495e;
            font-weight: 500;
        }
        
        .business-loc-text p {
            margin: 0;
            color: #555;
            line-height: 1.5;
        }
        
        .business-loc-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
           background: linear-gradient(135deg, #5F9EA0, #06b6d4);
            color: white;
            padding: 14px 28px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            margin-top: 25px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            width: fit-content;
        }
        
        .business-loc-btn:hover {
           background: linear-gradient(135deg, #5F9EA0, #06b6d4);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
        }
        
        .business-loc-btn i {
            margin-right: 10px;
            font-size: 1rem;
        }
        
        @media (max-width: 768px) {
            .business-loc-header h1 {
                font-size: 1.8rem;
            }
            
            .business-loc-map {
                height: 350px;
            }
            
            .business-loc-details {
                padding: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .business-loc-outer {
                padding: 20px 15px;
            }
            
            .business-loc-header h1 {
                font-size: 1.6rem;
            }
        }
/* location styles ends */
/* footer css */

.page-root {
    width: 100%;
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    color: #333;
    box-sizing: border-box;
  }

  footer.advanced-footer {
    background: linear-gradient(135deg, #5F9EA0, #06b6d4);
    color: #e0e7ff;
    padding: 48px 24px 32px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 40px;
    box-sizing: border-box;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
  }

  .footer-section h3 {
    font-weight: 600;
    color: #dbeafe;
    margin-bottom: 16px;
    font-size: 1.125rem;
  }

  .footer-link {
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
  }

  .footer-link:hover,
  .footer-link:focus {
    color: #bee3f8; /* lighter teal */
    outline: none;
  }

  .footer-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
  }

  .footer-social-icons a {
    color: #ffffff;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0 0 0 / 0.25);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .footer-social-icons a:hover,
  .footer-social-icons a:focus {
    background: #1c7a7a;
    color: #d1fae5;
    outline: none;
  }

  .newsletter-form {
    margin-top: 8px;
    display: flex;
    max-width: 320px;
  }

  .newsletter-input {
    padding: 14px 16px;
    border-radius: 8px 0 0 8px;
    border: none;
    font-size: 1rem;
    flex: 1;
    outline-offset: 2px;
    background-color: rgba(255 255 255 / 0.3);
    color: #e0e7ff;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: inset 0 0 8px rgba(255 255 255 / 0.4);
  }

  .newsletter-input::placeholder {
    color: #cbd5e1;
  }

  .newsletter-input:focus {
    outline: 2px solid #d1fae5;
    background-color: #d1fae5;
    color: #064e3b;
    box-shadow: none;
  }

  .newsletter-button {
    background: #000000;
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  }

  .newsletter-button:hover,
  .newsletter-button:focus {
    background: #333333;
    outline: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255 255 255 / 0.25);
    margin-top: 40px;
    padding-top: 24px;
    font-size: 0.875rem;
    color: #dbeafe;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .newsletter-form {
      flex-direction: column;
      max-width: 100%;
      min-height: 400px;
    }
    .newsletter-input {
      border-radius: 8px;
      margin-bottom: 12px;
      box-shadow: inset 0 0 8px rgba(255 255 255 / 0.4);
    }
    .newsletter-button {
      border-radius: 8px;
      padding: 14px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    }
  }

  .kitchen-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 !important;
}

@media (max-width: 600px) {
  .kitchen-main-img {
    height: 220px;
  }
}

/* contact us  css for index page */

  .container_contact {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1000px;
      margin: auto;
    }

    .contact-form, .contact-info {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      flex: 1 1 45%;
      min-width: 300px;
    }

    .contact-form h2,
    .contact-info h2 {
      margin-bottom: 20px;
      text-align: center;
      color: #333;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      color: #555;
      margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      resize: vertical;
      font-size: 16px;
    }

    .form-group textarea {
      min-height: 100px;
    }

    .form-group button {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 5px;
      cursor: pointer;
      width: 100%;
      font-size: 16px;
    }

    .form-group button:hover {
      background-color: #0056b3;
    }

    .message {
      margin-top: 15px;
      text-align: center;
      font-weight: bold;
    }

    .message.success {
      color: green;
    }

    .message.error {
      color: red;
    }
        @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .contact-form,
      .contact-info {
        flex: 1 1 100%;
      }
    }


