.single-product-main {
    padding: 60px 0;
}
.vuv-single-product-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 24px;
    margin-bottom: 80px;
}
.vuv-product-gallery {
    flex: 0 0 60%;
    background: transparent;
}
.vuv-product-gallery img {
    width: 100%;
    height: auto;
    display: block;
}
.vuv-product-summary {
    flex: 0 0 35%;
}
.vuv-product-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    line-height: 1.1;
}
.vuv-sku-wrapper {
    font-family: var(--font-inter);
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}
.vuv-price-wrapper {
    font-family: var(--font-inter);
    font-size: 1.75rem;
    color: var(--color-maroon);
    font-weight: 600;
    margin-bottom: 30px;
}
.vuv-attr-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
.vuv-attr-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f8f8f8;
}
.vuv-attr-list li:last-child {
    border-bottom: none;
}
.stock {
    font-weight: 600;
    margin-bottom: 5px;
}
.in-stock {
    color: #27ae60;
}
.out-of-stock {
    color: #e74c3c;
}
.vuv-availability-note {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}
.vuv-product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}
.vuv-block-btn {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.vuv-product-description {
    color: #444;
    line-height: 1.8;
}

/* Related Products */
.related.products > h2 {
    font-family: 'EB Garamond', serif;
    font-size: 2rem;
    color: var(--color-maroon);
    text-align: center;
    margin-bottom: 40px;
}
.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.related.products ul.products li {
    margin: 0 !important;
    width: auto !important;
}

@media (min-width: 768px) {
    .vuv-single-product-layout {
        flex-direction: row;
        margin-top: 44px;
    }
    .related.products ul.products {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* PDP Gallery Additions */
.vuv-pdp-main-media {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--color-soft-sand);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.vuv-pdp-image, .vuv-pdp-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vuv-pdp-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 10px;
}
.vuv-thumb-btn {
    flex: 0 0 80px;
    height: 106px;
    padding: 0;
    border: 2px solid transparent;
    background: #f8f8f8;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.vuv-thumb-btn.is-active {
    border-color: var(--color-maroon);
}
.vuv-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vuv-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 20px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    z-index: 2;
}

/* Overlay for Lazy Load Play */
.vuv-pdp-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 10;
    cursor: pointer;
}
.vuv-pdp-play-overlay .vuv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.vuv-pdp-play-overlay .vuv-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

@media (min-width: 992px) {
    .vuv-single-product-layout {
        gap: 5%;
    }
}
.vuv-attr-list {
    border-top: 1px solid var(--color-soft-sand);
    border-bottom: 1px solid var(--color-soft-sand);
    margin-bottom: 40px;
}
.vuv-attr-list li {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--color-charcoal);
    border-bottom: 1px solid var(--color-soft-sand);
}
.vuv-pdp-trust-strip {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--color-soft-sand);
    border-bottom: 1px solid var(--color-soft-sand);
    gap: 15px;
    text-align: center;
}
.vuv-pdp-trust-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-maroon);
    font-weight: 500;
}
.related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
}
@media (min-width: 768px) {
    .related.products ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
    }
}
