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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
a{
  color: black !important;
  text-decoration: none!important ;
}

body {
    background: #fff;
    color: #222;
    discount: none;
}

.hero-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 262.5px;
    overflow: hidden !important;

}

.hero-inner {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-left img {
    width: 100%;
    /* max-width: 1300px; */
    height: auto;
}

.hero-right {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: #4b1e1e;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: black;
    margin-bottom: 8px;
}

.hero-count {
    font-weight: 600;
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.hero-code {
    font-weight: 600;
    font-size: 14px;
    color: #999;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    background-color:white;
    flex-wrap: wrap;
    underline:none
}

.breadcrumb .sep {
    margin: 10px 5px;
    color: #555;

}

.sort-block {
    display: flex;
    align-items: centre;
    gap: 10px;
}

.sort-block label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.sort-block select {
    border: 1px solid #ccc;
    padding: 6px;
    border-radius: 4px;
    font-weight: 600;
    background-color: #fff;
}
.hero-right {
    position: absolute;
    z-index: 2;
    top: 50px;
    left: 50%;
    width: fit-content;
    height: auto;
}

.filters {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    color: #000;
    padding: 15px 75px;
       border-bottom: 1px solid #eee;
    gap: 8px;
}

.filter-pill {
    background-color: #fff;
    color: #151313;
    padding: 8px 16px;
    border-radius:0px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    border-right: 1px solid #000;
}

.filter-pill:hover {
    background-color: #f5e5e4;
}

.filter-pill .dot {
    display: inline-flex;
    width: 15px;
    height: 15px;
    background-color: #2f2d2d;
    border-radius: 10%;
    margin-left: 8px;
}

.filter-actions {
    display: flex;
    gap: 10px;
}

.filter-reset,
.filter-apply {
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 600;
    cursor: pointer;
}

.filter-reset {
    background-color: #fff;
    color: #a7342e;
}

.filter-apply {
    background-color: #fff;
    color: #a7342e;
}

.horizontal-line{
    margin:20px 20px;
}

/* Product Grid */
.product-section {
    padding: 40px 80px;

}

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

.product-card {
    position :relative;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    /* padding-bottom: 15px; */
    background: #fff;
    transition: transform 0.2s ease;
}

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

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 1px solid #f1f1f1;

}

.product-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #f1f1f1;
}

.product-info {
    padding: 10px 14px;
    text-align: left;
}

.prdouct-sku {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-discount {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.product-price {
    color: #a7342e;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-add {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
   padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-add::after {
  content: "Add";
}

.btn-add:hover {
    background-color: #a7342e;
    color: #fff;
    border-color: #a7342e;
}

.view-all-wrap {
    text-align: center;
    margin: 40px 0;
}

.view-all-btn {
    background-color: #4a1412;
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.view-all-btn:hover {
    background-color: #a7342e;

}

.show-all-wrap {
    display: none;
}



/* Details-Section */

.details-section {
    padding: 20px 20px;
    border: 1px solid #4a1412;
    border-radius: 10px;

    margin: 20px 20px;
    line-height: 28px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease;
}
.hide {
 position: absolute;
    top: 20px;
    right: 30px;
    color: #4a1412;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.details-section button {
    position: absolute;
    top: 20px;
    right: 30px;
    background-color: #4a1412;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.details-section button:hover {
    background-color: #a7342e;
}

.details-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    margin-top: 20px;
}

.details-body p {
    margin-bottom: 15px;
    font-weight: 500;
    color: black;
}

.details-body h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: black;
    margin-top: 25px;
    margin-bottom: 10px;
}

.details-body a {
    color: black;
    text-decoration: underline;
    font-weight: 600;
}

.variety-ans p {
    /* margin-left:20px; */
    font-weight: 600;
}

.hidden-content {
    overflow: hidden;
    transition: max-height 0.6s ease;
}

@media (max-width:1024px) {
    .hero-banner {
        display: none;
    }
    address-product{
        display: none;
    }
    #button-product{
        display: none;
    }

    .details-section {
        border: none;
        padding: 40px 20px;
        margin: 0;
    }

    .details-section button {
        top: 10px;
        right: 20px;
    }

    .show-all-wrap {
        text-align: center;
        margin: 40px 0;
    }

    .show-more-btn {
        background-color: #4a1412;
        color: #fff;
        border: none;
        padding: 12px 36px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .show-more-btn:hover {
        background-color: #a7342e;

    }

    .view-all-wrap {
        display: none;
    }

     .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
  }

  .product-thumb img {
    height: 100%;
  }

  /* Remove “Add” text on mobile */
  .btn-add::after {
    content: "";
  }

  .btn-add {
    width: 32px;
    height: 32px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
  }

  /* Text inside cards */
  .product-price,
  .product-sku,
  .product-discount {
    font-size: 13px;
  }
}

#contentBox {
  transition: all 0.3s ease;
}
    