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

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Removes horizontal scrollbar */
    font-family:'Merriweather', serif;
}

/* ===== NAVBAR ===== */
 /* .navbar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(95% - 180px);
    padding: 18px 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 95px 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 40px;  
    width: auto;
    max-width: 170px; 
    display: block;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    cursor: pointer;
    font-weight: 500;
    color: #000;
}

.navbar img {
    height: 50px;
    width: auto;
    margin-right: 28px;
}


@media (max-width: 768px) {
    .navbar {
        flex-direction:row;
        padding: 18px 20px;
        width: 90%;
        align-items: flex-start;
        background: #faf8f8;
        box-shadow: none; 
        border-radius:30px;
    }

    .navbar ul {
        display: none; 
        flex-direction: column;
        gap: 16px;
        margin-top: 15px;
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .navbar.active ul {
        display: flex; 
    }

    .navbar .hamburger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .hamburger div {
        width: 25px;
        height: 4px;
        background-color: #000;
        margin: 4px 0;
    }
}


@media (max-width: 480px) {
    .navbar ul li {
        font-size: 22px;
    }

    .navbar img {
        height:30px;
    }

    .navbar .logo img {
        max-width: 120px;
    }
} 
 */
/* ---- Fix floating navbar overlap ---- */
body {
  padding-top: 140px;
}

@media (max-width: 992px) {
  body {
    padding-top: 110px;
  }
}

/* ===== HERO ===== */
.hero{
    background:url("/images/Rectangle\ 27.png") center/cover no-repeat;
    height: 850px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
}

.hero-content{
    position: relative;
    color: #101010;
    align-items: center;
    text-align: center;
   
}

.hero h1{
    font-family: 'Merriweather', serif;
     /* Adding shadow */
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4); /* Shadow applied to each letter */
    font-size: 60px; /* Slightly reduced size */
    font-weight: 900;
    margin-top: -10px; /* Adjusted margin for better alignment */
    line-height: 1.2; /* Adjust line height for better spacing */
}

.hero button {
    font-family:'Merriweather', serif;
    padding: 16px 20px;
    font-size: 30px;
    background: #D9D9D9;
    margin-top:40px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 50px; /* ✔ pill shape */
    transition: all 0.3s ease;
}

/* Responsive Design for Tablets and Below */
@media (max-width: 1024px) {
    .hero {
        height: 700px; /* Adjust height for tablets */
    }

    .hero h1 {
        font-size: 50px; /* Adjust font size for tablets */
    }

    .hero button {
        font-size: 24px; /* Adjust button size for tablets */
        padding: 14px 18px;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .hero {
        height: 500px; /* Adjust height for mobile */
    }

    .hero h1 {
        font-size: 35px; /* Adjust font size for mobile */
        line-height: 1.3; /* Slightly adjust line height for mobile */
        margin-top:40px; /* Remove negative margin */
    }

    .hero button {
        font-size: 20px; /* Adjust button size for mobile */
        padding: 12px 16px;
    }
}

/* Responsive Design for Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 400px; /* Adjust height for very small screens */
    }

    .hero h1 {
        font-size: 28px; /* Adjust font size for small mobile screens */
        line-height: 1.4; /* Adjust line height for better readability */
    }

    .hero button {
        font-size: 18px; /* Adjust button size for small screens */
        padding: 12px 14px;
    }
}

/* MENU BAR */
.icon-menu {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 22px 0;
}

.icon-menu-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ITEM */
.menu-item {
  text-align: center;
  cursor: pointer;
}

/* ICON */
.icon-circle {
  width: 52px;
  height: 52px;
  background: #2f3947;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.icon-circle i {
  color: #fff;
  font-size: 16px;
}

/* TEXT */
.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight:700;
  color: #000;
}

/* HOVER EFFECT */
.menu-item:hover .icon-circle {
  background: #000;
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
@media (max-width: 768px) {
  .icon-menu-inner {
    flex-wrap: wrap;
    flex-direction:row;
    gap:20px;
    justify-content: center;
    font-size:14px;
  }
  .menu-item h4 {
    font-size:12px;
  }
 
}
}


/* ================= PRODUCT LISTING LAYOUT ================= */

.product-listing {
  width: 100%;
  background: #ffffff;
  padding: 40px 0;
}

.product-listing {
  display: flex;
  gap: 30px;
  max-width: 1300px;
  margin: auto;
  padding: 50px 0px;
}

/* ================= SIDEBAR ================= */
.sidebar {
  width: 300px;
  height: 140vh;
  background: #fff;
  padding: 20px;

  border-radius: 10px;
  border: 0.1px solid rgba(0, 0, 0, 0.226);

  /* ONLY right + bottom shadow */
  box-shadow:
    8px 0 16px rgba(0, 0, 0, 0.14),   /* right */
    0 8px 16px rgba(0, 0, 0, 0.14);   /* bottom */
}





.filter-btn {
  width: 100%;
  background:none;
  border: none;
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  border-radius: 4px;
  /* margin-bottom: 15px; */
  cursor: pointer;
}

.search-box {
  position: relative;
  margin-bottom: 20px;
}

.search-box input {
  width: 100%;
  height: 44px;
  background: #bcbcbc;
  border: none;
  border-radius: 999px;        /* 🔥 makes pill shape */
  padding: 0 16px 0 46px;      /* space for icon */
  font-size: 15px;
  color: #000;
  outline: none;
}
.search-box input::placeholder {
  color: #555;
  font-weight: 500;
}
.search-icon {
   position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* prevents click issues */
}

.filter-section {
  margin-bottom: 25px;
}

.filter-section h3 {
 font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.checkbox-item input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #000;
  border-radius: 2px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
}
.checkbox-item input:checked {
  background-color: #0a9cff;
  border-color: #0a9cff;
}
.checkbox-item input:checked::before {
  content: "✓";
  font-size: 12px;
  color: #fff;
  line-height: 1;
}
.filter-section {
  margin-bottom: 22px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
}


/* ================= MOBILE FILTER ================= */

/* SHOW filter icon on mobile */
.mobile-filter-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.mobile-filter-bar button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Overlay */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  display: none;
}

/* Drawer */
.filter-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: 0.35s ease;
  overflow-y: auto;
}

.filter-drawer.active {
  left: 0;
}

.filter-overlay.active {
  display: block;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}

.filter-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* MOBILE TOP TOOLBAR */
.mobile-toolbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

/* Buttons */
.tool-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Grid / List Toggle */
.view-toggle {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.view-toggle button {
  padding: 6px 10px;
  border: none;
  background: #fff;
  cursor: pointer;
}

.view-toggle button.active {
  background: #000;
  color: #fff;
}

.product-grid.list-view {
  grid-template-columns: 1fr !important;
}

.product-grid.list-view .product-card {
  max-width: 100%;
}

.product-grid.list-view .product-image-container {
  height: 300px;
}


/* MOBILE ONLY */
@media (max-width: 768px) {
  .mobile-toolbar {
    display: flex;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}


@media (max-width: 768px) {

  /* SHOW filter icon on mobile */
  .mobile-filter-bar {
    display: flex;
    margin-bottom: 10px;
  }

  /* Stack layout */
  .product-listing {
    flex-direction: column;
  }

  /* Hide desktop sidebar */
  .product-listing > .sidebar {
    display: none;
  }

  /* Center products */
  .main-content {
    width: 100%;
  }

  .product-grid {
    justify-content: center;
  }

  .product-card {
    margin: auto;
    max-width: 360px;
  }
}

.price-slider {
  width: 100%;
  height: 6px;
  appearance: none;
  background: #ddd;
  border-radius: 5px;
  outline: none;
}

.price-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: #1f7a8c;
  border-radius: 50%;
  cursor: pointer;
}

.price-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #1f7a8c;
  border-radius: 50%;
  cursor: pointer;
}

/* ================= MAIN CONTENT ================= */

.main-content {
  flex: 1;
}

/* ================= PRODUCT GRID ================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= PRODUCT CARD ================= */

.product-card {
  border-radius: 24px;
  padding-bottom: 16px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

/* ================= IMAGE ================= */

.product-image-container {
  position: relative;
  height: 230px;
  margin: 12px;
  overflow: hidden;
  border-radius: 2px 2px 20px 20px;
  background: #fff;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Soft fade at bottom */
.product-image-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.12) 100%
  );
  pointer-events: none;
}

/* ================= INFO ================= */

.product-info {
  margin-top: -30px;
  text-align: center;
  padding: 10px 18px;
}

/* White curved strip */
.product-title {
  background: #fff;
  width: calc(100% - 40px);
  margin: -40px auto 0;
  padding: 18px 10px;
  /* border-radius: 50px 50px 0px 0px; */
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #111;    
  text-align: center;
  z-index: 2;
  position: relative;
}

.product-subtitle {
  position: relative;
  font-size: 14px;
  color: #353535;
  /* margin-top: -10px; */
  line-height: 1.6;
  z-index: 3;
}

/* ================= PAGINATION ================= */

.pagination {
  display: flex;
  justify-content: right;
  gap: 10px;
  margin-top: 40px;
}

.page-btn {
  padding: 8px 14px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 6px;
}

.page-btn.active {
  background: #000;
  color: #fff;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-listing .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   IMAGE BOTTOM LEFT & RIGHT CURVE (PHIFER STYLE)
   ========================================= */

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;

  /* Top rounded */
  border-radius: 30px 30px 0 0;

  
  /* clip-path: polygon(
    0 0,
    100% 0,
    100% 85%,
    92% 100%,
    8% 100%,
    0 85%
  ); */

  display: block;
}


/* GLOBAL FIX */
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* SECTION */
.category-slider {
  position: relative;
  max-width: 1200px;
  margin: 60px auto;
  overflow: hidden;
}

/* VIEWPORT – ONLY 4 CARDS */
.slider-viewport {
  width: calc((220px * 4) + (40px * 3));
  overflow: hidden;
  margin: auto;
}
.slider-track {
  display: flex;
  gap: 40px;
  scroll-behavior: smooth;
  overflow-x: auto;          /* 🔥 REQUIRED */
  scrollbar-width: none;     /* Firefox */
}

.slider-track::-webkit-scrollbar {
  display: none;             /* Chrome / Edge */
}


/* CARD */
.slide-item {
  min-width: 220px;
  text-align: center;
}

/* CIRCLE IMAGE */
.circle-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

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

/* TEXT */
.slide-item p {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

/* ARROWS */
.nav-btn {
  position: absolute;
  top: 80px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #333;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.nav-btn.left {
  left: 10px;
}

.nav-btn.right {
  right: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .slider-viewport {
    width: calc((160px * 2) + 25px);
  }

  .slide-item {
    min-width: 160px;
  }

  .circle-img {
    width: 120px;
    height: 120px;
  }

  .nav-btn {
    top: 60px;
  }
}

  /* SECTION */
    .made-usa-section {
      padding: 0; /* Removed padding for full width */
      background: #fff;
      margin-bottom: 50px;
    }

    /* CONTAINER */
    .made-usa-container {
      max-width: 100%; /* Full width */
      margin: 0; /* Removed margin */
      display: flex;
      align-items: stretch;   /* 🔥 SAME HEIGHT */
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
      border-radius: 6px;
      overflow: hidden;       /* 🔥 CLEAN EDGES */
    }

    /* LEFT IMAGE */
    .made-usa-image {
      width: 65%;  /* Increased the width of the image */
    }

    .made-usa-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* RIGHT CONTENT */
    .made-usa-content {
      width: 35%;  /* Reduced the width of the right content */
      background: #1e5aa8;
      color: #fff;
      padding: 28px 30px;  /* Reduced padding to bring the content closer */
      display: flex;
      flex-direction: column;
      justify-content: center; /* 🔥 VERTICAL CENTER */
    }

    /* TEXT */
    .made-usa-content h3 {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .made-usa-content p {
      font-size: 16.5px;
      line-height: 1.7;
      opacity: 0.95;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .made-usa-container {
        flex-direction: column;
      }

      .made-usa-image,
      .made-usa-content {
        width: 100%;
      }

      .made-usa-image img {
        height: 220px;
      }
    }
/*FOOTER*/



