/* Product Page Styles */

.product-page {
    padding: 0 0 100px;
}

/* Product Content */
.product-page__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Gallery */
.product-page__gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-page__main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.product-page__main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.product-page__thumbnails {
    display: flex;
    gap: 10px;
}

.product-page__thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: #f5f5f5;
    transition: all 0.2s;
    user-select: none;
}

.product-page__thumbnails img:hover {
    border-color: rgba(150, 116, 93, 1);
}

.product-page__thumbnails img.active {
    border-color: rgba(150, 116, 93, 1);
}

/* Product Info */
.product-page__info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-page__title {
    font-size: 32px;
    font-weight: 700;
    color: #373737;
    margin: 0;
}

.product-page__price {
    font-size: 36px;
    font-weight: 700;
    color: #373737; 
}

.product-page__price-label {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-right: 20px;
}

.product-page__price-currency {
    font-size: 24px;
}

.product-page__description {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(55 55 55 / 60%);
}

.product-page__description p {
    margin: 0;
}

.product-page__composition {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(55 55 55 / 60%);
}
.product-page__composition span {
    margin-right: 20px;
    color: #000;
}

/* Actions */
.product-page__actions {
    display: flex;
    gap: 20px;
    padding-top: 20px;
}

.product-page__btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #373737;
    background-color: #fff;
    border: 1px solid #373737;
    border-radius: 0px 10px 0px 10px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex: 1;
}

.product-page__btn-add-to-cart:hover {
    background-color: #5DAF98;
    border-color: #5DAF98;
    color: #fff;
}

.product-page__btn-add-to-cart svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.product-page__btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(150, 116, 93, 1);
    background-color: transparent;
    border: 1px solid rgba(150, 116, 93, 1);
    border-radius: 0px 10px 0px 10px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex: 1;
}

.product-page__btn-contact:hover {
    background-color: rgba(150, 116, 93, 1);
    color: #fff;
    border-color: rgba(150, 116, 93, 1);
}

.product-page__btn-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Details */
.product-page__details {
    margin-top: 20px;
}

.product-page__details h2 {
    font-size: 24px;
    font-weight: 700;
    color: #373737;
    margin: 0 0 15px;
}

.product-page__details p {
    font-size: 16px;
    line-height: 1.6;
    color: #373737;
    margin: 0;
}

.assortment {
    margin-bottom: 110px;
}
.assortment-header {
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-page__content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .product-page {
        padding: 20px 0 50px;
    }
    
    .product-page__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-page__title {
        font-size: 24px;
    }
    
    .product-page__price {
        font-size: 28px;
    }
    
    .product-page__price-currency {
        font-size: 20px;
    }
    
    .product-page__actions {
        flex-direction: column;
    }
    
    .product-page__btn-add-to-cart {
        width: 100%;
    }
}

