/* =========================
PRODUCT ACCORDION
========================= */

.custom-product-accordion {
    margin-top: 32px;
    border-top: 1px solid #cfc7bf;
}

.custom-product-accordion details {
    border-bottom: 1px solid #cfc7bf;
}

.custom-product-accordion summary {
    list-style: none;
    cursor: pointer;

    /* UPDATED SPACING */
    padding: 14px 0;

    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #222;
    position: relative;

    transition: all 0.3s ease;
}

.custom-product-accordion summary:hover {
    color: #000;
}

.custom-product-accordion summary::-webkit-details-marker {
    display: none;
}

.custom-product-accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.custom-product-accordion details[open] summary::after {
    content: "−";
}

.accordion-content {

    /* UPDATED SPACING */
    padding: 0 0 14px;

    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================
SPECS TYPOGRAPHY
========================= */

.specs-content p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #5c5c5c;
    line-height: 1.7;
}

.specs-content strong {
    font-weight: 700;
    color: #2a2a2a;
}

/* ========================================
PRODUCT TABS
======================================== */

.custom-product-tabs {
    margin-top: 50px;
    border: 1px solid #bdb7b1;
}

/* TAB NAV */

.product-tabs-nav {
    display: flex;
    border-bottom: 1px solid #bdb7b1;
}

.product-tabs-nav .tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #666;
    border-right: 1px solid #bdb7b1;
    transition: all 0.3s ease;
}

.product-tabs-nav .tab-btn:last-child {
    border-right: none;
}

.product-tabs-nav .tab-btn.active {
    color: #222;
    background: #f8f6f3;
}

/* TAB CONTENT */

.tab-content {
    display: none;
    padding: 28px;
}

.tab-content.active {
    display: block;
}

/* DESCRIPTION TYPOGRAPHY */

.tab-inner-content {
    width: 100%;
    max-width: 100%;
}

.tab-inner-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* VIDEO */

.product-video-wrapper {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    display: flex;
    justify-content: center;
}

.product-video-wrapper iframe,
.product-video-wrapper video {
    width: 100%;
    aspect-ratio: 16 / 9;

    border: none;

    display: block;
}