    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  
    }

    body {
      font-family: "Poppins", sans-serif;
      background-color: #ffffff;
      color: #111;
      line-height: 1.6;
      /* overflow-y: hidden; */
    }


/* NAVBAR STYLES - mobile-first */
:root{
  --accent: #03C4A1;
  --bg: #d3d3d3;
  --text: #d6d6d6;
  --muted: #666;
  --header-h: 70px;
}

/* container */
.container{ max-width:1100px; margin:0 auto; padding:0 0px; }

.head{
    background: url('/images/Frame\ 204.png') no-repeat center center/cover;
}

/* header */
.site-header{
  position:sticky;
  top:0;
  z-index:1200;
  background-color: transparent;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0);
  backdrop-filter: blur(4px);
}

/* header inner layout */
.header-inner{
  display:flex;
  align-items:center;
  height:var(--header-h);
  gap:12px;
  padding: 0px 10px;
}

/* nav toggle (hamburger) */
.nav-toggle{
  background:transparent;
  border:0;
  padding:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:var(--text);
}

a{
    text-decoration: none;
}

/* brand */
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); }
.brand-logo{ width:100px; height:100px; object-fit:contain; }
.brand-text{ font-weight:700; letter-spacing:1px; color:var(--accent); }

/* nav (desktop hidden by default on mobile) */
.site-nav{ display:none; }
.nav-list{ list-style:none; padding:0; margin:0; display:flex; gap:18px; }
.nav-link{ color:var(--text); text-decoration:none; font-weight:500; padding:8px 6px; display:inline-block; border-radius:6px; }
.nav-link:hover{ background:rgba(3,196,161,0.06); color:var(--accent); }

/* actions */
.nav-actions{ margin-left:auto; display:flex; align-items:center; gap:10px; }
.icon-btn{ background:transparent; border:0; padding:8px; cursor:pointer; color: #d6d6d6; }
.action-cta{ display:inline-block; padding:8px 12px; border-radius:22px; background:var(--accent); color:#fff; text-decoration:none; font-weight:600; }
.cart-btn{ position:relative; background:transparent; border:0; padding:8px; cursor:pointer; color: #d6d6d6;}
.cart-count{ position:absolute; top:2px; right:2px; background:#ff3b30; color:#fff; font-size:11px; padding:2px 6px; border-radius:12px; }

/* search overlay */
.nav-search{ display:none; padding:12px 0; background:rgba(0, 0, 0, 0); border-top:1px solid rgba(0,0,0,0.04); }
.search-form{ display:flex; gap:8px; align-items:center; }
.search-form input{ flex:1; padding:10px 12px; border-radius:888px; border:1px solid #e6e6e6; font-size:14px; background-color: rgba(255, 255, 255, 0.205); color: white;}
.search-form .btn{ padding:10px 14px; background:var(--accent); color:#fff; border-radius:888px; border:0; cursor:pointer; }
.btn-close{ background:transparent; border:0; font-size:22px; padding:8px; cursor:pointer; color: white; font-weight: bold; }

/* desktop layout */
@media(min-width:880px){
  .nav-toggle{ display:none; } /* hide hamburger */
  .site-nav{ display:block; margin-right:22px; }
  .nav-list{ gap:22px; }
  .brand-logo{ width:100px; height:100px; }
  .action-cta{ display:inline-block; }
  .nav-search{ display:none; }
  .head{
    background: url('/images/Frame\ 204.png') no-repeat center center/cover;
}
}

/* ---------- MOBILE SLIDE-IN MENU ---------- */
@media (max-width: 880px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: -240px;
    width: 240px;
    height: 100vh;
    /* background: linear-gradient(180deg, #0E0E0E 0%, #1A1A1A 100%); */
    overflow: hidden;
    box-shadow: -4px 0 16px rgba(0,0,0,0.1);
    transition: left 0.35s ease;
    padding-top: 90px;
    display: block; /* Always keep it in DOM for sliding effect */
    z-index: 1500;
    backdrop-filter: blur(5px);
  }

  .site-nav.nav-open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 20px;
    background: linear-gradient(180deg, #0e0e0e 0%, #1A1A1A 100%);
    height: 100%;
    backdrop-filter: blur(10px);
  }

  .nav-link {
    color: #ffffff;
    font-size: 1rem;
    width: 100%;
    padding: 10px 0;
    /* border-bottom: 1px solid #f0f0f0; */
  }

  .nav-link:hover {
    background: none;
    color: #03C4A1;
    transform: translateX(4px);
  }

  /* Optional: dark overlay behind the open nav */
  body::after {
    content: '';
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1400;
    transition: opacity 0.3s ease;
  }

  .site-nav.nav-open ~ body::after {
    display: block;
  }
}


.products-section {
  padding: 30px 10px;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  color: #111;
}

/* Product Grid */
/* Product Grid */
.product-grid {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(7, 1fr); /* 4 columns by default */
}

/* Product Card */
.product-card {
  background: #fff;
  height: fit-content;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.product-info {
  padding: 4px 4px;
}

.product-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1px;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* show only 2 lines before cutting off */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-desc {
  font-size: 10px;
  font-style: italic;
  color: #555;
  margin-bottom: 1px;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* show only 2 lines before cutting off */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.product-price {
  font-size: 13px;
  font-weight: 600;
  color: #03C4A1;
  margin-bottom: 1px;
  display: flex;
  gap: 20px;
}

.product-price .old-price{
    color: red;
    font-size: 10px;
    font-weight: 100;
    margin-bottom: 1px;
}

.product-sold{
    font-size: 10px;
  color: rgb(51, 51, 51);
  margin-bottom: 1px;
  display: flex;
  justify-content: space-between;
}

.add-to-cart {
  display: inline-block;
  background: #03C4A1;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 1000px;
  margin-top: -17px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

#cart-indicator {
  position: relative;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

#cart-count {
  background: #e60023;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 13px;
  margin-left: 5px;
  min-width: 20px;
  text-align: center;
  line-height: 1;
}

.add-to-cart:hover {
  background: #0056d1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 on tablet */
  }
}

@media (max-width: 800px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 on mobile */
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* single column on very small screens */
  }
}
