/* ============================================================
   RecorderMax — woocommerce.css
   All WooCommerce template styling.
   Loaded only on WC pages (shop, product, cart, checkout, account).
   ============================================================ */

/* ── WC Notice ─────────────────────────────────────────────── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--rm-amber-light) !important;
    border-top: 3px solid var(--rm-amber) !important;
    border-radius: var(--rm-radius) !important;
    color: var(--rm-dark) !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    margin: 0 0 20px !important;
    list-style: none !important;
}
.woocommerce-error { background: #fff0f0 !important; border-top-color: #e53935 !important; }
.woocommerce-message a.button,
.woocommerce-info a.button {
    background: var(--rm-amber) !important;
    color: var(--rm-black) !important;
    border-radius: var(--rm-radius) !important;
    font-family: var(--rm-font-heading) !important;
    font-weight: 800 !important;
}

/* ============================================================
   SHOP / ARCHIVE
   ============================================================ */
.rm-woo-shop { padding: 60px var(--rm-gutter); }
.rm-woo-shop__inner { max-width: var(--rm-max-w); margin: 0 auto; }

/* Product grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
}

.woocommerce ul.products li.product {
    background: var(--rm-white);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius-lg);
    overflow: hidden;
    transition: box-shadow var(--rm-transition), transform var(--rm-transition);
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--rm-shadow-md);
    transform: translateY(-3px);
}

/* Product image */
.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    transition: transform var(--rm-transition-slow) !important;
    border-radius: 0 !important;
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.04); }

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--rm-font-heading) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: var(--rm-black) !important;
    padding: 16px 18px 4px !important;
    line-height: 1.3 !important;
}

.woocommerce ul.products li.product .price {
    font-family: var(--rm-font-heading) !important;
    font-weight: 800 !important;
    font-size: 20px !important;
    color: var(--rm-black) !important;
    padding: 0 18px 14px !important;
    display: block !important;
}
.woocommerce ul.products li.product .price del { color: var(--rm-muted) !important; font-size: 14px !important; }
.woocommerce ul.products li.product .price ins { color: var(--rm-black) !important; text-decoration: none !important; }

.woocommerce ul.products li.product .button {
    display: block !important;
    margin: 0 18px 18px !important;
    background: var(--rm-amber) !important;
    color: var(--rm-black) !important;
    font-family: var(--rm-font-heading) !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: .4px !important;
    text-transform: uppercase !important;
    border-radius: var(--rm-radius) !important;
    border: none !important;
    padding: 11px 16px !important;
    transition: background var(--rm-transition), color var(--rm-transition) !important;
    text-align: center !important;
    text-decoration: none !important;
}
.woocommerce ul.products li.product .button:hover {
    background: var(--rm-amber-dark) !important;
    color: var(--rm-white) !important;
}

/* ── Shop sorting/result-count bar ───────────────────────── */
.woocommerce .woocommerce-result-count {
    font-size: 13px;
    color: var(--rm-muted);
    margin: 0;
    float: none;
}
.woocommerce .woocommerce-ordering { float: none; margin: 0; }
.woocommerce .woocommerce-ordering select {
    background: var(--rm-white);
    border: 1.5px solid var(--rm-border);
    border-radius: var(--rm-radius);
    padding: 8px 12px;
    font-size: 13px;
    color: var(--rm-dark);
    outline: none;
}

.rm-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.rm-single-product { padding: 60px var(--rm-gutter); }
.rm-single-product__inner {
    max-width: var(--rm-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* WC default summary div */
.woocommerce div.product div.summary {
    float: none !important;
    width: 100% !important;
}
.woocommerce div.product div.images {
    float: none !important;
    width: 100% !important;
}

.woocommerce div.product .product_title {
    font-family: var(--rm-font-heading) !important;
    font-weight: 900 !important;
    font-size: clamp(26px, 3.5vw, 42px) !important;
    color: var(--rm-black) !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: var(--rm-font-heading) !important;
    font-weight: 900 !important;
    font-size: 42px !important;
    color: var(--rm-black) !important;
    margin: 16px 0 !important;
    line-height: 1 !important;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    color: var(--rm-muted) !important;
    font-size: 22px !important;
    margin-right: 8px !important;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    text-decoration: none !important;
    color: var(--rm-black) !important;
}

/* Stock status */
.woocommerce div.product .in-stock {
    color: var(--rm-success) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}
.woocommerce div.product .out-of-stock { color: #e53935 !important; font-weight: 700 !important; }

/* Add to cart */
.woocommerce div.product form.cart .qty {
    width: 72px !important;
    height: 48px !important;
    background: var(--rm-white) !important;
    border: 1.5px solid var(--rm-border) !important;
    border-radius: var(--rm-radius) !important;
    font-size: 18px !important;
    font-family: var(--rm-font-heading) !important;
    font-weight: 700 !important;
    color: var(--rm-black) !important;
    text-align: center !important;
    outline: none !important;
    transition: border-color var(--rm-transition) !important;
}
.woocommerce div.product form.cart .qty:focus { border-color: var(--rm-amber) !important; }

.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--rm-amber) !important;
    color: var(--rm-black) !important;
    font-family: var(--rm-font-heading) !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    letter-spacing: .4px !important;
    padding: 14px 28px !important;
    border-radius: var(--rm-radius) !important;
    border: none !important;
    transition: background var(--rm-transition), color var(--rm-transition) !important;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--rm-amber-dark) !important;
    color: var(--rm-white) !important;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 2px solid var(--rm-border) !important;
    padding: 0 !important;
    margin: 0 0 24px !important;
    display: flex !important;
    gap: 4px !important;
    list-style: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--rm-font-heading) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--rm-mid) !important;
    text-decoration: none !important;
    padding: 10px 18px !important;
    display: block !important;
    border-bottom: 2px solid transparent !important;
    margin-bottom: -2px !important;
    transition: color var(--rm-transition), border-color var(--rm-transition) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--rm-amber-dark) !important;
    border-bottom-color: var(--rm-amber) !important;
}

/* Related products */
.woocommerce .related > h2,
.woocommerce .upsells > h2 {
    font-family: var(--rm-font-heading) !important;
    font-size: 24px !important;
    margin-bottom: 24px !important;
}

/* ============================================================
   CART
   ============================================================ */
.rm-woo-cart { padding: 60px var(--rm-gutter); }
.rm-woo-cart__inner { max-width: var(--rm-max-w); margin: 0 auto; }

.woocommerce table.cart,
.woocommerce-cart table.cart {
    border-collapse: collapse !important;
    width: 100% !important;
}
.woocommerce table.cart th {
    background: var(--rm-bg2) !important;
    font-family: var(--rm-font-heading) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 14px 16px !important;
    color: var(--rm-mid) !important;
    border-bottom: 1px solid var(--rm-border) !important;
}
.woocommerce table.cart td {
    padding: 18px 16px !important;
    border-bottom: 1px solid var(--rm-border) !important;
    vertical-align: middle !important;
}
.woocommerce table.cart .product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: var(--rm-radius) !important;
}

.woocommerce .cart_totals h2 {
    font-size: 20px !important;
    margin-bottom: 18px !important;
}
.woocommerce .cart_totals table {
    border: 1px solid var(--rm-border) !important;
    border-radius: var(--rm-radius) !important;
    overflow: hidden !important;
    width: 100% !important;
}
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
    padding: 14px 16px !important;
    border-bottom: 1px solid var(--rm-border) !important;
    font-size: 14px !important;
}
.woocommerce .cart_totals table .order-total td {
    font-family: var(--rm-font-heading) !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    color: var(--rm-black) !important;
}

/* Proceed to Checkout — green, overrides the broad amber .button rule */
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce a.checkout-button,
.woocommerce a.checkout-button.button,
.woocommerce a.checkout-button.alt {
    display: block !important;
    background: #16a34a !important;
    color: #fff !important;
    font-family: var(--rm-font-heading) !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    padding: 16px 28px !important;
    border-radius: var(--rm-radius) !important;
    text-align: center !important;
    text-decoration: none !important;
    margin-top: 16px !important;
    transition: background var(--rm-transition) !important;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce a.checkout-button:hover,
.woocommerce a.checkout-button.button:hover,
.woocommerce a.checkout-button.alt:hover {
    background: #15803d !important;
    color: #fff !important;
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.rm-woo-checkout { padding: 60px var(--rm-gutter); }
.rm-woo-checkout__inner {
    max-width: var(--rm-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Section headings */
.woocommerce-checkout h3 {
    font-family: var(--rm-font-heading) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--rm-black) !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid var(--rm-border) !important;
}

/* Fields */
.woocommerce-checkout .form-row label {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--rm-mid) !important;
    letter-spacing: .8px !important;
    text-transform: uppercase !important;
    margin-bottom: 5px !important;
    display: block !important;
}
.woocommerce-checkout .form-row .required { color: var(--rm-amber) !important; }

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    background: var(--rm-white) !important;
    border: 1.5px solid rgba(244, 173, 61, 0.35) !important;
    border-radius: var(--rm-radius) !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    font-family: var(--rm-font-body) !important;
    color: var(--rm-dark) !important;
    outline: none !important;
    width: 100% !important;
    transition: border-color var(--rm-transition), box-shadow var(--rm-transition) !important;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: var(--rm-amber-dark) !important;
    box-shadow: 0 0 0 3px rgba(244, 173, 61, 0.15) !important;
}

/* Order review box */
.woocommerce-checkout-review-order-table {
    border: 1px solid var(--rm-border) !important;
    border-radius: var(--rm-radius) !important;
    overflow: hidden !important;
    width: 100% !important;
    border-collapse: collapse !important;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 14px 16px !important;
    border-bottom: 1px solid var(--rm-border) !important;
    font-size: 14px !important;
}
.woocommerce-checkout-review-order-table .order-total td {
    font-family: var(--rm-font-heading) !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}

/* Payment section */
.woocommerce-checkout #payment {
    background: var(--rm-amber-light) !important;
    border: 1px solid rgba(244, 173, 61, 0.3) !important;
    border-radius: var(--rm-radius) !important;
    padding: 20px !important;
    margin-top: 20px !important;
}
.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600 !important;
    font-size: 14px !important;
    color: var(--rm-dark) !important;
}
.woocommerce-checkout #payment div.payment_box {
    background: var(--rm-white) !important;
    border: 1px solid rgba(244, 173, 61, 0.25) !important;
    border-radius: var(--rm-radius) !important;
    font-size: 13px !important;
    color: var(--rm-mid) !important;
    padding: 12px 14px !important;
}

.woocommerce-checkout #place_order {
    background: var(--rm-amber) !important;
    color: var(--rm-black) !important;
    font-family: var(--rm-font-heading) !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    padding: 16px 28px !important;
    border-radius: var(--rm-radius) !important;
    border: none !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background var(--rm-transition), color var(--rm-transition) !important;
    margin-top: 12px !important;
}
.woocommerce-checkout #place_order:hover {
    background: var(--rm-amber-dark) !important;
    color: var(--rm-white) !important;
}

/* Coupon */
.woocommerce-checkout .checkout_coupon input,
.woocommerce-cart .coupon input {
    border: 1.5px solid var(--rm-border) !important;
    border-radius: var(--rm-radius) !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
}
.woocommerce-checkout .checkout_coupon .button,
.woocommerce-cart .coupon .button {
    background: var(--rm-black) !important;
    color: var(--rm-white) !important;
    font-size: 13px !important;
    padding: 10px 18px !important;
}

/* ============================================================
   ORDER RECEIVED / THANK YOU
   ============================================================ */
.rm-order-received { padding: 80px var(--rm-gutter); text-align: center; }
.rm-order-received__check {
    width: 80px;
    height: 80px;
    background: rgba(61, 204, 112, 0.12);
    border: 2px solid var(--rm-success);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--rm-success);
}

.woocommerce-order-received .woocommerce-order-overview {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
    list-style: none !important;
    padding: 28px !important;
    background: var(--rm-amber-light) !important;
    border: 1px solid rgba(244, 173, 61, 0.3) !important;
    border-radius: var(--rm-radius-lg) !important;
    margin: 32px auto !important;
    max-width: 600px !important;
}
.woocommerce-order-received .woocommerce-order-overview li {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--rm-dark) !important;
}
.woocommerce-order-received .woocommerce-order-overview strong {
    display: block !important;
    font-family: var(--rm-font-heading) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--rm-black) !important;
}

/* ============================================================
   MY ACCOUNT
   ============================================================ */
.rm-my-account { padding: 60px var(--rm-gutter); }
.rm-my-account__inner {
    max-width: var(--rm-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}

.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rm-mid);
    text-decoration: none;
    border-radius: var(--rm-radius);
    transition: background var(--rm-transition), color var(--rm-transition);
    margin-bottom: 4px;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--rm-amber-light);
    color: var(--rm-amber-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
    .rm-single-product__inner { grid-template-columns: 1fr; gap: 36px; }
    .rm-woo-checkout__inner { grid-template-columns: 1fr; }
    .rm-my-account__inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

/* ============================================================
   WOOCOMMERCE BLOCKS — consistent brand styling
   Covers Gutenberg blocks: [products], [recent_products],
   wc/product-collection, wc/all-products, etc.
   ============================================================ */

/* Remove bullet points & fix list alignment */
ul.products,
.wc-block-grid__products,
.wp-block-woocommerce-all-products ul,
.woocommerce ul.products {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}
ul.products li.product,
.wc-block-grid__product {
    list-style: none !important;
}

/* Product name / title links — amber brand color */
ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title,
.wp-block-woocommerce-all-products .woocommerce-loop-product__title,
ul.products li.product a:not(.button):not(.add_to_cart_button):not(.rm-btn) {
    color: var(--rm-amber, #E8680A) !important;
    text-decoration: none !important;
}
/* Ensure rm-btn text is always readable on its background */
ul.products li.product a.rm-btn.rm-btn--amber {
    color: #1a1916 !important;
}
ul.products li.product a.rm-btn.rm-btn--outline-amber {
    color: var(--rm-amber, #E8680A) !important;
}

/* ── Block Add to Cart & Read More buttons ── */
.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-components-product-button .wp-block-button__link,
.wp-block-button__link,
.wc-block-grid__product a.button,
.wc-block-grid__product a.add_to_cart_button,
ul.products li.product a.button,
ul.products li.product a.add_to_cart_button,
ul.products li.product button.button {
    background: var(--rm-amber, #E8680A) !important;
    color: var(--rm-black, #1a1916) !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 11px 18px !important;
    text-decoration: none !important;
    transition: background .2s, color .2s !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.wc-block-components-product-button .wp-block-button__link:hover,
.wp-block-button__link:hover,
.wc-block-grid__product a.button:hover,
ul.products li.product a.button:hover,
ul.products li.product a.add_to_cart_button:hover,
ul.products li.product button.button:hover {
    background: #c95800 !important;
    color: #fff !important;
}

/* Price */
.wc-block-grid__product-price,
.wc-block-components-product-price {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: var(--rm-black, #1a1916) !important;
}

/* Product card alignment */
.wc-block-grid__product,
ul.products li.product {
    text-align: left !important;
}

.wc-block-grid__product-title,
ul.products li.product .woocommerce-loop-product__title {
    text-align: left !important;
    padding: 0 !important;
    margin: 6px 0 !important;
}

/* Remove stray bullet characters that appear between items */
ul.products li.product::before,
ul.products li.product::marker,
.wc-block-grid__products li::before,
.wc-block-grid__products li::marker {
    content: none !important;
    display: none !important;
}

/* ── CRO: Product section warm cream background ── */
.rm-product-section { background: #fdf8f0; }
.rm-gallery-main    { background: #fdf8f0 !important; border-color: #ede8de !important; }
.rm-gallery-thumb   { background: #fdf8f0 !important; border-color: #ede8de !important; }
.rm-product-info    { background: transparent; }

/* ── CRO: Alternating tab panels ── */
.rm-tab-panel                { background: #fff; }
#rm-tab-specifications       { background: #f7f6f3; }
#rm-tab-sample               { background: #f7f6f3; }
#rm-tab-reviews              { background: #f7f6f3; }

/* ── CRO: Social proof pill ── */
.rm-cro-proof { display:flex; align-items:center; gap:8px; margin-bottom:10px; flex-wrap:wrap; }
.rm-cro-pill  { background:#e6f5ee; border:1px solid #a8dbca; border-radius:20px; padding:3px 12px; font-size:12px; font-weight:700; color:#0c6e51; }

/* ── CRO: Price anchor ── */
.rm-cro-anchor { font-size:12px; color:var(--muted); margin-top:6px; margin-bottom:4px; line-height:1.7; }
.rm-cro-anchor del { color:#ccc; }
.rm-cro-anchor strong { color:#0c6e51; }

/* ── Product card — shop/category grid ── */
.rm-prod-price-row{display:flex;align-items:baseline;gap:8px;flex-wrap:wrap;margin-bottom:10px}
.rm-prod-from{font-size:11px;color:var(--muted);font-weight:500}
.rm-prod-price-main{font-family:'Poppins',sans-serif;font-weight:900;font-size:20px;color:#1a1916}
.rm-prod-was{font-size:13px;color:var(--muted);text-decoration:line-through}
.rm-prod-save{background:var(--amber);color:#111;font-size:10px;font-weight:800;padding:2px 8px;border-radius:4px;white-space:nowrap}
.rm-prod-cfp{font-size:14px;font-weight:700;color:var(--amber)}
.rm-prod-per-line{font-size:11px;color:var(--muted);margin:-6px 0 10px;font-weight:600}

.rm-prod-bullets{list-style:none;padding:0;margin:0 0 14px;display:flex;flex-direction:column;gap:7px;flex:1}
.rm-prod-bullets li{display:flex;align-items:flex-start;gap:8px;font-size:12px;color:#555;line-height:1.5}
.rm-prod-bullets li::before{content:'';width:18px;height:18px;flex-shrink:0;border-radius:50%;background:var(--amber);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23111' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");background-size:11px;background-repeat:no-repeat;background-position:center;margin-top:1px}
.rm-prod-ctas{display:flex;gap:8px;flex-wrap:wrap;margin-top:auto}
.rm-prod-ctas .rm-btn{flex:1;min-width:110px;justify-content:center}

/* ── Category About accordion — below product grid ── */
.rm-cat-about {
    border-top: 1px solid var(--border, #eee);
    padding: 0 5vw;
    background: var(--bg, #fff);
}
.rm-cat-about__inner {
    max-width: 1180px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border, #eee);
}
.rm-cat-about__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--rm-font-heading, 'Poppins', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.01em;
    text-align: left;
    gap: 12px;
}
.rm-cat-about__toggle:hover { color: #1a1916; }
.rm-cat-about__chevron {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.rm-cat-about__toggle[aria-expanded="true"] .rm-cat-about__chevron {
    transform: rotate(180deg);
}
.rm-cat-about__body {
    padding-bottom: 28px;
    columns: 2;
    column-gap: 48px;
}
.rm-cat-about__body[hidden] { display: none; }
.rm-cat-about__body p {
    font-size: 13px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 14px;
    break-inside: avoid;
}
.rm-cat-about__body p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
    .rm-cat-about__body { columns: 1; }
}
