.zolar-single-product-wrapper {
    width: 100%;
    margin: 60px 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    color: #161616;
}

.zolar-product-container {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
}

/* Left: Images */
.zolar-product-gallery {
    flex: 1;
    min-width: 0;
}

.zolar-main-image-container {
    background-color: #f6fcf8;
    border-radius: 12px;
    padding: 40px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.zolar-main-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.zolar-main-image-container .zolar-badge {
    position: absolute;
    left: 20px;
    z-index: 2;
}

.zolar-main-image-container .zolar-badge-1 { top: 20px; }
.zolar-main-image-container .zolar-badge-2 { top: 50px; } /* Assuming badge 1 is standard size, fallback in PHP */

.zolar-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.zolar-thumb {
    width: 80px;
    height: 80px;
    background-color: #f6fcf8;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.zolar-thumb:hover, .zolar-thumb.active {
    border-color: #c9e265;
}

.zolar-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Right: Info */
.zolar-product-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.zolar-single-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.zolar-product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.zolar-rating-text {
    font-size: 14px;
    color: rgba(22, 22, 22, 0.65);
    margin-left: 10px;
}

.zolar-product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.zolar-product-price-wrapper .zolar-price-regular {
    font-size: 24px;
    color: rgba(22, 22, 22, 0.5);
    text-decoration: line-through;
}

.zolar-product-price-wrapper .zolar-price-sale {
    font-size: 32px;
    font-weight: 700;
    color: #c9e265;
}

.zolar-product-content {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(22, 22, 22, 0.75);
    margin-bottom: 40px;
}

.zolar-product-content p {
    margin-bottom: 15px;
}

.zolar-btn-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #161616;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-bottom: 40px;
}

.zolar-btn-video:hover {
    background-color: #c9e265;
    color: #161616;
}

.zolar-product-meta {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
    font-size: 14px;
    color: rgba(22, 22, 22, 0.65);
}

.zolar-product-meta p {
    margin: 0 0 10px 0;
}

.zolar-product-meta strong {
    color: #161616;
    margin-right: 5px;
}

/* Related Products */
.zolar-related-products h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .zolar-product-container {
        flex-direction: column;
        gap: 30px;
    }
    .zolar-single-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .zolar-single-title {
        font-size: 28px;
    }
    .zolar-product-price-wrapper .zolar-price-regular { font-size: 20px; }
    .zolar-product-price-wrapper .zolar-price-sale { font-size: 26px; }
}
