/* ================================
   GLOBAL WRAPPER
================================ */
.products-category-page,
.product-single {
    --gap: 40px;
    --gap-sm: 20px;
}

section.products_fullwidth {
    padding: 0;
}

/* ================================
   HERO
================================ */
section.products-category-hero {
    background-color: #f5f5dc;
}

.product-hero-flex {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    align-items: center;
}

.products-category-hero__inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--gap);
    align-items: center;
}

.products-category-hero__content {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}

.products-category-hero__content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #595045;
}

.product-image {
    flex: 1 1 400px;
}

.products-category-hero img,
.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
}

/* buttons */
.products-category-hero__buttons,
.product-variants {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-variant-actions {
    display: flex;
    gap: 1rem;
    margin: 10px 0;
}

.product-variants .solid-button, .products-category-hero__buttons .solid-button {
    background-color: #a68a6d;
    color: #ffffff !important;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    text-decoration: none;
}

.product-variants .solid-button:hover, .products-category-hero__buttons .solid-button:hover {
    background-color: #595045;
    color: #ffffff !important;
    text-decoration: none;
}

.product-variants .outline-button, .product-card__actions .outline-button, .products-category-hero__buttons .outline-button {
    background-color: transparent;
    color: #595045 !important;
    border: 2px solid #595045;
    border-radius: 999px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.product-variants .outline-button:hover, .product-card__actions .outline-button:hover, .products-category-hero__buttons .outline-button:hover {
    background-color: #595045;
    color: #ffffff !important;
    text-decoration: none;
}


/* ================================
   TRUST BAR
================================ */
.products-category-trust-bar {
    background-color: #595045;
    color: #f5deb3;
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* ================================
   CATALOG HEADER
================================ */
.products-category-catalog__header {
    margin-bottom: 50px;
    text-align: center;
}

.products-category-catalog__header h2 {
    color: #595045;
    font-weight: 700;
    border-bottom: 2px solid #a68a6d;
    padding-bottom: 10px;
    text-align: center;
    display: inline-block;
}

.products-category-catalog__intro {
    margin-top: 10px;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   PRODUCTS GRID
================================ */
.products-category-catalog__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* CARD */
.product-card {
    flex: 1 1 260px;
    max-width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    background: #fff;
    border: 1px solid #dfe2cc;
    border-radius: 12px;
    text-align: left;
    transition: all .3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(89, 80, 69, 0.08);
    border-color: #a68a6d;
    transform: translateY(-4px);
}

.product-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
}

/* image */
.product-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* content */
.product-card__content {
    padding: 15px 0;
}

.product-card__title {
    margin: 10px 0;
    color: #595045;
    font-weight: 700;
    font-size: 1.3rem;
    transition: color 0.2s ease;
}

/* badge */
.product-card__badge {
    background-color: #f5f5dc;
    color: #a68a6d;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    align-self: flex-start;
}

/* actions */
.product-card__actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

section#category-catalog .product-card__actions {
    margin-top: auto;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

section#category-catalog .product-card__actions .outline-button {
    background: transparent;
    color: #595045 !important;
    border: 1px solid #595045;
    padding: 10px 5px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: 0.2s;
    text-decoration: none;
}

section#category-catalog .product-card__actions .outline-button:hover {
    background: #595045;
    color: #ffffff !important;
    text-decoration: none;
}

section#category-catalog .product-card__actions .solid-button {
    background: #a68a6d;
    color: #ffffff !important;
    border: none;
    padding: 10px 5px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
    transition: 0.2s;
    text-decoration: none;
}

section#category-catalog .product-card__actions .solid-button:hover {
    background: #8c735a;
    color: #ffffff !important;
    text-decoration: none;
}

.product-card__actions .outline-button, .product-card__actions .solid-button {
    width: 100%;
}


/* ================================
   PAGINATION
================================ */
.products-category-catalog__pagination {
    margin-top: 40px;
}

/* ================================
   CONTENT SECTIONS
================================ */
.category-content-section {
    margin: 60px 0;
}

.category-content-section__split {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    align-items: center;
}

.category-content-section__text {
    flex: 1 1 400px;
}

.category-content-section__image {
    flex: 1 1 400px;
}

.category-content-section__image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

/* centered layout */
.category-content-section__center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ================================
   BENEFITS
================================ */
.products-category-benefits {
    padding: 60px 0;
}

.products-category-benefits__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    flex: 1 1 250px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #f5deb3;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid #a68a6d;
    padding-bottom: 10px;
    display: inline-block;
}

.benefit-item__content {
    color: #fff;
    opacity: 0.9;
    margin: 1.5rem 0;
}

/* ================================
   FAQ
================================ */
.products-category-faq {
    padding: 60px 0;
}

.products-category-faq h2 {
    text-align: center;
}

.products-category-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 60px;
}

.products-category-faq__grid .faq-item {
    background-color: #ffffff;
    border-left: 4px solid #a68a6d;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.products-category-faq__grid .faq-item:hover {
    transform: translateY(-3px);
}

.products-category-faq__grid .faq-item h3 {
    margin-bottom: 5px;
}

.products-category-faq__grid .faq-item h3 {
    font-size: 1.1rem;
    color: #595045;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.products-category-faq__grid .faq-item p {
    margin-bottom: 0;
    color: #6f6f6f;
    font-size: 0.95rem;
}


/* ================================
   SINGLE - USP
================================ */
.usp-flex {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm);
}

.usp-item {
    flex: 1 1 200px;
    text-align: center;
}

/* ================================
   SINGLE - SPECS
================================ */
.specs-flex {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}

.specs-left {
    flex: 1 1 500px;
}

.specs-right {
    flex: 1 1 300px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table td {
    padding: 8px 0;
}

/* ================================
   PACKAGING
================================ */
.packaging-flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ================================
   APPLICATIONS
================================ */
.applications-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.app-item {
    flex: 1 1 250px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {

    .product-card {
        max-width: calc(50% - 15px);
    }

}

@media (max-width: 600px) {

    .product-card {
        max-width: 100%;
    }

    .products-category-hero__inner,
    .product-hero-flex,
    .category-content-section__split,
    .specs-flex {
        flex-direction: column;
    }

}


/* ========================================
   PRODUCT SINGLE WRAPPER
======================================== */
.product-single {
    --gap: 40px;
    --gap-sm: 20px;
    --text: #5b554f;
    --heading: #3b352f;
    --accent: #b19167;
}

/* ========================================
   HERO
======================================== */
.product-single .product-hero {
    padding: 50px 0 30px;
    background-color: #efedd9;
}

.product-single .product-hero-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gap);
}

/* IMAGE */
.product-single .product-image {
    flex: 1 1 360px;
    display: flex;
    justify-content: center;
}

.product-single .product-image img {
    max-height: 420px;
    width: auto;
    object-fit: contain;
}

/* CONTENT */
.product-single .product-content {
    flex: 1 1 480px;
    max-width: 680px;
}

/* BADGE */
.product-single .product-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    background: #6d6153;
    color: #fff;
}

/* TITLE */
.product-single h1 {
    margin: 0 0 20px;
    font-size: 52px;
    line-height: 1.05;
    color: var(--heading);
}

/* LEAD */
.product-single .product-lead {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

/* FEATURES */
.product-single .product-features {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.product-single .product-features li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    font-size: 14px;
}

.product-single .product-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* VARIANTS */
.product-single .product-variants {
    margin-top: 24px;
}

.product-single .product-variants label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-single .product-variants select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d8d1c7;
    border-radius: 6px;
}

/* ========================================
   USP BAR
======================================== */
.product-single .product-usp {
    padding: 14px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.product-single .usp-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.product-single .usp-item {
    /* flex: 1 1 200px; */
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #f5deb3;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
}

.product-single .usp-item i {
    font-weight: 900;
    margin-right: 8px;
}

/* ========================================
   SPEC + PACKAGING
======================================== */
.product-single .product-specs {
    padding: 60px 0;
}

.product-single .specs-flex {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: var(--gap);
    align-items: start;
}

.product-single .specs-flex.no-packaging {
    grid-template-columns: 1fr;
}

/* LEFT */
.product-single .specs-left {
    flex: 1 1 100%;
}

.product-single .specs-left h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

/* INTRO */
.product-single .specs-intro {
    margin-bottom: 20px;
    color: var(--text);
}

/* TABLE */
.product-single .spec-table {
    width: 100%;
    border-collapse: collapse;
}

.product-single .spec-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.product-single .spec-table td {
    padding: 12px 0;
    font-size: 14px;
}

.product-single .spec-table td:first-child {
    width: 40%;
    font-weight: 700;
}

/* RIGHT */
.product-single .specs-right {
    flex: 0 1 360px;
}

/* PACKAGING BOX */
.product-single .packaging-flex {
    background: #efedd9;
    padding: 28px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-single .pack-item_title {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
}

.product-single .pack-item strong {
    display: block;
}

.product-single .pack-item p {
    font-size: 14px;
    color: var(--text);
}

/* ========================================
   APPLICATIONS (BREWING)
======================================== */
.product-single .product-applications {
    padding: 60px 0 20px;
    text-align: center;
}

.product-single .product-applications h2 {
    margin-bottom: 12px;
    font-size: 32px;
}

.product-single .app-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text);
}

/* CARDS */
.product-single .applications-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.product-single .app-item {
    flex: 1 1 260px;
    max-width: 360px;
    background: #efedd9;
    padding: 22px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #dfe2cc;
}

.product-single .app-item .app-item_title {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
}

.product-single .app-item h4 {
    margin: 0;
    font-size: 18px;
}

.product-single .app-item p {
    font-size: 14px;
    color: var(--text);
}

.product-single .product-other-products {
    padding: 60px 0;
    text-align: center;
    background-color: #f5f5f5;
}

.product-single .product-other-products__header {
    max-width: 860px;
    margin: 0 auto 34px;
}

.product-single .product-other-products__header h2 {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    color: #3b352f;
}

.product-single .product-other-products__intro {
    color: #5b554f;
    font-size: 15px;
    line-height: 1.75;
}

.product-single .product-other-products__intro p:last-child {
    margin-bottom: 0;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .products-category-hero__inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 992px) {
    .product-single h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .products-category-hero__inner {
        grid-template-columns: 1fr;
    }
    .product-single .specs-flex {
        grid-template-columns: 1fr;
    }

    .product-single .product-hero-flex {
        flex-direction: column;
    }

    .product-single .product-image img {
        max-height: 300px;
    }

    .product-single h1 {
        font-size: 32px;
    }

    .product-single .usp-item {
        text-align: left;
    }

    section#category-catalog .product-card__actions {
        grid-template-columns: 1fr;
    }

    .products-category-faq__grid {
        grid-template-columns: 1fr;
    }

    .category-content-section.category-content-section--box_left_text_right .category-content-section__split {
        flex-direction: column-reverse;
    }
}



/* ========================================
   ZERO RISK TEMPLATE PART
======================================== */
.zero-risk {
    padding: 70px 0;
    text-align: center;
    background-color: #f5f5f5;
}

.zero-risk__header {
    max-width: 820px;
    margin: 0 auto 40px;
}

.zero-risk__header h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.zero-risk__header p {
    color: #6b625a;
}

.zero-risk__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.zero-risk__item {
    flex: 1 1 300px;
    max-width: 360px;
    padding: 30px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #dfe2cc;
}

.zero-risk__number {
    width: 42px;
    height: 42px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #a88762;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}