.cb-product {
    color: #24211d;
    background: #fff;
}

.cb-product-shell {
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(320px, 420px);
    gap: clamp(28px, 5vw, 72px);
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 56px) 20px 36px;
}
.cb-product-shell h1{
font-size:1em
}
.cb-product-media {
    display: grid;
    gap: 14px;
}

.cb-product-hero,
.cb-product-thumb {
    margin: 0;
    overflow: hidden;
    background: #f7f3ec;
    border: 1px solid #ebe3d8;
}

.cb-product-hero {
    aspect-ratio: 4 / 3;
}

.cb-product-hero-img,
.cb-product-hero img,
.cb-product-thumb-img,
.cb-product-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.cb-product-thumb {
    aspect-ratio: 1 / 1;
}

.cb-product-summary {
    position: sticky;
    top: 28px;
    align-self: start;
    border-top: 3px solid #24211d;
    padding-top: 22px;
}

.cb-product-kicker {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8a5a20;
}

.cb-product-title {
    margin: 0 0 14px;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
}

.cb-product-price {
    margin-bottom: 22px;
    font-size: 22px;
    font-weight: 700;
}

.cb-product-short {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.85;
    color: #4d4740;
}

.cb-product-short p {
    margin: 0 0 12px;
}

.cb-product-cart {
    margin-bottom: 26px;
    padding: 18px;
    background: #faf7f1;
    border: 1px solid #eadfce;
}

.cb-product-cart form.cart {
    display: grid;
    gap: 12px;
    margin: 0;
}

.cb-product-cart .quantity {
    margin: 0;
}

.cb-product-cart input.qty,
.cb-product-cart select {
    width: 100%;
    min-height: 46px;
    border: 1px solid #b9aa96;
    border-radius: 0;
    background: #fff;
    color: #24211d;
}

.cb-product-cart .single_add_to_cart_button {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 0;
    background: #24211d;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .03em;
}

.cb-product-cart .single_add_to_cart_button:hover {
    background: #8a5a20;
}

.cb-product-facts {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #4d4740;
}

.cb-product-facts div {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebe3d8;
}

.cb-product-facts dt {
    font-weight: 700;
    color: #24211d;
}

.cb-product-facts dd {
    margin: 0;
}

.cb-product-lower {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(24px, 4vw, 56px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 20px 72px;
}

.cb-product-description {
    border-top: 1px solid #24211d;
    padding-top: 24px;
}

.cb-product-description h2 {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.35;
}

.cb-product-description-content {
    font-size: 15px;
    line-height: 1.9;
    color: #3f3932;
}

.cb-product-description-content p {
    margin: 0 0 16px;
}

.cb-product-details {
    border-top: 1px solid #d9cdbc;
}

.cb-product-details details {
    border-bottom: 1px solid #d9cdbc;
}

.cb-product-details summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 700;
}

.cb-product-details summary::-webkit-details-marker {
    display: none;
}

.cb-product-details summary::after {
    content: "+";
    float: right;
}

.cb-product-details details[open] summary::after {
    content: "-";
}

.cb-product-detail-content {
    padding-bottom: 18px;
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 860px) {
    .cb-product-shell,
    .cb-product-lower {
        display: block;
        padding-left: 16px;
        padding-right: 16px;
    }

    .cb-product-media {
        margin-bottom: 28px;
    }

    .cb-product-summary {
        position: static;
    }

    .cb-product-hero {
        aspect-ratio: 1 / 1;
    }

    .cb-product-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cb-product-lower {
        padding-top: 18px;
    }

    .cb-product-description {
        margin-bottom: 28px;
    }
}
