/* ── Velour Theme - Product Single Page Styles ── */
/* Pixel-perfect implementation matching design/product-single.html */

/* ── Container ── */
.velour-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .velour-container {
        padding: 0 32px;
    }
}


/* ── Breadcrumbs ── */
.velour-breadcrumb {
    background: #fff;
    border-bottom: 1px solid var(--brand-border);
}

.velour-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 12px;
    color: var(--brand-muted);
    flex-wrap: wrap;
}

.velour-breadcrumb-link {
    color: var(--brand-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.velour-breadcrumb-link:hover {
    color: var(--brand-dark);
}

.velour-breadcrumb-sep {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    color: var(--brand-muted);
}

.velour-breadcrumb-current {
    color: var(--brand-dark);
    font-weight: 500;
}


/* ── Main Product Section ── */
.velour-pdp-main {
    background: #fff;
}

.velour-pdp-container {
    padding-top: 32px;
    padding-bottom: 48px;
}

@media (min-width: 1024px) {
    .velour-pdp-container {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

.velour-pdp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 1024px) {
    .velour-pdp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}


/* ── Image Gallery ── */
.velour-gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
}

@media (min-width: 768px) {
    .velour-gallery {
        flex-direction: row;
        gap: 12px;
    }
}

/* Thumbnails */
.velour-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.velour-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .velour-gallery-thumbs {
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 600px;
    }
}

.velour-thumb-btn {
    flex-shrink: 0;
    width: 64px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #f9fafb;
    cursor: pointer;
    padding: 0;
    opacity: 0.6;
    transition: all 0.2s ease;
}

@media (min-width: 768px) {
    .velour-thumb-btn {
        width: 80px;
        height: 96px;
    }
}

.velour-thumb-btn:hover {
    opacity: 0.9;
}

.velour-thumb-btn.active {
    border-color: var(--brand-dark);
    opacity: 1;
}

.velour-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Image */
.velour-gallery-main {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f9fafb;
    aspect-ratio: 3 / 4;
    cursor: zoom-in;
}

.velour-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.velour-gallery-main:hover img {
    transform: scale(1.06);
}

/* Product Badge */
.velour-pdp-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    z-index: 2;
}

.velour-badge-bestseller {
    background: var(--brand-sky);
    color: #fff;
}

.velour-badge-sale {
    background: var(--brand-secondary);
    color: #fff;
}

.velour-badge-new {
    background: var(--brand-highlight);
    color: var(--brand-dark);
}


/* ── Product Info ── */
.velour-pdp-info {
    display: flex;
    flex-direction: column;
}

.velour-pdp-brand {
    font-size: 14px;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.velour-pdp-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .velour-pdp-title {
        font-size: 36px;
    }
}


/* ── Rating ── */
.velour-pdp-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.velour-rating-stars {
    display: flex;
    gap: 2px;
}

.velour-star-filled {
    color: var(--brand-highlight);
    font-size: 16px;
}

.velour-star-filled svg {
    fill: var(--brand-highlight);
}

.velour-star-empty {
    color: #e5e7eb;
    font-size: 16px;
}

.velour-star-icon {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.velour-star-icon svg {
    display: block;
}

.velour-rating-link {
    font-size: 14px;
    color: var(--brand-sky);
    text-decoration: none;
    transition: text-decoration 0.15s;
}

.velour-rating-link:hover {
    text-decoration: underline;
}


/* ── Price Block ── */
.velour-pdp-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.velour-price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
}

.velour-price-current ins {
    text-decoration: none;
}

.velour-price-current .woocommerce-Price-amount {
    color: var(--brand-dark);
}

.velour-price-original {
    font-size: 14px;
    color: var(--brand-muted);
    text-decoration: line-through;
}

.velour-price-save {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-secondary);
}


/* ── Description ── */
.velour-pdp-desc {
    font-size: 14px;
    color: var(--brand-muted);
    line-height: 1.625;
    margin-bottom: 24px;
}


/* ── Option Groups (Color / Size) ── */
.velour-option-group {
    margin-bottom: 24px;
}

.velour-option-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.velour-option-value {
    font-weight: 400;
    color: var(--brand-muted);
}

/* ── Swatch Tooltips ── */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--brand-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
}

[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--brand-dark);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

[data-tooltip]:hover::before {
    opacity: 1;
}

/* Color Options */
.velour-color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.velour-color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: transform 0.15s ease;
    border: 2px solid var(--brand-border);
    padding: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.velour-color-swatch:hover {
    transform: scale(1.1);
}

.velour-color-swatch.active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--brand-dark);
    border-color: var(--brand-dark);
}

.velour-color-swatch.oos {
    opacity: 0.3;
    cursor: not-allowed;
}

.velour-swatch-inner {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.velour-color-swatch--light .velour-swatch-inner {
    border: 1px solid var(--brand-border);
}

/* Size Options */
.velour-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.velour-size-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--brand-border);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    color: var(--brand-dark);
    font-family: var(--font-sans);
}

.velour-size-btn:hover {
    border-color: var(--brand-dark);
}

.velour-size-btn.active {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
}

.velour-size-btn.oos {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Size Guide Button */
.velour-size-guide-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--brand-sky);
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 12px;
    transition: text-decoration 0.15s;
    font-family: var(--font-sans);
}

.velour-size-guide-btn:hover {
    text-decoration: underline;
}

.velour-size-guide-btn svg {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}


/* ── Purchase Row ── */
.velour-pdp-purchase {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

/* Quantity Selector */
.velour-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.velour-qty-btn {
    padding: 14px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--brand-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.velour-qty-btn:hover {
    color: var(--brand-dark);
    background: #f9fafb;
}

.velour-qty-input {
    width: 48px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-left: 1px solid var(--brand-border);
    border-right: 1px solid var(--brand-border);
    border-top: none;
    border-bottom: none;
    outline: none;
    background: transparent;
    font-family: var(--font-sans);
    color: var(--brand-dark);
    padding: 14px 0;
    -moz-appearance: textfield;
}

.velour-qty-input::-webkit-inner-spin-button,
.velour-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart Button */
.velour-add-to-cart {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--brand-dark);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.15);
}

.velour-add-to-cart:hover {
    background: rgba(17, 24, 39, 0.9);
}

.velour-add-to-cart svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Wishlist Button */
.velour-wishlist-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--brand-border);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-muted);
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.velour-wishlist-btn:hover {
    color: var(--brand-secondary);
    border-color: var(--brand-secondary);
}

.velour-wishlist-btn.active svg {
    color: var(--brand-secondary);
    fill: var(--brand-secondary);
}

.velour-wishlist-btn svg {
    width: 20px;
    height: 20px;
    transition: color 0.15s ease;
}


/* ── Trust Signals ── */
.velour-trust-signals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px;
    background: var(--brand-bg);
    border-radius: 12px;
    border: 1px solid var(--brand-border);
}

.velour-trust-item {
    text-align: center;
}

.velour-trust-item:not(:last-child) {
    border-right: 1px solid var(--brand-border);
}

.velour-trust-item svg {
    color: var(--brand-sky);
    width: 18px;
    height: 18px;
    display: block;
    margin: 0 auto 4px;
}

.velour-trust-item p {
    font-size: 10px;
    font-weight: 500;
    color: var(--brand-dark);
    margin: 0;
}


/* ── Accordion ── */
.velour-accordion {
    border-top: 1px solid var(--brand-border);
}

.velour-accordion-item {
    border-bottom: 1px solid var(--brand-border);
}

.velour-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    font-family: var(--font-sans);
    transition: color 0.15s ease;
}

.velour-accordion-trigger:hover {
    color: var(--brand-sky);
}

.velour-acc-icon {
    display: inline-flex;
    align-items: center;
    color: var(--brand-muted);
    transition: transform 0.2s ease;
}

.velour-acc-icon svg {
    display: block;
}

.velour-accordion-item.open .velour-acc-icon {
    transform: rotate(180deg);
}

.velour-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.velour-accordion-item.open .velour-accordion-content {
    max-height: 500px;
}

.velour-accordion-text {
    padding-bottom: 16px;
    font-size: 14px;
    color: var(--brand-muted);
    line-height: 1.625;
}

.velour-accordion-text ul {
    list-style: disc;
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

.velour-accordion-text li {
    margin-bottom: 4px;
}

.velour-accordion-text p {
    margin-bottom: 8px;
}

.velour-accordion-text p:last-child {
    margin-bottom: 0;
}

.velour-accordion-text strong {
    color: var(--brand-dark);
}


/* ── Variation Price Display ── */
.velour-variation-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 8px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--brand-border);
    animation: velourFadeInPrice 0.3s ease;
}

@keyframes velourFadeInPrice {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.velour-variation-price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
}

.velour-variation-price-current ins {
    text-decoration: none;
}

.velour-variation-price-original {
    font-size: 14px;
    color: var(--brand-muted);
    text-decoration: line-through;
}

.velour-variation-price-save {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-secondary);
}


/* ── Reviews Section ── */
.velour-reviews-section {
    background: var(--brand-bg);
    border-top: 1px solid var(--brand-border);
    padding: 48px 0;
}

@media (min-width: 1024px) {
    .velour-reviews-section {
        padding: 64px 0;
    }
}

.velour-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .velour-reviews-grid {
        flex-direction: row;
        gap: 64px;
        align-items: flex-start;
    }
}

/* Review Summary (Left) */
.velour-reviews-summary {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .velour-reviews-summary {
        width: 288px;
        position: sticky;
        top: 96px;
    }
}

.velour-reviews-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.velour-reviews-score {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.velour-reviews-big-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1;
}

.velour-reviews-out-of {
    font-size: 14px;
    color: var(--brand-muted);
}

.velour-reviews-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.velour-reviews-based-on {
    font-size: 12px;
    color: var(--brand-muted);
    margin-bottom: 24px;
}

/* Rating Bars */
.velour-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.velour-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.velour-bar-label {
    font-size: 12px;
    color: var(--brand-muted);
    width: 16px;
    text-align: right;
}

.velour-bar-track {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 100px;
    overflow: hidden;
}

.velour-bar-fill {
    height: 100%;
    background: var(--brand-highlight);
    border-radius: 100px;
    transition: width 1s ease;
}

.velour-bar-count {
    font-size: 12px;
    color: var(--brand-muted);
    width: 32px;
    text-align: right;
}

/* Write Review Button */
.velour-write-review-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--brand-dark);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    color: var(--brand-dark);
    font-family: var(--font-sans);
}

.velour-write-review-btn:hover {
    background: var(--brand-dark);
    color: #fff;
}


/* ── Review Cards (Right) ── */
.velour-reviews-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.velour-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--brand-border);
}

.velour-review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.velour-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.velour-review-stars svg {
    width: 14px;
    height: 14px;
}

.velour-review-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    margin: 0;
}

.velour-review-verified {
    font-size: 10px;
    font-family: monospace;
    color: var(--brand-muted);
    background: var(--brand-bg);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.velour-review-text {
    font-size: 14px;
    color: var(--brand-muted);
    line-height: 1.625;
    margin-bottom: 12px;
}

.velour-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.velour-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}

.velour-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.velour-author-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--brand-dark);
    margin: 0;
}

.velour-author-meta {
    font-size: 10px;
    color: var(--brand-muted);
    margin: 0;
}

.velour-no-reviews {
    font-size: 14px;
    color: var(--brand-muted);
    text-align: center;
    padding: 40px 0;
}

/* Load More Reviews */
.velour-load-more-reviews {
    display: block;
    margin: 32px auto 0;
    padding: 12px 32px;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    color: var(--brand-dark);
    font-family: var(--font-sans);
}

.velour-load-more-reviews:hover {
    border-color: var(--brand-dark);
    background: var(--brand-dark);
    color: #fff;
}


/* ── Review Modal ── */
.velour-review-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.velour-review-modal.active {
    display: flex;
}

.velour-review-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.velour-review-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: velourModalSlideIn 0.3s ease;
    margin: 20px;
}

@keyframes velourModalSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.velour-review-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: color 0.15s ease;
}

.velour-review-modal-close:hover {
    color: var(--brand-dark);
}

.velour-review-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.velour-review-modal-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--brand-dark);
}

.velour-review-modal-header p {
    font-size: 14px;
    color: var(--brand-muted);
}

/* Review Form */
.velour-form-group {
    margin-bottom: 20px;
}

.velour-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.velour-form-group input,
.velour-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-sans);
    transition: all 0.15s ease;
    outline: none;
    background: transparent;
    color: var(--brand-dark);
    box-sizing: border-box;
}

.velour-form-group input:focus,
.velour-form-group textarea:focus {
    border-color: var(--brand-sky);
    box-shadow: 0 0 0 2px rgba(0, 114, 255, 0.25);
}

.velour-form-group input::placeholder,
.velour-form-group textarea::placeholder {
    color: var(--brand-muted);
}

.velour-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.velour-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Star Rating Input */
.velour-star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
}

.velour-star-rating-input .star {
    cursor: pointer;
    transition: transform 0.15s ease;
}

.velour-star-rating-input .star:hover,
.velour-star-rating-input .star.active {
    transform: scale(1.15);
}

.velour-star-rating-input .star svg {
    width: 28px;
    height: 28px;
    display: block;
    color: #e5e7eb;
    transition: color 0.15s ease;
}

.velour-star-rating-input .star.active svg {
    color: var(--brand-highlight);
}

.velour-submit-review {
    width: 100%;
    padding: 16px;
    background: var(--brand-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    margin-top: 8px;
    font-family: var(--font-sans);
}

.velour-submit-review:hover {
    background: #333;
}


/* ── Related Products Section ── */
.velour-related-section {
    background: #fff;
    border-top: 1px solid var(--brand-border);
    padding: 48px 0;
}

@media (min-width: 1024px) {
    .velour-related-section {
        padding: 64px 0;
    }
}

.velour-related-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .velour-related-title {
        font-size: 30px;
    }
}

.velour-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 1024px) {
    .velour-related-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Related Product Card */
.velour-related-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--brand-border);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.velour-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.velour-related-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.velour-related-badge.velour-badge-sale {
    background: var(--brand-secondary);
    color: #fff;
}

.velour-related-badge.velour-badge-new {
    background: var(--brand-highlight);
    color: var(--brand-dark);
}

.velour-related-img {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f3f4f6;
}

.velour-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.velour-related-card:hover .velour-related-img img {
    transform: scale(1.06);
}

.velour-related-info {
    padding: 12px;
}

@media (min-width: 1024px) {
    .velour-related-info {
        padding: 16px;
    }
}

.velour-related-brand {
    font-size: 10px;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.velour-related-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.velour-related-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    display: block;
    margin-bottom: 8px;
}

.velour-related-price del {
    font-size: 12px;
    color: var(--brand-muted);
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 6px;
}

.velour-related-price ins {
    text-decoration: none;
}

.velour-related-colors {
    display: flex;
    gap: 4px;
}

.velour-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--brand-border);
}


/* ── Lightbox ── */
.velour-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.velour-lightbox.active {
    display: flex;
}

.velour-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    transition: background 0.15s ease;
}

.velour-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.velour-lightbox img {
    max-width: 80vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
}


/* ── Scroll Top Button ── */
.velour-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--brand-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    z-index: 999;
    border: none;
    opacity: 0;
    pointer-events: none;
}

.velour-scroll-top.visible {
    opacity: 0.8;
    pointer-events: auto;
}

.velour-scroll-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.velour-scroll-top svg {
    width: 18px;
    height: 18px;
}


/* ── WooCommerce Overrides ── */
.single-product .woocommerce-product-gallery {
    display: none !important;
}

.single-product .summary {
    display: none !important;
}

.single-product .woocommerce-tabs {
    display: none !important;
}

.single-product div.product .woocommerce-breadcrumb {
    display: none;
}

.single-product div.product .product_title {
    display: none;
}

.single-product div.product .price {
    display: none;
}

.single-product .woocommerce-message,
.single-product .woocommerce-info,
.single-product .woocommerce-error {
    margin-bottom: 24px;
}

.single-product .woocommerce-message::before,
.single-product .woocommerce-info::before,
.single-product .woocommerce-error::before {
    display: none;
}


/* ── Responsive ── */
@media (max-width: 767px) {
    .velour-pdp-grid {
        gap: 24px;
    }

    .velour-pdp-title {
        font-size: 24px;
    }

    .velour-price-current {
        font-size: 20px;
    }

    .velour-purchase-row {
        flex-direction: column;
    }

    .velour-reviews-grid {
        flex-direction: column;
    }

    .velour-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .velour-related-name {
        font-size: 12px;
    }

    .velour-related-price {
        font-size: 12px;
    }

    .velour-form-row {
        grid-template-columns: 1fr;
    }
}
