/* body {

    background: radial-gradient(circle at top, #220015, #000);

    font-family: Arial, sans-serif;

} */



.product-sub{

    width: 90%;

    margin: auto;

    display: flex;

    gap: 30px;

}
.prd-lbl input{
    width: 20%;
}
/* Card */

.product-card {
        margin: 30px 0;

    width: 285px;

    background: linear-gradient(180deg, #2a001f, #12000c);

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 0 25px rgba(255, 0, 150, 0.15);

    transition: all 0.4s ease;

}
.product-layout {
    display: flex;
    width: 95%;
    margin: auto;
    gap: 30px;
}

.filter-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #16000d, #0a0006);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.2);
    height: fit-content;
}

.filter-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

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

.filter-heading {
    font-size: 15px;
    color: #ff4fb3;
    margin-bottom: 12px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 6px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #cfa7bd;
    cursor: pointer;
}

.filter-options input {
    accent-color: #ff4fb3;
}

.filter-options::-webkit-scrollbar {
    width: 4px;
}

.filter-options::-webkit-scrollbar-thumb {
    background: #ff4fb3;
    border-radius: 10px;
}

.product-sub {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.filter-icon{
    display: none;
}
@media (max-width: 1200px) {
    .product-card {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .product-layout {
        flex-direction: column;
    }

    .filter-sidebar {
        width: 40%;
        visibility: hidden;
        gap: 30px;
    }
    .filter-sidebar.active {
  visibility: visible;
}

    .filter-box {
        flex: 1;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .product-sub {
        justify-content: center;
    }

    .product-card {
        width: 100%;
        max-width: 360px;
    }

    .filter-sidebar {
        /* flex-direction: column; */
        width:40%;
       visibility: hidden;
    }
    .filter-sidebar.active {
  visibility: visible;
      }
    .filter-icon{
        display: block;
        /* position: relative; */
    }
    .filter-icon i{
    position: fixed;
    z-index: 99;
    }
}

@media (max-width: 576px) {
    .product-layout {
        width: 95%;
    }

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

    .filter-options {
        max-height: 180px;
    }
}

@media (max-width: 400px) {
    .filter-title {
        font-size: 16px;
    }

    .filter-heading {
        font-size: 14px;
    }

    .filter-options label {
        font-size: 13px;
    }
}




.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 0 40px rgba(255, 0, 150, 0.6);

}



/* Image */

.product-img {

    background: radial-gradient(circle, #ff2ea6, #2a001f);

    padding: 20px;

    text-align: center;

}



.product-img img {

    width: 100%;

    max-height: 180px;

    object-fit: contain;

    transition: transform 0.4s ease;

}



.product-card:hover .product-img img {

    transform: scale(1.08);

}



/* Info */

.product-info {

    padding: 20px;

    color: #fff;

}



.product-info h3 {

    font-size: 18px;

    margin-bottom: 8px;

}



.product-info p {

    font-size: 14px;

    color: #cfa7bd;

    margin-bottom: 15px;

}



/* Price */

.product-price {

    font-size: 20px;

    font-weight: bold;

    color: #ff4fb3;

    margin-bottom: 18px;

}



/* Buttons */

.product-actions {

    display: flex;

    gap: 12px;

}



.product-actions button {

    flex: 1;

    border: none;

    border-radius: 30px;

    padding: 10px;

    font-size: 14px;

    cursor: pointer;

    transition: all 0.3s ease;

}



/* Add to cart */

.cart-btn {

    background: transparent;

    color: #ff4fb3;

    border: 1px solid #ff4fb3;

}



.cart-btn:hover {
    background: #ff4fb3;
    color: #000;
    box-shadow: 0 0 4px #ff4fb3;
}



/* Buy now */

.buy-btn {

    background: linear-gradient(90deg, #ff0080, #ff4da6);

    color: #fff;

}



.buy-btn:hover {

    box-shadow: 0 0 10px #ff4da6;

    transform: scale(1.05);

}

.product-layout {
    display: flex;
    width: 90%;
    margin: auto;
    gap: 30px;
}

.filter-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #16000d, #0a0006);
    border-radius: 16px;
    padding: 20px;
    visibility: visible;
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.2);
    height: fit-content;
}

.filter-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

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

.filter-heading {
    font-size: 15px;
    color: #ff4fb3;
    margin-bottom: 12px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 6px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #cfa7bd;
    cursor: pointer;
}

.filter-options input {
    accent-color: #ff4fb3;
}

.filter-options::-webkit-scrollbar {
    width: 4px;
}

.filter-options::-webkit-scrollbar-thumb {
    background: #ff4fb3;
    border-radius: 10px;
}

.product-sub {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 1200px) {
    .product-card {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .product-layout {
        flex-direction: column;
    }

    .filter-sidebar {
        width: 100%;
        display: flex;
        display: none;
        gap: 30px;
    }

    .filter-box {
        flex: 1;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .product-sub {
        justify-content: center;
    }

    .product-card {
        width: 100%;
        max-width: 360px;
    }

    .filter-sidebar {
        flex-direction: column;
        visibility: visible;
    }

      .section-heading {
    gap: 14px;
    margin: 50px 0 30px;
  }

  .section-heading h2 {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .section-heading h2::after {
    width: 70%;
  }
}

@media (max-width: 576px) {
    .product-layout {
        width: 95%;
    }

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

    .filter-options {
        max-height: 180px;
    }
}

@media (max-width: 400px) {
    .filter-title {
        font-size: 16px;
    }

    .filter-heading {
        font-size: 14px;
    }

    .filter-options label {
        font-size: 13px;
    }

     .section-heading {
    gap: 10px;
    margin: 40px 0 25px;
  }

  .section-heading h2 {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .section-heading h2::after {
    width: 80%;
    height: 2px;
  }

  /* shorter side lines on small screens */
  .section-heading .line {
    max-width: 40px;
  }
}


.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px 0 40px;
  padding: 0 20px;
}

.section-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

/* glowing underline */
.section-heading h2::after {
  content: "";
  /* display: block; */
  width: 60%;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, #ff2d8d, #b400ff);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 45, 141, 0.8);
}

.section-heading .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 45, 141, 0.7),
    transparent
  );
}

