/*
 Shredder2u.com.my — WooCommerce Archive Styles
 Applies to: shop, product category, product tag, brand (pwb-brand) pages
 Enqueued via: functions.php → is_shop() || is_product_category() || is_product_tag() || is_tax('pwb-brand')
 Version: v3.20260502-01
*/

/* =============================================================
   TABLE OF CONTENTS
   1.  Product Grid (2-col mobile, 4-col desktop)
   2.  Product Card — Button Alignment & Titles
   3.  Sale Badge
   4.  Backorder Badge
   5.  Archive Hero Banner
   6.  Result Count & Sort Bar
   7.  Product Cards — Full Styling
   8.  Pagination
   9.  Brands Page (pwb-brands)
   10. Brand Page Banner
   11. Brand Page Description
   12. Shop Navigation Bar (shr-navbar)
   13. Category FAQ Section
   ============================================================= */


/* =============================================================
   1. PRODUCT GRID
   Float-based 2-col on mobile, grid 4-col on desktop.
   Ghost cell fix: kill ::before/::after clearfix on grid.
   ============================================================= */

/* Default 2-column float layout (mobile-first, Storefront base) */
ul.products li.product {
    width: 46.411765%;
    float: left;
    margin-right: 5.8823529412%;
}

ul.products li.product:nth-of-type(2n) {
    margin-right: 0;
}

@media (min-width: 768px) {
    ul.products li.product:nth-of-type(2n) {
        margin-right: 5.8823529412%;
    }
}

/* 4-column CSS grid on archive pages (overrides float above) */
.post-type-archive-product ul.products,
.tax-product_cat ul.products,
.tax-product_tag ul.products,
.tax-pwb-brand ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 18px !important;
    float: none !important;
}

/* Reset float-based widths and margins inside grid */
.post-type-archive-product ul.products li.product,
.tax-product_cat ul.products li.product,
.tax-product_tag ul.products li.product,
.tax-pwb-brand ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}

/* Kill nth-child rules that cause ghost cells in grid */
.post-type-archive-product ul.products li.product:nth-child(3n),
.post-type-archive-product ul.products li.product:nth-child(3n+1),
.post-type-archive-product ul.products li.product:nth-child(4n),
.post-type-archive-product ul.products li.product:nth-child(4n+1),
.tax-product_cat ul.products li.product:nth-child(3n),
.tax-product_cat ul.products li.product:nth-child(3n+1),
.tax-product_cat ul.products li.product:nth-child(4n),
.tax-product_cat ul.products li.product:nth-child(4n+1),
.tax-product_tag ul.products li.product:nth-child(3n),
.tax-product_tag ul.products li.product:nth-child(3n+1),
.tax-product_tag ul.products li.product:nth-child(4n),
.tax-product_tag ul.products li.product:nth-child(4n+1),
.tax-pwb-brand ul.products li.product:nth-child(3n),
.tax-pwb-brand ul.products li.product:nth-child(3n+1),
.tax-pwb-brand ul.products li.product:nth-child(4n),
.tax-pwb-brand ul.products li.product:nth-child(4n+1) {
    margin-left: 0 !important;
    clear: none !important;
}

/* Kill Storefront clearfix pseudo-elements (become ghost grid cells) */
.post-type-archive-product ul.products::before,
.tax-product_cat ul.products::before,
.tax-product_tag ul.products::before,
.tax-pwb-brand ul.products::before,
.post-type-archive-product ul.products::after,
.tax-product_cat ul.products::after,
.tax-product_tag ul.products::after,
.tax-pwb-brand ul.products::after {
    display: none !important;
    content: none !important;
}

/* Tablet — 3 columns */
@media (max-width: 900px) {

    .post-type-archive-product ul.products,
    .tax-product_cat ul.products,
    .tax-product_tag ul.products,
    .tax-pwb-brand ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Mobile — 2 columns */
@media (max-width: 600px) {

    .post-type-archive-product ul.products,
    .tax-product_cat ul.products,
    .tax-product_tag ul.products,
    .tax-pwb-brand ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}


/* =============================================================
   2. PRODUCT CARD — BUTTON ALIGNMENT & TITLES
   ============================================================= */

/* Minimum image link height keeps cards uniform */
li.type-product a:first-child {
    min-height: 345px;
    display: block;
}

.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-weight: 600;
}


/* =============================================================
   3. SALE BADGE (global colour override)
   ============================================================= */

.onsale {
    background-color: #e63946;
    color: #fff;
}


/* =============================================================
   4. BACKORDER BADGE
   ============================================================= */

.woocommerce div.product p.stock.available-on-backorder,
.woocommerce ul.products li.product .available-on-backorder {
    background: #ffe7cc;
    color: #cc5500;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 700;
}


/* =============================================================
   5. ARCHIVE HERO BANNER
   Dark navy full-bleed banner with dot texture and red underline.
   ============================================================= */

.tax-product_cat .woocommerce-products-header,
.tax-product_tag .woocommerce-products-header,
.tax-pwb-brand .woocommerce-products-header,
.post-type-archive-product .woocommerce-products-header {
    background: linear-gradient(135deg, #111d2e 0%, #1a2e45 55%, #0f1923 100%) !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 40px 5vw 36px !important;
    margin-bottom: 28px !important;
    margin-top: 0 !important;
    text-align: left !important;
}

/* Dot grid texture */
.tax-product_cat .woocommerce-products-header::before,
.tax-product_tag .woocommerce-products-header::before,
.tax-pwb-brand .woocommerce-products-header::before,
.post-type-archive-product .woocommerce-products-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

/* Red bottom accent line */
.tax-product_cat .woocommerce-products-header::after,
.tax-product_tag .woocommerce-products-header::after,
.tax-pwb-brand .woocommerce-products-header::after,
.post-type-archive-product .woocommerce-products-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, #e63946 35%, #e63946 65%, transparent 95%);
}

/* Banner title */
.tax-product_cat .woocommerce-products-header__title,
.tax-product_tag .woocommerce-products-header__title,
.tax-pwb-brand .woocommerce-products-header__title,
.post-type-archive-product .woocommerce-products-header__title {
    color: #fff !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    margin: 0 0 12px !important;
    position: relative;
    z-index: 2;
    text-align: left !important;
}

/* Red short underline below title */
.tax-product_cat .woocommerce-products-header__title::after,
.tax-product_tag .woocommerce-products-header__title::after,
.tax-pwb-brand .woocommerce-products-header__title::after,
.post-type-archive-product .woocommerce-products-header__title::after {
    content: '';
    display: block;
    margin-top: 10px;
    height: 2px;
    width: 56px;
    background: linear-gradient(to right, #e63946, rgba(230, 57, 70, 0.15));
    border-radius: 1px;
}

/* Term description text */
.tax-product_cat .term-description,
.tax-product_tag .term-description,
.tax-pwb-brand .term-description {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
    max-width: 680px !important;
    position: relative;
    z-index: 2;
}

.page-description,
.page-description p {
    color: #fff !important;
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
    max-width: 680px !important;
    position: relative;
    z-index: 2;
}

.tax-product_cat .term-description p,
.tax-product_tag .term-description p,
.tax-pwb-brand .term-description p {
    color: rgba(255, 255, 255, 0.68) !important;
    margin-bottom: 6px !important;
}

/* Mobile title size */
@media (max-width: 768px) {

    .tax-product_cat .woocommerce-products-header__title,
    .tax-product_tag .woocommerce-products-header__title,
    .tax-pwb-brand .woocommerce-products-header__title {
        font-size: 1.5rem !important;
    }
}


/* =============================================================
   6. RESULT COUNT & SORT BAR
   ============================================================= */

.woocommerce .woocommerce-result-count {
    font-size: 0.85rem !important;
    color: #6b7280 !important;
    font-weight: 600 !important;
}

.woocommerce .woocommerce-ordering select {
    border: 1.5px solid #e8edf2 !important;
    border-radius: 6px !important;
    padding: 8px 32px 8px 14px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    background-color: #fff !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) !important;
}

.woocommerce .woocommerce-ordering select:focus {
    border-color: #e63946 !important;
    outline: none !important;
}


/* =============================================================
   7. PRODUCT CARDS — FULL STYLING
   White card with hover lift, red accent on hover.
   ============================================================= */

.woocommerce ul.products li.product {
    background: #fff !important;
    border: 1px solid #e8edf2 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s !important;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 8px 28px rgba(230, 57, 70, 0.12) !important;
    border-color: #e63946 !important;
    transform: translateY(-3px) !important;
}

.woocommerce ul.products li.product img {
    margin: 0 !important;
    border-radius: 0 !important;
    transition: transform 0.35s ease !important;
    width: 100% !important;
    display: block !important;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.04) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #111d2e !important;
    line-height: 1.4 !important;
    padding: 14px 16px 6px !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product .price {
    color: #e63946 !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    padding: 0 16px 4px !important;
    margin: 0 !important;
    display: block !important;
}

.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price del .woocommerce-Price-amount {
    color: #9ca3af !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

/* ── Add to Cart / Read More button ── */
.woocommerce ul.products li.product .button {
    display: block !important;
    width: calc(100% - 32px) !important;
    margin: 10px 16px 16px !important;
    padding: 10px 14px !important;
    background: #111d2e !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    border: none !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
    box-sizing: border-box !important;
}

.woocommerce ul.products li.product:hover .button,
.woocommerce ul.products li.product .button:hover {
    background: #e63946 !important;
    color: #fff !important;
}

/* ── YITH Request a Quote button ── */
.woocommerce ul.products li.product .add-request-quote-button,
.woocommerce ul.products li.product .add-request-quote-button.button {
    display: block !important;
    width: calc(100% - 32px) !important;
    margin: 0 16px 16px !important;
    padding: 8px 14px !important;
    background: transparent !important;
    color: #111d2e !important;
    border: 1.5px solid #e8edf2 !important;
    border-radius: 6px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: border-color 0.2s, color 0.2s !important;
    box-sizing: border-box !important;
}

.woocommerce ul.products li.product .add-request-quote-button:hover,
.woocommerce ul.products li.product .add-request-quote-button.button:hover {
    border-color: #e63946 !important;
    color: #e63946 !important;
    background: transparent !important;
}

/* ── Sale badge ── */
.woocommerce ul.products li.product .onsale {
    position: absolute !important;
    background: #e63946 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    padding: 4px 8px !important;
    top: 10px !important;
    right: 10px !important;
    left: auto !important;
    min-height: auto !important;
    min-width: auto !important;
    width: auto !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    display: inline-block !important;
}


/* =============================================================
   8. PAGINATION
   ============================================================= */

.woocommerce nav.woocommerce-pagination ul {
    border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
    margin: 0 3px !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 10px !important;
    border-radius: 6px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border: 1.5px solid #e8edf2 !important;
    background: #fff !important;
    color: #374151 !important;
    text-decoration: none !important;
    transition: all 0.15s ease !important;
    line-height: 1 !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus {
    background: #e63946 !important;
    border-color: #e63946 !important;
    color: #fff !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #e63946 !important;
    border-color: #e63946 !important;
    color: #fff !important;
}

@media (max-width: 480px) {

    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span {
        min-width: 34px !important;
        height: 34px !important;
        font-size: 0.82rem !important;
    }
}


/* =============================================================
   9. BRANDS PAGE (pwb-brands grid)
   ============================================================= */

.pwb-brands-cols-outer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.pwb-brands-col3 {
    flex: 1 1 calc(25% - 20px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pwb-brands-col3:hover {
    transform: translateY(-10px);
}

.pwb-brands-col3 img {
    width: 250px;
    height: auto;
    transition: opacity 0.3s ease;
}

.pwb-brands-col3:hover img {
    opacity: 0.8;
}

.pwb-brands-col3 p {
    padding: 20px;
    text-align: center;
    font-weight: bold;
    margin: 0;
}

.pwb-brands-col3 a {
    color: inherit !important;
    text-decoration: none !important;
    border: none;
    background: transparent;
}

@media (max-width: 767px) {
    .pwb-brands-col3 {
        flex: 1 1 calc(50% - 10px);
    }

    .pwb-brands-col3 img {
        width: 100%;
    }
}


/* =============================================================
   10. BRAND PAGE BANNER
   Fixed-size centred brand logo image above product grid.
   ============================================================= */

.pwb-brand-banner.pwb-before-loop {
    text-align: center;
    margin: 0 auto 24px;
    display: block;
}

.pwb-brand-banner.pwb-before-loop img {
    display: block;
    margin: 0 auto;
    width: 300px !important;
    height: 200px !important;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

@media (max-width: 768px) {
    .pwb-brand-banner.pwb-before-loop img {
        width: 220px !important;
        height: 150px !important;
    }
}


/* =============================================================
   11. BRAND PAGE DESCRIPTION
   Card-style description block above the product grid.
   ============================================================= */

.pwb-brand-description.pwb-before-loop {
    max-width: 1600px;
    margin: 0 auto 5px;
    padding: 28px 36px;
    background: #fafafa;
    border-left: 1.5px solid #cc5500;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

/* Decorative quote mark */
.pwb-brand-description.pwb-before-loop::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 22px;
    font-size: 6rem;
    line-height: 1;
    color: rgba(204, 85, 0, 0.08);
    font-family: Georgia, serif;
    pointer-events: none;
}

.pwb-brand-description.pwb-before-loop p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #3a3a3a;
    margin-bottom: 0.4em;
}

.pwb-brand-description.pwb-before-loop p:last-child {
    margin-bottom: 0;
}

.pwb-brand-description.pwb-before-loop strong,
.pwb-brand-description.pwb-before-loop b {
    color: #cc5500;
    font-weight: 700;
}

.pwb-brand-description.pwb-before-loop a {
    color: #cc5500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s;
}

.pwb-brand-description.pwb-before-loop a:hover {
    color: #a84400;
}

@media (max-width: 768px) {
    .pwb-brand-description.pwb-before-loop {
        padding: 20px;
        margin-bottom: 24px;
    }

    .pwb-brand-description.pwb-before-loop::before {
        font-size: 4rem;
        top: 6px;
        right: 14px;
    }

    .pwb-brand-description.pwb-before-loop p {
        font-size: 0.93rem;
    }
}


/* =============================================================
   12. SHOP NAVIGATION BAR (shr-navbar)
   Category / brand / tag quick-navigation widget.
   ============================================================= */

.shr-navbar {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    margin-bottom: 24px;
    overflow: hidden;
    clear: both;
    width: 100%;
}

.shr-navbar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: #f6f7f8;
    border-bottom: 1px solid #e2e2e2;
}

.shr-navbar__label {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.shr-navbar__header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shr-navbar__current {
    font-size: 12px;
    color: #555;
    font-weight: 600;
    background: #efefef;
    padding: 2px 10px;
    border-radius: 10px;
}

.shr-navbar__toggle {
    background: #cc5500;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    line-height: 1.6;
}

.shr-navbar__toggle:hover {
    background: #a84400;
}

.shr-navbar__body {
    padding: 14px 18px;
}

.shr-navbar__body[hidden] {
    display: none !important;
}

.shr-navbar__section {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.shr-navbar__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.shr-navbar__section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 8px;
}

/* Categories */
.shr-navbar__links--cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.shr-navbar__links--cats a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    background: #f4f4f4;
    padding: 4px 14px;
    border-radius: 6px;
    border: 1px solid #e2e2e2;
    transition: all 0.15s;
    white-space: nowrap;
    font-weight: 600;
}

.shr-navbar__links--cats a:hover {
    background: #fff4ef;
    border-color: #cc5500;
    color: #cc5500;
}

.shr-navbar__links--cats a.shr-navbar-active {
    background: #cc5500;
    border-color: #cc5500;
    color: #fff !important;
    font-weight: 700;
}

/* Brands */
.shr-navbar__links--brands {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.shr-navbar__links--brands a {
    font-size: 13px;
    color: #444;
    text-decoration: none;
    background: #f4f4f4;
    padding: 4px 0;
    border-radius: 6px;
    border: 1px solid #e2e2e2;
    transition: all 0.15s;
    white-space: nowrap;
    width: 90px;
    text-align: center;
    display: inline-block;
    position: relative;
}

.shr-navbar__links--brands a:hover {
    background: #fff4ef;
    border-color: #cc5500;
    color: #cc5500;
}

.shr-navbar__links--brands a.shr-navbar-active {
    background: #cc5500;
    border-color: #cc5500;
    color: #fff !important;
    font-weight: 700;
}

.shr-brand-icon {
    font-size: 11px;
    line-height: 1;
}

/* Hot badge on brand links */
.shr-brand-hot {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    background: #cc5500;
    color: #fff;
    padding: 1px 4px;
    border-radius: 3px 0 3px 0;
    letter-spacing: 0.3px;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
}

/* Tags */
.shr-navbar__links--tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    line-height: 2;
}

.shr-navbar__links--tags a {
    font-size: 12.5px;
    color: #0073aa;
    text-decoration: none;
    padding: 0 8px;
    border-right: 1px solid #ddd;
    white-space: nowrap;
    transition: color 0.15s;
}

.shr-navbar__links--tags a:last-child {
    border-right: none;
}

.shr-navbar__links--tags a:hover {
    color: #cc5500;
    text-decoration: underline;
}

.shr-navbar__links--tags a.shr-navbar-active {
    color: #cc5500;
    font-weight: 700;
}

@media (max-width: 600px) {
    .shr-navbar__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .shr-navbar__body {
        padding: 12px 14px;
    }

    .shr-navbar__links--brands a {
        width: 75px;
        font-size: 11px;
    }
}


/* =============================================================
   13. CATEGORY PAGE FAQ SECTION
   Accordion FAQ shown below product grid on category pages.
   ============================================================= */

.category-bottom-description,
.tag-bottom-description {
    margin-top: 40px;
    margin-bottom: 20px;
}

.woocommerce .faq-section {
    margin-top: 40px;
    margin-bottom: 20px;
}

.woocommerce .faq-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid #cc5500;
    color: #111;
}

.woocommerce .faq-section details {
    margin-bottom: 8px;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    overflow: hidden;
}

.woocommerce .faq-section details summary {
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 16px;
    background: #f7f7f7;
    color: #222;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
}

.woocommerce .faq-section details summary::-webkit-details-marker {
    display: none;
}

.woocommerce .faq-section details summary::marker {
    display: none;
}

.woocommerce .faq-section details summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: #cc5500;
    flex-shrink: 0;
    margin-left: 10px;
    line-height: 1;
}

.woocommerce .faq-section details[open] summary::after {
    content: '−';
}

.woocommerce .faq-section details[open] summary,
.woocommerce .faq-section details summary:hover {
    background: #fff4ef;
    border-left: 3px solid #cc5500;
    color: #cc5500;
}

.woocommerce .faq-section details .faq-body {
    font-size: 0.9rem;
    padding: 12px 16px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #e2e2e2;
    background: #fff;
}

.woocommerce .faq-section details .faq-body p {
    margin: 0 0 8px 0;
}

.woocommerce .faq-section details .faq-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .woocommerce .faq-section details summary {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
}