#prod-content {
    font-family: "roboto";
    padding-top: 40px;
}
  .product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.thumbnail {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    cursor: pointer;
    margin-bottom: 5px;
    border-radius: 4px;
}
.thumbnail.active {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}
.price-old {
    text-decoration: line-through;
    color: #7e7e7e;
    font-size: 20px;
    font-weight: 700;
    margin-top: auto;
}
.btn-wb {
    background: #9e178e;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s;
}
.btn-wb:hover {
    background: #8f137e;
}
.btn-green {
    background: #28a745;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
}
.btn-green:hover {
    background: #218838;
}
.tag-best-seller {
    background: var(--main-green);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
}
.tag-available {
   
    color: var(--main-green);
    padding: 4px 8px;
    border-radius: 4px;
    font-size:16px;
    font-weight: 500;
}
.tag-category {
    background: #f8d7da;
    color: #721c24;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
    font-family: "roboto";
}
.rating {
    color: #ffc107;
}
.discount-badge {
    background: var(--main-green);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.discount-badge i {
    font-size: 22px;
}

.swiper {
    width: 100%;
    height: 400px;
    user-select: none;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
}

.swiper-thumbs {
    width: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.swiper-thumb {
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.swiper-thumb.active {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.swiper-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
    color: #6c757d;
    opacity: 0.7;
    transition: all 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #28a745;
    opacity: 1;
}
h1 {
    font-size: 40px;
    line-height: 1;
    font-weight: 500;
    font-family: "roboto";
}
.price {
    margin-bottom: 0;
    font-size: 45px;
    font-family: "roboto";
    line-height: 1;
}

.good-price {
    background-color: #f0f0f0;
    color: #7e7e7e;
    font-size: 14px;
    margin-top: 14px;
}
.short-desc {
    font-size: 16px;
    font-family: "roboto";
    font-weight: 400;
    width: 300px;
    max-width: 100%;
}
.add-to-cart {
    background-color: var(--main-green);
    font-size: 20px;
    color: #ffffff;
    border-radius: 50px;
    transition: all .3s;
}
.add-to-cart:hover {
    background-color: #03bc8e;
    
    color: #ffffff;
}
.link-wb {

}
.link-wb:hover {
    color: #ffffff;
}
.top-prod-content {
    margin-bottom: 60px;
}
.prod-info {
    width: 1015px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}
.accordion-button:not(.collapsed) {
    background-color: var(--main-green);
    color: #ffffff;
}
.accordion-button {
    background-color: #f9f9f9;
    color: #000000;
    font-size: 25px;
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);;
    
    border-radius: var(--bs-accordion-border-radius);
}
.accordion-body {
    background-color: #f9f9f9;
    font-size: 18px;
    line-height: 28px;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-item {
    margin-bottom: 20px;
    border-radius: var(--bs-accordion-border-radius);
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);;
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}