/* Pure Vivid — WooCommerce Single Product Page */

:root {
    --pv-gold:   #B8740A;
    --pv-amber:  #E0900E;
    --pv-cream:  #faf7f2;
    --pv-border: #e8e2d8;
    --pv-dark:   #1a1a1a;
    --pv-mid:    #555;
}

/* ─── Page background ─────────────────────────────────── */
.woocommerce div.product,
.woocommerce-page div.product {
    background: var(--pv-cream);
}

/* ─── FIX: Remove Gutenberg block color highlights from descriptions ── */
.woocommerce div.product [class*="has-"][class*="background-color"] {
    background-color: transparent !important;
    padding: 0 !important;
}
.woocommerce div.product [class*="has-"][class*="color"]:not([class*="background"]) {
    color: inherit !important;
}

/* ─── Product summary (right column) ─────────────────── */
.woocommerce div.product div.summary {
    padding: 0 0 0 32px;
}

.woocommerce div.product .product_title {
    font-family: Unna, Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--pv-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--pv-gold) !important;
    margin-bottom: 16px;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    color: #bbb !important;
    font-size: 16px;
    font-weight: 400;
    margin-right: 6px;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    text-decoration: none;
    color: var(--pv-gold) !important;
}

/* Short description */
.woocommerce div.product .woocommerce-product-details__short-description {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--pv-mid);
    margin-bottom: 20px;
    border-top: 1px solid var(--pv-border);
    padding-top: 16px;
}

/* Variations dropdown */
.woocommerce div.product form.cart .variations select {
    background: #fff;
    border: 1px solid var(--pv-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    color: var(--pv-dark);
    width: 100%;
    outline: none;
}

/* Quantity */
.woocommerce div.product form.cart .quantity input[type=number] {
    background: #fff;
    border: 1px solid var(--pv-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    color: var(--pv-dark);
    width: 70px;
    text-align: center;
    font-family: Roboto, sans-serif;
}

/* Add to cart button */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background: var(--pv-dark) !important;
    color: #fff !important;
    font-family: Roboto, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border-radius: 8px !important;
    padding: 14px 32px !important;
    border: none !important;
    transition: background 0.2s !important;
    cursor: pointer !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: var(--pv-amber) !important;
}

/* ─── Product tabs ────────────────────────────────────── */
.woocommerce div.product .woocommerce-tabs {
    border-top: 1px solid var(--pv-border);
    margin-top: 40px;
    padding-top: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 0;
    border-bottom: 1px solid var(--pv-border);
    background: transparent;
    list-style: none;
    display: flex;
    gap: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    border-radius: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--pv-mid);
    padding: 14px 24px;
    display: block;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--pv-dark);
    border-bottom-color: var(--pv-amber);
}

/* Tab content */
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 28px 0;
    background: transparent;
    border: none;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-family: Unna, Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 14px;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel p,
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel li {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--pv-mid);
}

/* Description strong headings — make them stand out cleanly */
.woocommerce div.product .woocommerce-Tabs-panel--description strong {
    display: block;
    font-family: Unna, Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--pv-dark);
    margin-top: 16px;
    margin-bottom: 2px;
}

/* First strong doesn't need top margin */
.woocommerce div.product .woocommerce-Tabs-panel--description p:first-child strong {
    margin-top: 0;
}

/* ─── Related products ────────────────────────────────── */
.woocommerce .related.products h2 {
    font-family: Unna, Georgia, serif;
    font-size: 26px;
    color: var(--pv-dark);
    margin-bottom: 20px;
}

/* ─── Notices ─────────────────────────────────────────── */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    font-family: Roboto, sans-serif;
    border-top-color: var(--pv-amber) !important;
}
