* {
  box-sizing: border-box;
}
    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
      background-color: #f7f3ef;
    }

    /* Header Container */
    .header {
      background-color: #f2ede8;
      border-bottom: 1px solid #ddd;
    }

    /* Top bar */
    .top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 50px;
      font-size: 14px;
      color: #4b4b4b;
    }

    .top-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .top-right span {
      border-right: 1px solid #d3b8a0;
      padding-right: 15px;
    }

    .top-right span:last-child {
      border: none;
      padding-right: 0;
    }

    /* Logo */
    .logo {
      background-color: #ff5a00;
      color: white;
      font-weight: bold;
      font-size: 18px;
      padding: 10px 15px;
      text-align: center;
      letter-spacing: 1px;
    }

    /* Bottom Nav */
    .nav-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 55px;
      padding: 15px;
      background-color: #f2ede8;
      border-top: 1px solid #e1d6cb;
    }

    .nav-bar a {
      text-decoration: none;
      color: #3a3a3a;
      font-weight: 600;
      font-size: 16px;
      transition: 0.3s;
    }

    .nav-bar a:hover {
      color: #ff5a00;
    }

    .highlight {
      color: #ff5a00;
      font-weight: 700;
    }

    /* Icon placeholders */
    .icon {
      font-size: 16px;
    }

     /* Responsive */
    @media (max-width: 768px) {
      .top-bar {
        flex-direction: column;
        text-align: center;
      }

      .nav-bar {
        flex-wrap: wrap;
        gap: 20px;
      }
    }

     /* Footer main */
    footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 30px 0;
        background-color: #fff;
    }

    .footer-column {
        margin: 10px;
    }

    .footer-column h3 {
        color: #f14d00;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-column a {
        display: block;
        color: black;
        text-decoration: none;
        margin: 5px 0;
        font-size: 14px;
    }

    .footer-column a:hover {
        text-decoration: underline;
    }
  
    /* Disclaimer */
    .disclaimer {
        text-align: center;
        font-size: 12px;
        color: gray;
        padding: 10px 40px 20px 40px;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        footer {
            flex-direction: column;
            text-align: center;
        }
    }


    
.dropdown-content {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  background-color: #1e1e1e;
  padding: 10px;
  border-radius: 5px;
}

.dropdown-content a {
  display: block;
  padding: 5px 10px;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* 
.container {
  display: flex;
  padding: 10px;
 
}

.sidebar {
  width: 380px;
  background-color: #fff6ee;
  padding: 20px;
  border-right: 1px solid #e2cdb8;
  
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  font-weight: bold;
  font-size: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e9dfd3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar span {
  color: #e6692c;
  font-size: 22px;
}

.shop-link {
  display: block;
  margin-top: 25px;
  font-weight: bold;
  color: #e6692c;
  text-decoration: none;
}


.products {
  display: flex;
  gap: 30px;
  /* justify-content: end; 
}

.sell .products {
  padding-left: 90vh;
  display: flex;
  gap: 30px;
}

.sell .product-card {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #f0e3d6;
  width: 200px;
  text-align: left;
  position: relative;
  border-radius: 8px;
}

.products .product-card {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #f0e3d6;
  width: 300px;
  text-align: left;
  position: relative;
  border-radius: 8px;
}

.sell .product-card img {
  width: 100%;
  border-radius: 5px;
}

.products .product-card img {
  width: 220px;
  border-radius: 5px;
}

.label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 3px;
}

.best-seller {
  background-color: #f15b22;
}

.limited {
  background-color: #c33;
}

.weight {
  margin-top: 15px;
  font-weight: bold;
  font-size: 14px;
}

h3 {
  font-size: 22px;
  margin: 8px 0;
}

.desc {
  font-size: 16px;
  color: #555;
} */



.shop-section {
      display: flex;
      flex-wrap: wrap;
      padding: 20px 20px;
      gap: 20px;
    }

    /* Sidebar */
    .sidebar {
      flex: 1;
      width: 300px;
      background-color: #f6f1eb;
      border-right: 1px solid #ddd0c0;
      padding: 20px;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
    }

    .sidebar li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px solid #e6dcd0;
      font-size: 20px;
      font-weight: 700;
      cursor: pointer;
    }

    .sidebar-links {
      margin-top: 30px;
    }

    .sidebar-links a {
      display: block;
      color: #e8611a;
      font-weight: 700;
      text-decoration: none;
      margin-bottom: 10px;
      transition: 0.3s;
    }

    .sidebar-links a:hover {
      text-decoration: underline;
    }

    /* Products */
    .product-container {
      flex: 2;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 10px;
      justify-items: center;
      padding: 10px;
    }

    .product-card {
      background-color: #fff;
      padding: 10px;
      border: 1px solid #e0d4c7;
      text-align: center;
      position: relative;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-card img {
      width: 70%;
      height: auto;
      margin-top: 15px;
    }

    .badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 5px 10px;
      color: white;
      font-weight: 700;
      font-size: 12px;
    }

    .best {
      background-color: #f45b0f;
    }

    .limited {
      background-color: #d14900;
    }

    .size {
      font-weight: bold;
      font-size: 14px;
      margin-top: 15px;
    }

    .sub {
      color: #4a4a4a;
      font-size: 16px;
    }

    .stars {
      color: #f45b0f;
      font-size: 18px;
      margin-top: 10px;
    }

    .stars span {
      color: #333;
      font-size: 14px;
      margin-left: 5px;
    }

    .unavailable {
      margin-top: 15px;
      background-color: #f45b0f;
      color: white;
      border: none;
      padding: 10px;
      width: 100%;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
    }

    .unavailable:hover {
      background-color: #d14900;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .shop-section {
        flex-direction: column;
      }

      .sidebar {
        border-right: none;
        border-bottom: 1px solid #ddd0c0;
      }
    }
h2{
    text-align: center;
    color: #c25a1d;
}


        .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .card {
      background: #fff;
      border: 1px solid #e5e5e5;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      position: relative;
      padding: 20px;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #e84c1d;
      color: #fff;
      font-size: 12px;
      font-weight: bold;
      padding: 5px 10px;
      border-radius: 4px;
      text-transform: uppercase;
    }

    .badge.limited { background-color: #f58025; }
    .badge.new { background-color: #c25a1d; }

    .product-img {
      width: 100%;
      height: 220px;
      object-fit: contain;
      margin-top: 25px;
    }

    .details {
      margin-top: 15px;
    }

    .size {
      font-size: 13px;
      color: #444;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .title {
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 6px;
      color: #2e2e2e;
    }

    .subtitle {
      color: #7a7a7a;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .stars {
      color: #ff7b00;
      font-size: 14px;
      margin-bottom: 5px;
    }

    .reviews {
      color: #777;
      font-size: 13px;
      margin-left: 5px;
    }

    .bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
      border-top: 1px solid #eee;
      padding-top: 10px;
    }

    .unavailable {
      font-weight: bold;
      color: #8b6f5b;
      text-transform: uppercase;
      font-size: 13px;
    }

    .price {
      font-weight: bold;
      color: #333;
      font-size: 16px;
    }

    @media (max-width: 500px) {
      body {
        padding: 20px;
      }
    }
    svg {

  position: relative;
  top: 6px;
  padding: 0;
}