/* ======== Reset & Base ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow-x: hidden;
    background-color: #FFF5F7 ;
}

/* ======== Header (Top Bar) ======== */
header {
    background-color: #2A2B2D;
    padding: 6px 10px;
    height: 50px;
    text-align: center;
}

header h1, header h2 {
    color: #FFF5F7 ;
    font-family: 'Poppins', sans-serif;
    margin: 1px 0;
    font-size: 12px;
}

@media (max-width: 768px) {
    header {
        padding: 4px 8px;
        height: 38px;
    }

    header h1 {
        font-size: 10px;
        margin: 1px 0;
    }

    header h2 {
        font-size: 9px;
        margin: 1px 0;
    }
}

/* ======== Navbar ======== */
.navbar {
    background-color: #FFF5F7 ;
    padding: 10px 0;
    position: relative;
    width: 100%;
    height: 65px;
    z-index: 10;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======== Logo & Brand ======== */
.container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container {
    width: 46px;
    height: 46px;
    background-color: #2A2B2D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 31px;
    font-weight: bold;
    color:#FFF5F7 ;
    font-family: 'Times New Roman';
}

.brand-name {
    font-size: 28px;
    font-weight: bold;
    color: #2A2B2D;
    font-family: 'Times New Roman';
}

/* ======== Search ======== */
/* PC View */
.search-container {
    --timing: 0.3s;
    --border-color: #2A2B2D;
    background: #ffffff ;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    width: 400px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    padding: 5px 10px;
    background: transparent;
}

#search-button {
    background: none;
    border: none;
    color: #2A2B2D;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-button i {
    font-size: 16px;
}


/* ======== Menu ======== */
.menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style-type: none;
}

.menu-item,
.dropdown-button {
    color: #2A2B2D;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-item:hover,
.dropdown-button:hover {
    color: #2A2B2D;
}

/* ======== Dropdown (Login) ======== */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #2A2B2D;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1000;
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    color: #000;
}

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

/* ======== Mobile View Adjustments ======== */
/* ======== Mobile View Adjustments ======== */
/* ======== Mobile View Adjustments ======== */
/* ======== Mobile View Adjustments ======== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .navbar-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5px 8px;
    height: auto;
  }

  /* Logo */
  .logo-container {
    width: 36px;
    height: 36px;
    background-color: #2A2B2D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-text {
    font-size: 25px;
    font-weight: bold;
    color: #FFF5F7;
    font-family: 'Times New Roman';
  }

  .brand-name {
    font-size: 22px;
    font-weight: bold;
    color: #2A2B2D;
    font-family: 'Times New Roman';
  }

  /* Collapsed Search */
  .search-container.collapsed {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 40%;
    background: #ffffff;
    border: 1px solid #4A403A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 10;
  }

 /* Expanded Search */
.search-container.expanded {
  height: 25px;
  border-radius: 20px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid #4A403A;
  width: 100%;
  max-width: 75px; /* adjust as needed */
  margin-left: auto; /* push to right */
}


  .search-container input {
    display: none;
    border: none;
    outline: none;
    background: transparent;
    width: 50%;
    font-size: 1px;
    padding: 0 0;
    color: #0b51dd;
  }

  .search-container.expanded input {
    display: inline-block;
  }

  #search-button {
    background: none;
    border: none;
    font-size: 1px;
    color: #2A2B2D;
    cursor: pointer;
  }

  /* Menu Icons */
  .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .menu-item,
  .dropdown-button {
    font-size: 0;
    position: relative;
  }

  .menu-item::before,
  .dropdown-button::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: #4A403A;
  }

  .menu-item[href*="addtocart"]::before {
    content: "\f07a";
  }

  .menu-item[href*="home"]::before {
    content: "\f015";
  }

  .dropdown-button::before {
    content: "\f007";
  }

  .dropdown-content {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 90px;
    font-size: 12px;
    padding: 4px 0;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    position: absolute;
    display: none;
    background-color: white;
  }

  .dropdown-content a {
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.2;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}

    












/* 🌟 Make all 4 categories spread across the width */
.category-section.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 50px; /* 🔽 Reduced padding */
  background: #FFF5F7;
}

/* Category Dropdown Container */
.category-dropdown {
  position: relative;
  text-align: center;
}

/* 🌟 Updated Category Button - Wider, shorter, horizontal layout */
.category-btn {
  background: #FFF5F7;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 16px;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  width: 300px; /* 🔼 3x wider */
  height: 80px; /* 🔽 less height */
  display: flex;
  flex-direction: row; /* 🔄 Icon left, text right */
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 10px rgba(76, 45, 24, 0.3);
  margin-top: 10px;  /* 🔽 Reduced margins */
  margin-bottom: 5px;
  text-align: left;
}

/* Category Icons */
.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex-shrink: 0;
}


/* Hover Effect */
.category-btn:hover {
    background: #ffffff  ; /* Solid hover color */
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(80, 30, 10, 0.4);
}



/* Subcategory dropdown list - Updated for PC */
.subcategory-list {
  display: flex;
  flex-direction: column;
  width: 250px;
  max-height: unset;
  padding: 10px 12px;
  border: 1px solid #F4D1AE;
  border-radius: 10px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Show on hover */
.category-dropdown:hover .subcategory-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(5px);
}

/* Remove subcategory columns */
.subcategory-column {
  width: 100%;
  padding: 0;
}

/* 🔹 Subcategory Items */
.subcategory-list li {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.3s ease;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}





/* Last item shouldn't have a border */
.subcategory-list li:last-child {
  border-bottom: none;
}

/* 🔹 Subcategory Links */
.subcategory-list li a {
  text-decoration: none;
  color: #333;
  display: block;
  width: 100%;
  transition: color 0.3s ease;
}

/* 🔹 Hover Effects */
.subcategory-list li:hover {
  background: #e4e7e8;
  color: white;
  transform: scale(1.05);
  border: 1px solid #8C4A32;
}




/* Mobile View - Category Section */
/* Mobile View - Category Section */
/* 🌟 Unique & Professional Mobile View for Category Section 🌟 */
/* 🌟 Final Mobile View - 5 Categories Per Row + Horizontal Scroll for Subcategories 🌟 */
@media (max-width: 768px) {

  .category-section.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
    gap: 10px;
    padding: 20px;
  }

  .category-dropdown {
    text-align: center;
    position: relative;
  }

  .category-btn {
    width: 80px;  /* Smaller width */
    height: 80px; /* Adjust height to fit icon + text */
    font-size: 12px;
    gap: 6px;
    display: flex;
    flex-direction: column;  /* Icon on top, text below */
    justify-content: center;
    align-items: center;
    padding: 8px 5px;
  }

  .category-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 6px; /* Space between icon and text */
  }

  /* Subcategory list same as before */
  .subcategory-list {
    position: absolute;
    width: 180px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 12px;
    border: 1px solid #F4D1AE;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
    flex-direction: column;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .category-dropdown:hover .subcategory-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
  }

  .subcategory-list li {
    font-size: 13px;
    padding: 8px;
  }

  .subcategory-list li img {
    display: none;
  }

  .subcategory-list li a {
    color: #4A403A;
    text-decoration: none;
    display: block;
    width: 100%;
  }

  .subcategory-list li:hover {
    background: #F4D1AE;
    transform: scale(1.05);
  }

   /* Shift 1st category subcategory slightly right */
  .category-section.category-grid .category-dropdown:nth-child(1) .subcategory-list {
    transform: translateX(calc(-50% + 30px)); /* moved 15px right */
  }

  /* Shift 4th category subcategory slightly left */
  .category-section.category-grid .category-dropdown:nth-child(4) .subcategory-list {
    transform: translateX(calc(-50% - 30px)); /* moved 15px left */
  }


}











/* Reset & Layout  slider---------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.slider-section {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-style {
  background: #ffffff;
  width: 100%;
  height: 100%;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  gap: 40px;
}

.banner-text {
  flex: 1;
  padding-left: 40px;
}

.banner-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 15px;
}

.banner-text .highlight {
  color: #d61355;
}

.banner-text p {
  font-size: 1.2rem;
  color: #4b5563;
  margin-bottom: 25px;
}

/* ---------------- Banner Button Styling ---------------- */
.banner-button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 24px;
  background-color: #2A2B2D;
  color: #FFF5F7;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.banner-button:hover {
  background-color: #4A403A;
  transform: translateY(-2px);
}

.banner-image {
  flex: 1;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Important for full image fill */
  border-radius: 16px;
  max-width: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px;
    height: auto;
  }

  .banner-text {
    padding: 0;
  }

  .banner-text h1 {
    font-size: 2rem;
  }

  .banner-text p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 10px 24px;
  }

  .banner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
  }
}








@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Great+Vibes&family=Montserrat&display=swap');

.categories-section {
  background-color: #1a1a1a; /* Almost black charcoal */
  padding: 80px 20px;
  text-align: center;
}

.categories-section .heading-main {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: #f5f5f5; /* Soft white */
  letter-spacing: 0.05em;
}

.categories-section .heading-sub {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 1.8rem;
  color: #c0b283; /* Warm muted gold */
  display: block;
  margin-top: 6px;
}

.explore-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-top: 15px;
  background-color: #d6b95c; /* Soft gold */
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(214, 185, 92, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.explore-button:hover {
  background-color: #b89c49;
  box-shadow: 0 6px 16px rgba(184, 156, 73, 0.4);
}








@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Dancing+Script&family=Open+Sans&family=Poppins&display=swap');

.sell-route-section {
  background-color: #111111; /* Rich dark background */
  padding: 100px 20px;
  text-align: center;
}

.serif-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #f3f3f3;
}

.script-heading {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #dda0aa; /* Dusty rose */
  display: block;
  margin-top: 5px;
}

.subtext {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 20px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background-color: #c96578; /* Muted rose */
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #a85061;
}


@media (max-width: 768px) {
  .categories-section,
  .sell-route-section {
    padding: 40px 15px;
  }

  .categories-section .heading-main,
  .serif-heading {
    font-size: 2rem;
  }

  .categories-section .heading-sub,
  .script-heading {
    font-size: 1.4rem;
    margin-top: 4px;
  }

  .subtext {
    font-size: 1rem;
    margin-top: 16px;
    line-height: 1.5;
  }

  .explore-button,
  .cta-button {
    font-size: 0.95rem;
    padding: 10px 24px;
    margin-top: 25px;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .categories-section,
  .sell-route-section {
    padding: 30px 10px;
  }

  .categories-section .heading-main,
  .serif-heading {
    font-size: 1.7rem;
  }

  .categories-section .heading-sub,
  .script-heading {
    font-size: 1.2rem;
  }

  .subtext {
    font-size: 0.95rem;
  }

  .explore-button,
  .cta-button {
    font-size: 0.9rem;
    padding: 10px 20px;
    width: 100%;
    max-width: 260px;
    margin-top: 20px;
  }
}













/* ==== Product Slider Section ==== */
.product-slider-section {
  padding: 30px 20px;
  background: #FFF5F7;
  border-top: 3px solid #2A2B2D;
  border-bottom: 1px solid #ddd;
  overflow-x: hidden;
}

.product-slider-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #2A2B2D;
  font-weight: bold;
  text-shadow: 1px 1px 6px rgba(255, 174, 0, 0.3);
  border-bottom: 2px solid #ff9100;
  display: inline-block;
  padding-bottom: 8px;
}

/* === Slider Container === */
.product-slider {
  display: flex;
  gap: 20px;
  animation: scrollSlider 50s linear infinite;
  width: max-content;
  padding-bottom: 10px;
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* === Product Card === */
.slider-card {
  flex-shrink: 0;
  width: 160px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  padding: 10px;
}

.slider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* === Card Image === */
.slider-card img {
  width: 100%;
  height: 180px; /* increased from 120px */
  object-fit: contain; /* optional: makes image fill space more attractively */
  border-radius: 8px;
  background-color: #FFF5F7;
}


/* === Card Content === */
.product-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 10px;
}

.product-card-content h4 {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-card-content p {
  font-size: 15px;
  color: #000;
  font-weight: 600;
  margin-bottom: 6px;
}

/* === Price Styling === */
.product-price {
  font-weight: bold;
  font-size: 15px;
  color: #8C4A32;
}

/* === Hide Scrollbar === */
.product-slider::-webkit-scrollbar {
  display: none;
}

/* ==== Mobile Responsive Fix ==== */
@media (max-width: 768px) {
  .slider-card {
    width: 46vw;
    padding: 8px;
  }

  .slider-card img {
    height: 160px;
  }

  .product-slider-section h2 {
    font-size: 1.5rem;
  }
}




  
  








.product-section {
  width: 90%;
  max-width: 1200px;
  margin: 10px auto;
  color: #ffffff;
  
  text-align: center;
  padding: 0 10px;
}

.product-section h2 {
  font-size: 2.5rem;
  color: #2A2B2D;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(255, 174, 0, 0.3);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 3px solid #ff9100;
}

/* Grid Layout */
#products-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Row of 2 categories */
.product-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}


/* Category Section */
.category-section {
  flex: 1;
  background: #FFF5F7  ;
  padding: 10px;
  border-radius: 00px;
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

/* Category Heading — now centered and above */
.category-section h3 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
  padding: 0;
}

/* Category Products — now only show 2 in a row */
.category-products {
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  gap: 20px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  justify-content: center;
}

.category-products::-webkit-scrollbar {
  height: 8px;
}

.category-products::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border-radius: 10px;
}

/* Product Card — fit for 2 visible in row */
.product-card {
  flex: 0 0 auto;
  width: 250px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 250px; /* increased from 170px */
  object-fit: contain; /* makes it fill and crop a bit */
  border-radius: 10px;
  background-color: #ffffff;
}


.product-card h4 {
  font-size: 1.1rem;
  color: #444;
  margin: 12px 0 6px;
  font-weight: 500;
}

.product-price {
  font-size: 22px;
  color: #000;
  font-weight: 600;
  margin-bottom: 6px;
}


/* Rating */
.star-rating {
  color: #ffa500;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Cart Button */
/* Add to Cart — Center Aligned Circle */
.cart-button {
  background-color: #ffcc00;
  color: #fff;
  border: none;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0;
}

.cart-button:hover {
  background-color: #ff9100;
}
/* =============================
   📱 Responsive for Mobile View
============================= */
@media (max-width: 768px) {
  .product-section {
    width: 95%;
    margin: 60px auto;
    padding: 0 5px;
  }

  .product-section h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px rgba(255, 174, 0, 0.3);
    border-bottom: 2px solid #ff9100;
  }

  #products-grid {
    gap: 25px;
  }

  .product-row {
    flex-direction: column;
    gap: 20px;
  }


   .category-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    background: #FFF5F7;
    width: 100%;
    box-sizing: border-box;
  }

  
   .category-section h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    width: 100%; /* ensures it's full width */
  }

  .category-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-bottom: 10px;
    width: 100%; /* important for full width under category name */
  }

  .product-card {
    width: 48%;
    background: #fff;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    box-sizing: border-box;
  }

  .product-image {
    width: 100%;
    height: 190px;
    object-fit: contain;
    border-radius: 6px;
    background-color: #FFF5F7;
  }

  .product-card h4 {
    font-size: 14px;
    color: #444;
    margin: 6px 0 4px;
    font-weight: 500;
  }

  .product-price {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .star-rating {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #ffa500;
  }

  .cart-button {
    background-color: #ffcc00;
    color: #fff;
    border: none;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0;
  }

  .cart-button:hover {
    background-color: #ff9100;
  }
}





















/* 🌟 Business Section with Background Image */
.business-section {
    position: relative;
    background: linear-gradient(to top, rgba(140, 138, 138, 0.225), rgba(48, 47, 47, 0.17)), 
    url('https://i.imgur.com/tB9GBhi.jpg') no-repeat center center/cover;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:#000000;
}


/* 🔹 Semi-Transparent Overlay for Readability */
.business-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🔹 Business Content */
.business-content {
    max-width: 1200px;
    margin-top: -60px;
    padding: 20px;
    text-align: center;
}

.business-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.business-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-style: italic;
}
.h3{
    color: #FF9900;

}#E6B800

.h1{
    color: #001eff;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.366);

}
.h2{
    color: #0119b2;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.366);

    font-size: 1.4rem;

}

/* 🌟 Business List - Four Columns */
.business-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 35px;
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* 📌 Individual Business Items */
.business-item {
    width: 22%; /* 4 items per row */
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, background 0.3s ease;
}

/* 🖼️ Icons Styling */
.business-item img {
    width: 90px;
    height: 60px;
    margin-bottom: 12px;
}

/* 📌 Text Styling */
.business-item span {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    text-align: center;
}

/* 🎯 Hover Effect */
.business-item:hover {
    transform: scale(1.05);
    background: rgb(255, 255, 255);
}

/* 📌 Call-to-Action Button */
.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #6f5439; /* Gold */
    color: #ffffff; /* Black */

    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #3f260e;
}

@media (max-width: 768px) {
    .business-section {
      height: auto;
      padding: 30px 15px;
      background-position: center;
      background-size: cover;
    }
  
    .business-content {
      padding: 10px;
      margin-top: 0;
    }
  
    .business-content h2 {
      font-size: 1.4rem;
      line-height: 1.4;
      margin-bottom: 6px;
    }
  
    .business-content p {
      font-size: 0.95rem;
      margin-bottom: 15px;
    }
  
    .h1 {
      font-size: 1.4rem;
    }
  
    .h2 {
      font-size: 1.1rem;
    }
  
    .h3 {
      font-size: 1rem;
    }
  
    .business-list {
      flex-direction: column;
      gap: 15px;
      padding: 20px 10px;
    }
  
    .business-item {
      width: 100%;
      padding: 15px;
      border-radius: 8px;
    }
  
    .business-item img {
      width: 60px;
      height: 40px;
      margin-bottom: 8px;
    }
  
    .business-item span {
      font-size: 0.95rem;
    }
  
    .cta-btn {
      font-size: 0.9rem;
      padding: 10px 18px;
    }
  }
  























.footer {
    border-top: 3px solid #2A2B2D;

    background-color:#FFF5F7 ;
    color: #2A2B2D;
    padding: 50px 20px;
    font-family: sans-serif;
}

/* Footer Container */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: auto;
    text-align: left;
}


.about-text {
    margin-bottom: 15px;
}
/* Add more spacing above the 'Follow Us' heading */
.follow-us-title {
    margin-top: 0px;
}
/* Big and Attractive 'About Us' */
.about-section h3 {
    font-size: 24px;
    font-weight: bold;
    color: #21211d; /* Gold */
    margin-bottom: 15px;
    
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

/* Other Headings */
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2A2B2D  ; /* Gold */
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 5px;
}

/* Footer Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: #151617      ; /* Gold */
}

/* Contact Info */
.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #4A403A ;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}
/* Contact Info Styling */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Icons for Email & Phone */
.contact-icon {
    width: 20px;
    height: 20px;
}
/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 10px;
    font-size: 12px;
    border-top: 1px solid #444;
    margin-top: 10px;
    display: flex;
    height: 45px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Footer Bottom - Country, Language & Currency */
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
}

.footer-bottom-right .india-flag {
    width: 30px;
    height: 30px;
    object-fit: cover;
}


@media (max-width: 768px) {
  .footer {
    padding: 30px 15px;
    font-size: 13px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-section h3,
  .footer-section h3 {
    font-size: 16px;
    text-align: center;
  }

  .about-text {
    font-size: 13px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    gap: 12px;
  }

  .social-icons a img {
    width: 26px;
    height: 26px;
  }

  .footer-section ul li {
    margin-bottom: 8px;
  }

  .footer-section ul li a {
    font-size: 13px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .contact-icon {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    margin-top: 20px;
    height: 40px;
  }

  .footer-bottom-right {
    flex-direction: row;
    gap: 5px;
    font-size: 9px;
  }

  .footer-bottom-right .india-flag {
    width: 24px;
    height: 24px;
  }
}
