/* ========================================
   WooCommerce Store - Instituto Mision Rescate
   Design moderno inspirado em lojas premium
   Tema: Hello Elementor + WooCommerce
   Cor principal: #e91e63 (Rosa/Pink)
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f8bbd0;
    --primary-bg: #fce4ec;
    --secondary: #333333;
    --accent: #ff6f00;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --info: #2196f3;
    --text-dark: #1a1a2e;
    --text-medium: #555555;
    --text-light: #888888;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f0f0;
    --border-light: #e8e8e8;
    --border-medium: #ddd;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
}

/* ===== Global Reset & Base ===== */
.woocommerce,
.woocommerce-page {
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.woocommerce * {
    box-sizing: border-box;
}

/* ===== Top Bar ===== */
.kmr-top-bar {
    background: var(--text-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.3px;
}

.kmr-top-bar a {
    color: var(--primary-light);
    text-decoration: none;
}

.kmr-top-bar a:hover {
    color: #fff;
}

/* ===== Hero Banner Section ===== */
.kmr-hero-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    margin: 20px auto;
    max-width: var(--max-width);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kmr-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.kmr-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.kmr-hero-banner h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.kmr-hero-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0 0 25px;
    position: relative;
    z-index: 1;
}

.kmr-hero-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary) !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kmr-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--primary-dark) !important;
}

/* ===== Category Tiles ===== */
.kmr-categories {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 0 20px;
}

.kmr-categories h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.kmr-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.kmr-category-tile {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.kmr-category-tile:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.kmr-category-tile .kmr-cat-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.kmr-category-tile .kmr-cat-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.kmr-category-tile .kmr-cat-count {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}

/* ===== Section Headings ===== */
.kmr-section-title {
    max-width: var(--max-width);
    margin: 50px auto 25px;
    padding: 0 20px;
    text-align: center;
}

.kmr-section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.kmr-section-title p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0;
}

.kmr-section-title .kmr-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ===== Product Grid Enhancement ===== */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
    margin: 0 auto;
    max-width: var(--max-width);
    list-style: none;
}

.woocommerce ul.products li.product {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
    transform: translateY(-6px);
}

/* Product image wrapper */
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin: 0;
    transition: var(--transition);
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.03);
}

/* Product info area */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 16px 16px 6px;
    margin: 0;
    line-height: 1.4;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.woocommerce ul.products li.product .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    padding: 4px 16px 6px;
    margin: 0;
    display: block;
}

.woocommerce ul.products li.product .price .amount {
    color: var(--primary);
}

.woocommerce ul.products li.product .price del {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    margin-right: 8px;
}

.woocommerce ul.products li.product .price del .amount {
    color: var(--text-light);
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    font-weight: 700;
}

/* Add to cart button in grid */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
    display: inline-block;
    background: var(--primary);
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    margin: 8px 16px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: var(--transition);
    line-height: 1.4;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(233,30,99,0.3);
}

/* Sale badge */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
    background: linear-gradient(135deg, var(--danger), #e53935);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    top: 12px;
    left: 12px;
    right: auto;
    min-height: auto;
    min-width: auto;
    line-height: 1.4;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(244,67,54,0.3);
}

/* Star rating on product cards */
.woocommerce ul.products li.product .star-rating {
    margin: 0 auto 5px;
    font-size: 13px;
}

.woocommerce .star-rating span::before {
    color: #ffc107;
}

/* ===== Buttons Global ===== */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .wc-block-components-button {
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    border: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 14px;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--primary-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233,30,99,0.25);
}

/* Primary CTA buttons */
.woocommerce .single_add_to_cart_button,
.woocommerce .checkout-button,
.woocommerce .button.alt {
    background: var(--primary);
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
}

.woocommerce .single_add_to_cart_button:hover,
.woocommerce .checkout-button:hover,
.woocommerce .button.alt:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(233,30,99,0.35);
}

/* Secondary/outline buttons */
.woocommerce .button.loading,
.woocommerce .button.added {
    background: var(--success);
}

/* ===== Price Styles ===== */
.woocommerce .price {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
}

.woocommerce .price .amount {
    color: var(--primary);
}

.woocommerce .price del {
    color: var(--text-light);
    font-size: 18px;
}

.woocommerce .price ins {
    text-decoration: none;
    color: var(--primary);
}

/* ===== Single Product Page ===== */
.woocommerce div.product {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 20px;
}

.woocommerce div.product div.images {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.woocommerce div.product div.images img {
    border-radius: var(--radius-lg);
}

.woocommerce div.product .product_title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 15px;
}

.woocommerce div.product .price {
    font-size: 30px;
    margin: 15px 0 20px;
    padding: 15px 20px;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    display: inline-block;
}

.woocommerce div.product .price .amount {
    color: var(--primary);
    font-weight: 800;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    margin: 20px 0;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 15px;
}

.woocommerce div.product .product_meta {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-medium);
}

.woocommerce div.product .product_meta a {
    color: var(--primary);
    text-decoration: none;
}

.woocommerce div.product .product_meta a:hover {
    text-decoration: underline;
}

/* Product quantity selector */
.woocommerce .quantity .qty {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    width: 80px;
    font-size: 16px;
    text-align: center;
    transition: var(--transition);
}

.woocommerce .quantity .qty:focus {
    border-color: var(--primary);
    outline: none;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 2px solid var(--border-light);
    padding: 0;
    margin: 30px 0 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background: none;
    padding: 0;
    margin: 0 20px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-weight: 600;
    color: var(--text-medium);
    padding: 12px 20px;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    font-size: 15px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom: 3px solid var(--primary);
}

/* Related products */
.woocommerce div.product .related h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

/* ===== Cart Page ===== */
.woocommerce-cart .woocommerce {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
}

.woocommerce table.cart {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.woocommerce table.cart th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    padding: 14px 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-light);
}

.woocommerce table.cart td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.woocommerce table.cart td.product-name a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.woocommerce table.cart td.product-name a:hover {
    color: var(--primary);
}

.woocommerce table.cart td.product-price .amount {
    color: var(--primary);
    font-weight: 600;
}

.woocommerce table.cart td.product-subtotal .amount {
    color: var(--primary);
    font-weight: 700;
}

.woocommerce table.cart td.actions {
    padding: 16px;
    background: var(--bg-light);
}

.woocommerce table.cart td.actions .button {
    background: var(--secondary);
}

.woocommerce table.cart td.actions .button:hover {
    background: #555;
}

/* Cart collaterals */
.woocommerce .cart-collaterals .cart_totals {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.woocommerce .cart-collaterals .cart_totals table th {
    font-weight: 600;
    color: var(--text-dark);
    padding: 12px 0;
}

.woocommerce .cart-collaterals .cart_totals table td {
    padding: 12px 0;
    color: var(--text-medium);
}

.woocommerce .cart-collaterals .cart_totals .order-total .amount {
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
}

/* Coupon */
.woocommerce .coupon .input-text {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    transition: var(--transition);
}

.woocommerce .coupon .input-text:focus {
    border-color: var(--primary);
    outline: none;
}

/* ===== Checkout Page ===== */
.woocommerce-checkout .woocommerce {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
}

.woocommerce-checkout h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

.woocommerce-checkout .form-row label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 5px;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(233,30,99,0.1);
}

.woocommerce-checkout .form-row.woocommerce-validated input,
.woocommerce-checkout .form-row.woocommerce-validated select,
.woocommerce-checkout .form-row.woocommerce-validated textarea {
    border-color: var(--success);
}

.woocommerce-checkout .form-row.woocommerce-invalid input,
.woocommerce-checkout .form-row.woocommerce-invalid select,
.woocommerce-checkout .form-row.woocommerce-invalid textarea {
    border-color: var(--danger);
}

/* Order review in checkout */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th {
    background: var(--bg-light);
    padding: 14px 16px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
    font-weight: 700;
    font-size: 16px;
    padding: 16px;
    background: var(--primary-bg);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total .amount {
    color: var(--primary);
    font-size: 20px;
}

/* Payment methods */
.woocommerce-checkout .woocommerce-checkout-payment {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
}

.woocommerce-checkout .woocommerce-checkout-payment ul.payment_methods li {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: var(--transition);
}

.woocommerce-checkout .woocommerce-checkout-payment ul.payment_methods li:hover {
    border-color: var(--primary-light);
    background: var(--primary-bg);
}

.woocommerce-checkout .woocommerce-checkout-payment ul.payment_methods li label {
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
}

.woocommerce-checkout .woocommerce-checkout-payment .place-order .button {
    width: 100%;
    font-size: 18px;
    padding: 18px;
    border-radius: 50px;
    margin-top: 15px;
}

/* ===== My Account Page ===== */
.woocommerce-account .woocommerce {
    max-width: var(--max-width);
    margin: 0 auto;
}

.woocommerce-MyAccount-navigation {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-light);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    color: var(--text-medium);
    font-weight: 500;
    padding: 10px 16px;
    display: block;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
    font-size: 14px;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--primary);
    background: var(--primary-bg);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    color: #fff;
    background: var(--primary);
}

.woocommerce-MyAccount-content {
    padding: 20px 0;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== Messages & Notices ===== */
.woocommerce-message {
    border-top-color: var(--primary);
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
}

.woocommerce-message::before {
    color: var(--primary);
}

.woocommerce-message a {
    color: var(--primary);
    font-weight: 600;
}

.woocommerce-info {
    border-top-color: var(--info);
    background: #e3f2fd;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
}

.woocommerce-info::before {
    color: var(--info);
}

.woocommerce-error {
    border-top-color: var(--danger);
    background: #ffebee;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
}

.woocommerce-error::before {
    color: var(--danger);
}

/* ===== Breadcrumb ===== */
.woocommerce .woocommerce-breadcrumb {
    color: var(--text-light);
    font-size: 14px;
    padding: 15px 0;
    margin-bottom: 10px;
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--primary);
}

/* ===== Pagination ===== */
.woocommerce nav.woocommerce-pagination {
    margin: 40px 0 20px;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a {
    color: var(--text-medium);
    font-weight: 500;
    padding: 10px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
    min-width: 42px;
    display: inline-block;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-weight: 700;
    min-width: 42px;
    display: inline-block;
    text-align: center;
}

/* ===== Newsletter Section ===== */
.kmr-newsletter {
    background: linear-gradient(135deg, var(--text-dark) 0%, #16213e 100%);
    padding: 50px 40px;
    margin: 50px auto;
    max-width: var(--max-width);
    border-radius: var(--radius-lg);
    text-align: center;
    color: #fff;
}

.kmr-newsletter h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
}

.kmr-newsletter p {
    font-size: 15px;
    opacity: 0.8;
    margin: 0 0 25px;
}

.kmr-newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.kmr-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 15px;
    transition: var(--transition);
}

.kmr-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.kmr-newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.15);
}

.kmr-newsletter-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.kmr-newsletter-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ===== Features Bar ===== */
.kmr-features {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kmr-feature-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}

.kmr-feature-box:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.kmr-feature-box .kmr-feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.kmr-feature-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.kmr-feature-box p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* ===== Sidebar Widgets ===== */
.woocommerce .widget {
    margin-bottom: 24px;
}

.woocommerce .widget h2,
.woocommerce .widget .widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.woocommerce .widget_product_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce .widget_product_categories ul li {
    border-bottom: 1px solid var(--border-light);
}

.woocommerce .widget_product_categories ul li:last-child {
    border-bottom: none;
}

.woocommerce .widget_product_categories ul li a {
    color: var(--text-medium);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.woocommerce .widget_product_categories ul li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.woocommerce .widget_product_categories ul li .count {
    color: var(--text-light);
    font-size: 12px;
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Price filter widget */
.woocommerce .widget_price_filter .price_slider .ui-slider-range {
    background: var(--primary);
}

.woocommerce .widget_price_filter .price_slider .ui-slider-handle {
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
}

/* Product search */
.woocommerce .woocommerce-product-search {
    display: flex;
    gap: 8px;
}

.woocommerce .woocommerce-product-search input[type="search"] {
    flex: 1;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    transition: var(--transition);
}

.woocommerce .woocommerce-product-search input[type="search"]:focus {
    border-color: var(--primary);
    outline: none;
}

.woocommerce .woocommerce-product-search button[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.woocommerce .woocommerce-product-search button[type="submit"]:hover {
    background: var(--primary-dark);
}

/* Recent reviews widget */
.woocommerce .widget_recent_reviews ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce .widget_recent_reviews ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.woocommerce .widget_recent_reviews ul li:last-child {
    border-bottom: none;
}

.woocommerce .widget_recent_reviews ul li a {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.woocommerce .widget_recent_reviews ul li a:hover {
    color: var(--primary);
}

/* Top rated products widget */
.woocommerce .widget_top_rated_products ul,
.woocommerce .widget_products ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce .widget_top_rated_products ul li,
.woocommerce .widget_products ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    gap: 12px;
    align-items: center;
}

.woocommerce .widget_top_rated_products ul li:last-child,
.woocommerce .widget_products ul li:last-child {
    border-bottom: none;
}

.woocommerce .widget_top_rated_products ul li img,
.woocommerce .widget_products ul li img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.woocommerce .widget_top_rated_products ul li a,
.woocommerce .widget_products ul li a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.woocommerce .widget_top_rated_products ul li a:hover,
.woocommerce .widget_products ul li a:hover {
    color: var(--primary);
}

/* ===== Variation Select (Single Product) ===== */
.woocommerce div.product form.cart .variations td.label label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.woocommerce div.product form.cart .variations select {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    transition: var(--transition);
    min-width: 200px;
}

.woocommerce div.product form.cart .variations select:focus {
    border-color: var(--primary);
    outline: none;
}

.woocommerce div.product form.cart .reset_variations {
    color: var(--text-light);
    font-size: 13px;
}

/* ===== Product Gallery ===== */
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
    border-color: var(--primary);
}

/* ===== Mini Cart / Cart Widget ===== */
.woocommerce .widget_shopping_cart ul.cart_list li,
.woocommerce .widget_shopping_cart ul.product_list_widget li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.woocommerce .widget_shopping_cart ul.cart_list li a,
.woocommerce .widget_shopping_cart ul.product_list_widget li a {
    color: var(--text-dark);
    font-weight: 500;
}

.woocommerce .widget_shopping_cart ul.cart_list li a:hover,
.woocommerce .widget_shopping_cart ul.product_list_widget li a:hover {
    color: var(--primary);
}

.woocommerce .widget_shopping_cart .total {
    font-weight: 700;
    color: var(--primary);
    padding-top: 10px;
    border-top: 2px solid var(--border-light);
}

/* ===== Footer Enhancements ===== */
.kmr-footer-cta {
    background: var(--primary-bg);
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
}

.kmr-footer-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.kmr-footer-cta p {
    color: var(--text-medium);
    margin: 0 0 20px;
}

/* ===== Results Count & Ordering ===== */
.woocommerce .woocommerce-result-count {
    color: var(--text-medium);
    font-size: 14px;
}

.woocommerce .woocommerce-ordering select {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text-medium);
    transition: var(--transition);
}

.woocommerce .woocommerce-ordering select:focus {
    border-color: var(--primary);
    outline: none;
}

/* ===== Empty States ===== */
.woocommerce .woocommerce-no-products-found {
    text-align: center;
    padding: 60px 20px;
}

.woocommerce .woocommerce-no-products-found .woocommerce-info {
    display: inline-block;
    font-size: 16px;
}

/* ===== Loading Spinner ===== */
.woocommerce .blockUI.blockOverlay {
    background: rgba(255,255,255,0.8) !important;
}

.woocommerce .blockUI.blockOverlay::before {
    border-color: var(--primary) !important;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .kmr-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .kmr-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kmr-hero-banner h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .woocommerce ul.products li.product a img {
        height: 180px;
    }
    
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 13px;
        min-height: 40px;
    }
    
    .woocommerce ul.products li.product .price {
        font-size: 18px;
    }
    
    .kmr-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .kmr-category-tile {
        padding: 16px 10px;
    }
    
    .kmr-category-tile .kmr-cat-icon {
        font-size: 28px;
    }
    
    .kmr-hero-banner {
        padding: 40px 20px;
        margin: 10px;
    }
    
    .kmr-hero-banner h1 {
        font-size: 26px;
    }
    
    .kmr-hero-banner p {
        font-size: 15px;
    }
    
    .kmr-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .kmr-feature-box {
        padding: 16px;
    }
    
    .kmr-newsletter {
        padding: 30px 20px;
        margin: 30px 10px;
    }
    
    .kmr-newsletter h3 {
        font-size: 20px;
    }
    
    .kmr-newsletter-form {
        flex-direction: column;
    }
    
    .woocommerce div.product .product_title {
        font-size: 24px;
    }
    
    .woocommerce div.product .price {
        font-size: 24px;
    }
    
    .kmr-section-title h2 {
        font-size: 24px;
    }
    
    /* Cart responsive */
    .woocommerce table.cart td.actions .coupon .input-text {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .woocommerce .cart-collaterals .cart_totals {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .woocommerce ul.products li.product a img {
        height: 150px;
    }
    
    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product a.button {
        padding: 8px 16px;
        font-size: 11px;
        margin: 4px 10px 14px;
    }
    
    .kmr-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kmr-features {
        grid-template-columns: 1fr;
    }
    
    .kmr-hero-banner h1 {
        font-size: 22px;
    }
    
    .kmr-hero-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .woocommerce .single_add_to_cart_button {
        width: 100%;
        font-size: 15px;
        padding: 14px;
    }
}

/* ===== Animations ===== */
@keyframes kmr-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.woocommerce ul.products li.product {
    animation: kmr-fadeInUp 0.4s ease forwards;
}

.woocommerce ul.products li.product:nth-child(1) { animation-delay: 0.05s; }
.woocommerce ul.products li.product:nth-child(2) { animation-delay: 0.1s; }
.woocommerce ul.products li.product:nth-child(3) { animation-delay: 0.15s; }
.woocommerce ul.products li.product:nth-child(4) { animation-delay: 0.2s; }
.woocommerce ul.products li.product:nth-child(5) { animation-delay: 0.25s; }
.woocommerce ul.products li.product:nth-child(6) { animation-delay: 0.3s; }
.woocommerce ul.products li.product:nth-child(7) { animation-delay: 0.35s; }
.woocommerce ul.products li.product:nth-child(8) { animation-delay: 0.4s; }

/* ===== Scrollbar for cart sidebar ===== */
.woocommerce .widget_shopping_cart ul.cart_list,
.woocommerce .widget_shopping_cart ul.product_list_widget {
    max-height: 300px;
    overflow-y: auto;
}

/* ===== WooCommerce Blocks compatibility ===== */
.wc-block-grid__products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wc-block-grid__product {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    transition: var(--transition);
}

.wc-block-grid__product:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

@media (max-width: 768px) {
    .wc-block-grid__products {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* ===== Print styles ===== */
@media print {
    .kmr-hero-banner,
    .kmr-newsletter,
    .kmr-features,
    .kmr-footer-cta {
        display: none;
    }
}

/* ==================================================
   Premium Store Refresh - Loja only
   Inspired by dense premium retail layouts.
   ================================================== */
body.woocommerce-shop {
    --kmr-ink: #10131f;
    --kmr-muted: #687082;
    --kmr-line: #e7e9ee;
    --kmr-panel: #ffffff;
    --kmr-soft: #f6f7fb;
    --kmr-pink: #d61f66;
    --kmr-pink-dark: #a9154c;
    --kmr-gold: #d89b27;
    --kmr-blue: #19345f;
    background:
        linear-gradient(180deg, #f7f8fb 0, #ffffff 340px);
    color: var(--kmr-ink);
}

body.woocommerce-shop a {
    text-decoration: none;
}

body.woocommerce-shop .site-main {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto 56px;
}

body.woocommerce-shop .page-header {
    width: min(1220px, calc(100% - 32px));
    margin: 28px auto 0;
}

body.woocommerce-shop .woocommerce-breadcrumb {
    width: min(1220px, calc(100% - 32px));
    margin: 24px auto 8px;
    color: #7b8190;
    font-size: 13px;
}

body.woocommerce-shop .page-title {
    width: min(1220px, calc(100% - 32px));
    margin: 8px auto 18px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: 0;
    color: var(--kmr-ink);
}

body.woocommerce-shop .kmr-hero-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
    min-height: 420px;
    max-width: 1220px;
    margin: 10px auto 18px;
    padding: clamp(28px, 5vw, 62px);
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(16, 19, 31, 0.96), rgba(25, 52, 95, 0.92) 58%, rgba(214, 31, 102, 0.88));
    box-shadow: 0 28px 70px rgba(16, 19, 31, 0.18);
    text-align: left;
}

body.woocommerce-shop .kmr-hero-banner::before {
    content: "Livros cristãos | Estudos | Devocionais";
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    grid-column: 1;
    display: inline-flex;
    justify-self: start;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.woocommerce-shop .kmr-hero-banner::after {
    content: "";
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: stretch;
    width: min(360px, 100%);
    min-height: 310px;
    justify-self: end;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.2) 0 1px, transparent 1px 42px),
        linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4), 0 24px 48px rgba(0,0,0,0.24);
    transform: rotate(2deg);
}

body.woocommerce-shop .kmr-hero-banner h1 {
    grid-column: 1;
    max-width: 680px;
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    font-weight: 900;
}

body.woocommerce-shop .kmr-hero-banner p {
    grid-column: 1;
    max-width: 600px;
    margin: 0 0 28px;
    color: rgba(255,255,255,0.86);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.6;
}

body.woocommerce-shop .kmr-hero-btn {
    grid-column: 1;
    width: max-content;
    border-radius: 6px;
    background: #fff;
    color: var(--kmr-pink-dark) !important;
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

body.woocommerce-shop .kmr-categories,
body.woocommerce-shop .kmr-features,
body.woocommerce-shop .kmr-section-title,
body.woocommerce-shop .kmr-newsletter {
    max-width: 1220px;
}

body.woocommerce-shop .kmr-categories {
    margin-top: 34px;
    padding: 0;
}

body.woocommerce-shop .kmr-categories h2,
body.woocommerce-shop .kmr-section-title h2 {
    color: var(--kmr-ink);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 850;
}

body.woocommerce-shop .kmr-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

body.woocommerce-shop .kmr-category-tile {
    min-height: 132px;
    border: 1px solid var(--kmr-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 19, 31, 0.06);
}

body.woocommerce-shop .kmr-category-tile:hover {
    border-color: rgba(214, 31, 102, 0.45);
    box-shadow: 0 18px 36px rgba(16, 19, 31, 0.12);
}

body.woocommerce-shop .kmr-feature-box {
    border-radius: 8px;
    border: 1px solid var(--kmr-line);
    box-shadow: 0 10px 24px rgba(16, 19, 31, 0.06);
}

body.woocommerce-shop .kmr-premium-toolbar {
    clear: both;
    max-width: 1220px;
    margin: 28px auto 24px;
}

body.woocommerce-shop .kmr-premium-toolbar__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--kmr-line);
    border-radius: 8px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 42px rgba(16, 19, 31, 0.09);
}

body.woocommerce-shop .kmr-shop-search {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    min-height: 50px;
    border: 1px solid #d9dce5;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

body.woocommerce-shop .kmr-shop-search__icon {
    color: var(--kmr-muted);
    text-align: center;
    font-size: 20px;
}

body.woocommerce-shop .kmr-shop-search input[type="search"] {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--kmr-ink);
    font-size: 14px;
}

body.woocommerce-shop .kmr-shop-search button {
    height: 100%;
    border: 0;
    padding: 0 20px;
    background: var(--kmr-ink);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

body.woocommerce-shop .kmr-category-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

body.woocommerce-shop .kmr-category-strip a {
    flex: 0 0 auto;
    padding: 10px 13px;
    border: 1px solid #dde1ea;
    border-radius: 6px;
    background: #fff;
    color: var(--kmr-ink);
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

body.woocommerce-shop .kmr-category-strip a:hover {
    border-color: var(--kmr-pink);
    color: var(--kmr-pink-dark);
}

body.woocommerce-shop .kmr-store-assurance {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    color: var(--kmr-muted);
    font-size: 13px;
}

body.woocommerce-shop .kmr-store-assurance span {
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--kmr-soft);
}

body.woocommerce-shop .kmr-store-assurance strong {
    color: var(--kmr-ink);
}

body.woocommerce-shop .woocommerce-result-count {
    margin: 0 0 18px;
    padding: 10px 14px;
    border-radius: 6px;
    background: #fff;
    color: var(--kmr-muted);
    box-shadow: 0 8px 20px rgba(16, 19, 31, 0.06);
}

body.woocommerce-shop .woocommerce-ordering {
    margin: 0 0 18px;
}

body.woocommerce-shop .woocommerce-ordering select {
    min-height: 42px;
    border-radius: 6px;
    background-color: #fff;
    font-weight: 700;
}

body.woocommerce-shop .woocommerce ul.products {
    clear: both;
    max-width: 1220px;
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body.woocommerce-shop .woocommerce ul.products li.product {
    border-radius: 8px;
    border: 1px solid var(--kmr-line);
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 19, 31, 0.08);
}

body.woocommerce-shop .woocommerce ul.products li.product:hover {
    border-color: rgba(214, 31, 102, 0.38);
    box-shadow: 0 24px 48px rgba(16, 19, 31, 0.14);
}

body.woocommerce-shop .woocommerce ul.products li.product a img {
    height: 290px;
    padding: 18px;
    object-fit: contain;
    background:
        linear-gradient(180deg, #f9fafc, #eef1f6);
}

body.woocommerce-shop .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 48px;
    color: var(--kmr-ink);
    font-weight: 850;
}

body.woocommerce-shop .kmr-product-category {
    color: var(--kmr-pink-dark);
    font-weight: 850;
}

body.woocommerce-shop .kmr-product-excerpt {
    min-height: 38px;
    color: var(--kmr-muted);
}

body.woocommerce-shop .woocommerce ul.products li.product .price {
    color: var(--kmr-ink);
    font-size: 22px;
    font-weight: 900;
}

body.woocommerce-shop .woocommerce ul.products li.product a.button,
body.woocommerce-shop .woocommerce ul.products li.product .button {
    border-radius: 6px;
    background: var(--kmr-pink);
    box-shadow: 0 10px 22px rgba(214, 31, 102, 0.22);
}

body.woocommerce-shop .woocommerce ul.products li.product a.button:hover,
body.woocommerce-shop .woocommerce ul.products li.product .button:hover {
    background: var(--kmr-ink);
}

body.woocommerce-shop .kmr-newsletter {
    border-radius: 8px;
    background:
        linear-gradient(120deg, var(--kmr-blue), #111827);
    box-shadow: 0 22px 48px rgba(16, 19, 31, 0.16);
}

body.woocommerce-shop .kmr-newsletter-button,
body.woocommerce-shop .kmr-newsletter p > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 10px;
    padding: 0 28px;
    border: 0;
    border-radius: 6px;
    background: #38d39f;
    color: #10131f !important;
    font-weight: 850;
    box-shadow: 0 10px 22px rgba(0,0,0,0.22);
    cursor: pointer;
}

body.woocommerce-shop .kmr-newsletter-button:hover,
body.woocommerce-shop .kmr-newsletter p > button:hover {
    background: #fff;
    color: var(--kmr-pink-dark) !important;
}

body.woocommerce-shop .site-footer {
    border-top: 1px solid var(--kmr-line);
}

@media (max-width: 1024px) {
    body.woocommerce-shop .kmr-hero-banner {
        grid-template-columns: 1fr;
    }

    body.woocommerce-shop .kmr-hero-banner::after {
        display: none;
    }

    body.woocommerce-shop .kmr-premium-toolbar__inner {
        grid-template-columns: 1fr;
    }

    body.woocommerce-shop .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.woocommerce-shop .site-main,
    body.woocommerce-shop .page-header,
    body.woocommerce-shop .woocommerce-breadcrumb,
    body.woocommerce-shop .page-title {
        width: min(100% - 24px, 1220px);
    }

    body.woocommerce-shop .kmr-hero-banner {
        min-height: 0;
        margin-inline: auto;
        padding: 28px 20px;
    }

    body.woocommerce-shop .kmr-hero-banner::before {
        font-size: 10px;
    }

    body.woocommerce-shop .kmr-shop-search {
        grid-template-columns: 34px 1fr;
    }

    body.woocommerce-shop .kmr-shop-search button {
        grid-column: 1 / -1;
        min-height: 42px;
    }

    body.woocommerce-shop .kmr-store-assurance {
        grid-template-columns: 1fr;
    }

    body.woocommerce-shop .woocommerce-result-count,
    body.woocommerce-shop .woocommerce-ordering {
        float: none;
        width: 100%;
    }

    body.woocommerce-shop .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.woocommerce-shop .woocommerce ul.products li.product a img {
        height: 220px;
        padding: 12px;
    }
}

@media (max-width: 430px) {
    body.woocommerce-shop .woocommerce ul.products li.product a img {
        height: 178px;
    }

    body.woocommerce-shop .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 13px;
    }

    body.woocommerce-shop .woocommerce ul.products li.product .price {
        font-size: 18px;
    }
}

/* ==================================================
   Electro-style clone for /loja
   ================================================== */
body.woocommerce-shop {
    --electro-yellow: #fed700;
    --electro-yellow-dark: #e9c300;
    --electro-blue: #0062bd;
    --electro-text: #333e48;
    --electro-muted: #7a8490;
    --electro-line: #e6e6e6;
    --electro-soft: #f5f5f5;
    --electro-red: #e23a59;
    background: #fff;
    color: var(--electro-text);
}

body.woocommerce-shop #site-header,
body.woocommerce-shop .site-header,
body.woocommerce-shop .page-header,
body.woocommerce-shop .woocommerce-breadcrumb,
body.woocommerce-shop .page-title,
body.woocommerce-shop .site-footer {
    display: none !important;
}

body.woocommerce-shop .site-main {
    width: 100%;
    max-width: none;
    margin: 0;
}

body.woocommerce-shop .kmr-electro-wrap,
body.woocommerce-shop .kmr-electro-container,
body.woocommerce-shop .kmr-electro-list-bands,
body.woocommerce-shop .kmr-electro-logo-row,
body.woocommerce-shop .kmr-electro-columns,
body.woocommerce-shop .woocommerce-result-count,
body.woocommerce-shop .woocommerce-ordering,
body.woocommerce-shop .woocommerce ul.products {
    width: min(1290px, calc(100% - 40px));
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
}

body.woocommerce-shop .kmr-electro-wrap {
    font-family: Inter, Arial, sans-serif;
}

body.woocommerce-shop .kmr-electro-topbar {
    border-bottom: 1px solid var(--electro-line);
    color: #6d7782;
    font-size: 13px;
    background: #fff;
}

body.woocommerce-shop .kmr-electro-topbar .kmr-electro-container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    min-height: 40px;
    align-items: center;
}

body.woocommerce-shop .kmr-electro-links {
    display: flex;
    gap: 0;
    white-space: nowrap;
}

body.woocommerce-shop .kmr-electro-links a {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 14px;
    border-right: 1px solid var(--electro-line);
    color: #525c66;
    font-weight: 500;
}

body.woocommerce-shop .kmr-electro-links a:last-child {
    border-right: 0;
    padding-right: 0;
}

body.woocommerce-shop .kmr-electro-header {
    padding: 28px 0 22px;
    background: #fff;
}

body.woocommerce-shop .kmr-electro-header .kmr-electro-container {
    display: grid;
    grid-template-columns: 230px 1fr 250px;
    gap: 28px;
    align-items: center;
}

body.woocommerce-shop .kmr-electro-logo {
    display: inline-flex;
    align-items: baseline;
    color: var(--electro-text);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

body.woocommerce-shop .kmr-electro-logo::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 3px;
    border-radius: 50%;
    background: var(--electro-yellow);
}

body.woocommerce-shop .kmr-electro-search {
    display: grid;
    grid-template-columns: 1fr 190px 66px;
    min-height: 50px;
    border: 2px solid var(--electro-yellow);
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
}

body.woocommerce-shop .kmr-electro-search input,
body.woocommerce-shop .kmr-electro-search select {
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 22px;
    color: var(--electro-text);
    background: #fff;
    font-size: 15px;
}

body.woocommerce-shop .kmr-electro-search select {
    border-left: 1px solid var(--electro-line);
    color: #5f6872;
    font-weight: 600;
}

body.woocommerce-shop .kmr-electro-search button {
    border: 0;
    background: var(--electro-yellow);
    color: var(--electro-text);
    font-size: 0;
    font-weight: 900;
    cursor: pointer;
}

body.woocommerce-shop .kmr-electro-search button::before {
    content: "⌕";
    font-size: 25px;
}

body.woocommerce-shop .kmr-electro-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    color: var(--electro-text);
    font-size: 22px;
}

body.woocommerce-shop .kmr-electro-cart {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 800;
}

body.woocommerce-shop .kmr-electro-cart b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: -8px;
    border-radius: 50%;
    background: var(--electro-yellow);
    font-size: 12px;
}

body.woocommerce-shop .kmr-electro-nav {
    border-bottom: 1px solid #dcdcdc;
    background: #fff;
}

body.woocommerce-shop .kmr-electro-nav .kmr-electro-container {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 28px;
    align-items: center;
}

body.woocommerce-shop .kmr-electro-dept-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 6px 6px 0 0;
    background: var(--electro-yellow);
    color: var(--electro-text);
    font-size: 15px;
    font-weight: 850;
}

body.woocommerce-shop .kmr-electro-mainnav {
    display: flex;
    align-items: center;
    gap: 36px;
}

body.woocommerce-shop .kmr-electro-mainnav a {
    color: var(--electro-text);
    font-weight: 750;
}

body.woocommerce-shop .kmr-electro-mainnav a:first-child {
    color: #df3f5f;
}

body.woocommerce-shop .kmr-electro-ship {
    color: var(--electro-text);
    font-weight: 750;
    white-space: nowrap;
}

body.woocommerce-shop .kmr-electro-hero {
    background:
        linear-gradient(90deg, rgba(246,246,246,0.96), rgba(238,238,238,0.74) 48%, rgba(247,247,247,0.98)),
        radial-gradient(circle at 72% 48%, rgba(254,215,0,0.16), transparent 34%),
        #ededed;
    border-bottom: 1px solid #e5e5e5;
}

body.woocommerce-shop .kmr-electro-hero .kmr-electro-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 444px;
}

body.woocommerce-shop .kmr-electro-departments {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 1px 0 var(--electro-line);
    min-height: 444px;
}

body.woocommerce-shop .kmr-electro-departments a {
    display: flex;
    justify-content: space-between;
    padding: 14px 22px;
    border-bottom: 1px solid var(--electro-line);
    color: #4f5964;
    font-weight: 700;
}

body.woocommerce-shop .kmr-electro-departments a:hover {
    color: var(--electro-blue);
}

body.woocommerce-shop .kmr-electro-hero-panel {
    display: grid;
    grid-template-columns: minmax(440px, 1fr) minmax(360px, 500px);
    align-items: center;
    gap: 28px;
    padding: 52px 56px 48px 82px;
    overflow: hidden;
}

body.woocommerce-shop .kmr-electro-hero-copy small {
    display: block;
    color: #10a8d5;
    font-size: 18px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

body.woocommerce-shop .kmr-electro-hero-copy h1 {
    max-width: 580px;
    margin: 10px 0 14px;
    color: var(--electro-text);
    font-size: clamp(46px, 4.2vw, 66px);
    font-weight: 300;
    line-height: 1.02;
    text-transform: uppercase;
}

body.woocommerce-shop .kmr-electro-hero-copy h1 strong {
    display: block;
    font-weight: 900;
}

body.woocommerce-shop .kmr-electro-hero-copy p {
    margin: 0 0 28px;
    color: #606a75;
    font-size: 18px;
    line-height: 1.55;
    max-width: 520px;
}

body.woocommerce-shop .kmr-electro-hero-copy a,
body.woocommerce-shop .kmr-electro-promo a,
body.woocommerce-shop .kmr-electro-columns aside a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 30px;
    border-radius: 22px;
    background: var(--electro-yellow);
    color: var(--electro-text);
    font-weight: 850;
}

body.woocommerce-shop .kmr-electro-book-stage {
    position: relative;
    display: block;
    justify-self: center;
    width: min(460px, 100%);
    height: 350px;
    perspective: 900px;
}

body.woocommerce-shop .kmr-book-shadow {
    position: absolute;
    left: 18%;
    right: 5%;
    bottom: 10px;
    height: 46px;
    border-radius: 50%;
    background: rgba(45, 50, 58, 0.2);
    filter: blur(18px);
}

body.woocommerce-shop .kmr-book-back,
body.woocommerce-shop .kmr-book-pages,
body.woocommerce-shop .kmr-book-front {
    position: absolute;
    top: 18px;
    bottom: 30px;
    border-radius: 10px;
    transform-style: preserve-3d;
}

body.woocommerce-shop .kmr-book-back {
    left: 118px;
    width: 250px;
    background: linear-gradient(145deg, #64233a, #a50f42);
    transform: rotate(-7deg) skewY(-2deg);
    box-shadow: 0 26px 48px rgba(51,62,72,0.2);
}

body.woocommerce-shop .kmr-book-pages {
    left: 176px;
    width: 224px;
    background:
        repeating-linear-gradient(90deg, #fff 0 5px, #e9edf1 5px 7px);
    transform: rotate(4deg) skewY(1deg);
    box-shadow: 0 18px 36px rgba(51,62,72,0.16);
}

body.woocommerce-shop .kmr-book-front {
    left: 82px;
    width: 268px;
    padding: 42px 34px;
    background:
        linear-gradient(90deg, var(--electro-yellow) 0 18px, #101827 18px 100%);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: 0 32px 58px rgba(51,62,72,0.24);
    color: #fff;
    transform: rotate(-2deg);
}

body.woocommerce-shop .kmr-book-front::before,
body.woocommerce-shop .kmr-book-front::after {
    content: "";
    position: absolute;
    left: 42px;
    right: 28px;
    height: 3px;
    background: rgba(255,255,255,0.85);
}

body.woocommerce-shop .kmr-book-front::before {
    top: 28px;
}

body.woocommerce-shop .kmr-book-front::after {
    bottom: 38px;
}

body.woocommerce-shop .kmr-book-front span {
    display: block;
    color: var(--electro-yellow);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.woocommerce-shop .kmr-book-front strong {
    display: block;
    margin-top: 42px;
    color: #fff;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 900;
}

body.woocommerce-shop .kmr-book-front em {
    display: block;
    margin-top: 24px;
    color: rgba(255,255,255,0.74);
    font-size: 15px;
    line-height: 1.5;
    font-style: normal;
}

body.woocommerce-shop .kmr-book-badge {
    position: absolute;
    right: 36px;
    top: 28px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    color: var(--electro-text);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 14px 24px rgba(51,62,72,0.16);
    text-transform: uppercase;
}

body.woocommerce-shop .kmr-electro-promo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 28px 0;
}

body.woocommerce-shop .kmr-electro-promo {
    display: grid;
    grid-template-columns: 44% 1fr;
    align-items: center;
    min-height: 145px;
    padding: 24px 28px;
    background: #f4f4f4;
}

body.woocommerce-shop .kmr-electro-promo img {
    max-height: 112px;
    object-fit: contain;
}

body.woocommerce-shop .kmr-electro-promo span {
    display: block;
    color: var(--electro-text);
    font-size: 20px;
    line-height: 1.15;
    text-transform: uppercase;
}

body.woocommerce-shop .kmr-electro-promo span strong {
    display: block;
    font-weight: 900;
}

body.woocommerce-shop .kmr-electro-featured {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 28px;
    margin-bottom: 34px;
    align-items: start;
}

body.woocommerce-shop .kmr-electro-special {
    padding: 26px;
    border: 3px solid var(--electro-yellow);
    border-radius: 20px;
    background: #fff;
}

body.woocommerce-shop .kmr-electro-special h2 {
    margin: 0 0 22px;
    font-size: 25px;
    color: var(--electro-text);
}

body.woocommerce-shop .kmr-electro-special img {
    display: block;
    width: 100%;
    max-height: 330px;
    object-fit: contain;
}

body.woocommerce-shop .kmr-electro-special strong {
    display: block;
    margin: 16px 0;
    color: var(--electro-blue);
    font-size: 17px;
}

body.woocommerce-shop .kmr-electro-special em {
    display: block;
    color: var(--electro-text);
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
}

body.woocommerce-shop .kmr-electro-tabs {
    display: flex;
    justify-content: center;
    gap: 44px;
    min-height: 50px;
    border-bottom: 1px solid var(--electro-line);
    color: var(--electro-text);
    font-size: 21px;
}

body.woocommerce-shop .kmr-electro-tabs span:first-child {
    position: relative;
    font-weight: 850;
}

body.woocommerce-shop .kmr-electro-tabs span:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--electro-yellow);
}

body.woocommerce-shop .kmr-electro-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    min-height: 630px;
}

body.woocommerce-shop .kmr-electro-preview-card {
    min-height: 315px;
    padding: 26px 24px 18px;
    border-right: 1px solid var(--electro-line);
    color: var(--electro-text);
}

body.woocommerce-shop .kmr-electro-preview-card:last-child {
    border-right: 0;
}

body.woocommerce-shop .kmr-electro-preview-card small {
    display: block;
    min-height: 18px;
    color: #9aa3ad;
    font-weight: 700;
}

body.woocommerce-shop .kmr-electro-preview-card strong {
    display: block;
    min-height: 48px;
    margin: 6px 0 10px;
    color: var(--electro-blue);
    font-size: 16px;
    line-height: 1.2;
}

body.woocommerce-shop .kmr-electro-preview-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
}

body.woocommerce-shop .kmr-electro-preview-card em {
    display: block;
    margin-top: 12px;
    color: var(--electro-text);
    font-size: 22px;
    font-style: normal;
}

body.woocommerce-shop .kmr-electro-strip {
    margin: 24px 0 0;
    padding: 18px 28px;
    background: #f2f2f2;
    color: var(--electro-text);
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
}

body.woocommerce-shop .kmr-electro-strip strong {
    font-weight: 900;
}

body.woocommerce-shop .kmr-categories,
body.woocommerce-shop .kmr-features,
body.woocommerce-shop .kmr-section-title,
body.woocommerce-shop .kmr-newsletter,
body.woocommerce-shop .kmr-premium-toolbar {
    display: none !important;
}

body.woocommerce-shop .woocommerce-result-count {
    display: block;
    margin-top: 32px;
    margin-bottom: 12px;
    padding: 0 0 12px;
    border-radius: 0;
    border-bottom: 1px solid var(--electro-line);
    background: transparent;
    box-shadow: none;
    color: var(--electro-text);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

body.woocommerce-shop .woocommerce-result-count::after {
    content: "";
    display: block;
    width: 82px;
    height: 3px;
    margin-top: 10px;
    background: var(--electro-yellow);
}

body.woocommerce-shop .woocommerce-ordering {
    display: flex;
    justify-content: flex-end;
    width: min(1290px, calc(100% - 40px));
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -60px;
    margin-bottom: 26px;
}

body.woocommerce-shop .woocommerce-ordering select {
    width: 230px !important;
    min-width: 210px;
    border: 2px solid var(--electro-yellow);
    border-radius: 22px;
    color: var(--electro-text);
    font-weight: 800;
}

body.woocommerce-shop .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--electro-line);
    border-left: 1px solid var(--electro-line);
}

body.woocommerce-shop .woocommerce ul.products li.product {
    min-height: 430px;
    margin: 0 !important;
    padding: 22px 20px 20px;
    border: 0;
    border-right: 1px solid var(--electro-line);
    border-bottom: 1px solid var(--electro-line);
    border-radius: 0;
    box-shadow: none;
    animation: none;
}

body.woocommerce-shop .woocommerce ul.products li.product:hover {
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(51,62,72,0.14);
}

body.woocommerce-shop .woocommerce ul.products li.product a img {
    height: 215px;
    padding: 0;
    background: transparent;
}

body.woocommerce-shop .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 46px;
    padding: 0;
    color: var(--electro-blue);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 850;
}

body.woocommerce-shop .kmr-product-category {
    padding: 0;
    color: #9aa3ad;
    font-size: 12px;
}

body.woocommerce-shop .kmr-product-excerpt {
    display: none;
}

body.woocommerce-shop .woocommerce ul.products li.product .price {
    padding: 0;
    color: var(--electro-text);
    font-size: 23px;
    font-weight: 500;
}

body.woocommerce-shop .woocommerce ul.products li.product a.button,
body.woocommerce-shop .woocommerce ul.products li.product .button {
    width: auto;
    min-height: 36px;
    margin: 12px 0 0;
    padding: 0 16px;
    border-radius: 18px;
    background: var(--electro-yellow);
    color: var(--electro-text) !important;
    box-shadow: none;
    font-size: 12px;
    text-transform: none;
}

body.woocommerce-shop .kmr-badge {
    border-radius: 14px;
    background: var(--electro-yellow) !important;
    color: var(--electro-text) !important;
}

body.woocommerce-shop .kmr-electro-list-bands {
    margin-top: 54px;
}

body.woocommerce-shop .kmr-electro-band-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--electro-line);
}

body.woocommerce-shop .kmr-electro-band-head h2,
body.woocommerce-shop .kmr-electro-columns h3 {
    position: relative;
    margin: 0;
    padding-bottom: 14px;
    color: var(--electro-text);
    font-size: 25px;
    font-weight: 500;
}

body.woocommerce-shop .kmr-electro-band-head h2::after,
body.woocommerce-shop .kmr-electro-columns h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 88px;
    height: 3px;
    background: var(--electro-yellow);
}

body.woocommerce-shop .kmr-electro-band-head a {
    padding: 8px 18px;
    border: 2px solid var(--electro-yellow);
    border-radius: 20px;
    color: var(--electro-text);
    font-weight: 800;
}

body.woocommerce-shop .kmr-electro-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 28px 0;
}

body.woocommerce-shop .kmr-electro-mini-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 145px;
    padding: 14px 18px;
    border-right: 1px solid var(--electro-line);
    color: var(--electro-text);
}

body.woocommerce-shop .kmr-electro-mini-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

body.woocommerce-shop .kmr-electro-mini-card small,
body.woocommerce-shop .kmr-electro-columns small {
    display: block;
    color: #9aa3ad;
    font-size: 12px;
    font-style: normal;
}

body.woocommerce-shop .kmr-electro-mini-card strong,
body.woocommerce-shop .kmr-electro-columns a span {
    display: block;
    color: var(--electro-blue);
    font-weight: 850;
    line-height: 1.25;
}

body.woocommerce-shop .kmr-electro-mini-card em,
body.woocommerce-shop .kmr-electro-columns em {
    display: block;
    margin-top: 9px;
    color: var(--electro-text);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}

body.woocommerce-shop .kmr-electro-logo-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 34px 0;
    border-top: 1px solid var(--electro-line);
    border-bottom: 1px solid var(--electro-line);
    color: #c3cad2;
    font-size: 31px;
    font-weight: 800;
}

body.woocommerce-shop .kmr-electro-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 300px;
    gap: 28px;
    padding: 42px 0;
}

body.woocommerce-shop .kmr-electro-columns a {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 16px;
    padding: 16px 0;
    color: var(--electro-text);
}

body.woocommerce-shop .kmr-electro-columns img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

body.woocommerce-shop .kmr-electro-columns aside {
    min-height: 260px;
    padding: 34px;
    background: #f2f2f2;
}

body.woocommerce-shop .kmr-electro-columns aside strong {
    display: block;
    font-size: 28px;
    text-transform: uppercase;
}

body.woocommerce-shop .kmr-electro-columns aside span {
    display: block;
    margin: 12px 0 24px;
    color: var(--electro-muted);
}

body.woocommerce-shop .kmr-electro-newsletter {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 520px);
    gap: 24px;
    align-items: center;
    padding: 20px max(20px, calc((100vw - 1290px) / 2));
    background: var(--electro-yellow);
}

body.woocommerce-shop .kmr-electro-newsletter strong {
    display: block;
    font-size: 22px;
}

body.woocommerce-shop .kmr-electro-newsletter span {
    color: #5d6570;
}

body.woocommerce-shop .kmr-electro-newsletter form {
    display: grid;
    grid-template-columns: 1fr 140px;
    min-height: 48px;
    border-radius: 26px;
    overflow: hidden;
}

body.woocommerce-shop .kmr-electro-newsletter input {
    border: 0;
    padding: 0 24px;
}

body.woocommerce-shop .kmr-electro-newsletter button {
    border: 0;
    background: var(--electro-text);
    color: #fff;
    font-weight: 800;
}

@media (max-width: 1100px) {
    body.woocommerce-shop .kmr-electro-header .kmr-electro-container,
    body.woocommerce-shop .kmr-electro-nav .kmr-electro-container,
    body.woocommerce-shop .kmr-electro-hero .kmr-electro-container,
    body.woocommerce-shop .kmr-electro-featured,
    body.woocommerce-shop .kmr-electro-newsletter {
        grid-template-columns: 1fr;
    }

    body.woocommerce-shop .kmr-electro-icons,
    body.woocommerce-shop .kmr-electro-ship {
        justify-content: flex-start;
    }

    body.woocommerce-shop .kmr-electro-hero-panel {
        grid-template-columns: 1fr;
        padding: 38px 24px;
    }

    body.woocommerce-shop .kmr-electro-departments {
        display: none;
    }

    body.woocommerce-shop .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.woocommerce-shop .kmr-electro-wrap,
    body.woocommerce-shop .kmr-electro-container,
    body.woocommerce-shop .kmr-electro-list-bands,
    body.woocommerce-shop .kmr-electro-logo-row,
    body.woocommerce-shop .kmr-electro-columns,
    body.woocommerce-shop .woocommerce-result-count,
    body.woocommerce-shop .woocommerce-ordering,
    body.woocommerce-shop .woocommerce ul.products {
        width: min(100% - 24px, 1290px);
    }

    body.woocommerce-shop .kmr-electro-topbar .kmr-electro-container,
    body.woocommerce-shop .kmr-electro-links,
    body.woocommerce-shop .kmr-electro-mainnav,
    body.woocommerce-shop .kmr-electro-promo-row,
    body.woocommerce-shop .kmr-electro-preview-grid,
    body.woocommerce-shop .kmr-electro-mini-grid,
    body.woocommerce-shop .kmr-electro-columns,
    body.woocommerce-shop .kmr-electro-logo-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    body.woocommerce-shop .kmr-electro-header {
        padding-top: 14px;
    }

    body.woocommerce-shop .kmr-electro-logo {
        font-size: 34px;
    }

    body.woocommerce-shop .kmr-electro-search {
        grid-template-columns: 1fr 56px;
    }

    body.woocommerce-shop .kmr-electro-search select {
        display: none;
    }

    body.woocommerce-shop .kmr-electro-hero-copy h1 {
        font-size: 36px;
    }

    body.woocommerce-shop .kmr-electro-hero-book {
        max-height: 260px;
        margin-top: 22px;
    }

    body.woocommerce-shop .kmr-electro-featured {
        width: min(100% - 24px, 1290px);
        margin-left: auto;
        margin-right: auto;
    }

    body.woocommerce-shop .woocommerce-ordering {
        justify-content: flex-start;
        margin-top: 0;
        width: min(100% - 24px, 1290px);
    }

    body.woocommerce-shop .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.woocommerce-shop .woocommerce ul.products li.product {
        min-height: 360px;
        padding: 16px 12px;
    }

    body.woocommerce-shop .woocommerce ul.products li.product a img {
        height: 160px;
    }

    body.woocommerce-shop .kmr-electro-newsletter form {
        grid-template-columns: 1fr;
        border-radius: 8px;
    }
}

/* Final WooCommerce archive overrides: the body itself owns .woocommerce. */
body.woocommerce-shop.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: min(1290px, calc(100% - 40px)) !important;
    max-width: 1290px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-top: 1px solid var(--electro-line) !important;
    border-left: 1px solid var(--electro-line) !important;
}

body.woocommerce-shop.woocommerce ul.products li.product {
    min-height: 430px !important;
    margin: 0 !important;
    padding: 22px 20px 20px !important;
    border: 0 !important;
    border-right: 1px solid var(--electro-line) !important;
    border-bottom: 1px solid var(--electro-line) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    text-align: left !important;
}

body.woocommerce-shop.woocommerce ul.products li.product:hover {
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(51,62,72,0.14) !important;
}

body.woocommerce-shop.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 215px !important;
    padding: 0 !important;
    object-fit: contain !important;
    background: transparent !important;
}

body.woocommerce-shop.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 46px !important;
    padding: 0 !important;
    color: var(--electro-blue) !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    font-weight: 850 !important;
    text-align: left !important;
}

body.woocommerce-shop.woocommerce .kmr-product-category {
    padding: 0 !important;
    color: #9aa3ad !important;
    font-size: 12px !important;
    text-align: left !important;
}

body.woocommerce-shop.woocommerce .kmr-product-excerpt {
    display: none !important;
}

body.woocommerce-shop.woocommerce ul.products li.product .price {
    padding: 0 !important;
    color: var(--electro-text) !important;
    font-size: 23px !important;
    font-weight: 500 !important;
    text-align: left !important;
}

body.woocommerce-shop.woocommerce ul.products li.product a.button,
body.woocommerce-shop.woocommerce ul.products li.product .button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-height: 36px !important;
    margin: 12px 0 0 !important;
    padding: 0 16px !important;
    border-radius: 18px !important;
    background: var(--electro-yellow) !important;
    color: var(--electro-text) !important;
    box-shadow: none !important;
    font-size: 12px !important;
    text-transform: none !important;
}

@media (max-width: 1100px) {
    body.woocommerce-shop.woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    body.woocommerce-shop.woocommerce ul.products {
        width: min(100% - 24px, 1290px) !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.woocommerce-shop.woocommerce ul.products li.product {
        min-height: 360px !important;
        padding: 16px 12px !important;
    }

    body.woocommerce-shop.woocommerce ul.products li.product a img {
        height: 160px !important;
    }
}

/* First fold refinement: closer to Electro's full-width hero rhythm. */
body.woocommerce-shop .kmr-electro-topbar {
    border-top: 4px solid #31313a;
    font-size: 13px !important;
}

body.woocommerce-shop .kmr-electro-topbar .kmr-electro-container {
    min-height: 34px !important;
}

body.woocommerce-shop .kmr-electro-header {
    padding: 26px 0 20px !important;
}

body.woocommerce-shop .kmr-electro-header .kmr-electro-container {
    grid-template-columns: 220px 38px minmax(460px, 1fr) 292px !important;
    gap: 22px !important;
    align-items: center !important;
}

body.woocommerce-shop .kmr-electro-logo {
    grid-column: 1 !important;
    font-size: 43px !important;
}

body.woocommerce-shop .kmr-electro-header .kmr-electro-logo + .kmr-electro-search::before {
    content: "";
}

body.woocommerce-shop .kmr-electro-header .kmr-electro-container::before {
    content: "☰";
    grid-column: 2;
    align-self: center;
    justify-self: center;
    color: var(--electro-text);
    font-size: 26px;
    line-height: 1;
}

body.woocommerce-shop .kmr-electro-search {
    grid-column: 3;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 190px 58px !important;
    align-items: center !important;
    min-height: 46px !important;
    border-width: 2px !important;
    border-radius: 24px !important;
}

body.woocommerce-shop .kmr-electro-search input,
body.woocommerce-shop .kmr-electro-search select {
    font-size: 14px !important;
    font-weight: 500 !important;
    min-height: 44px !important;
}

body.woocommerce-shop .kmr-electro-search input[type="search"] {
    grid-column: 1 !important;
}

body.woocommerce-shop .kmr-electro-search select {
    grid-column: 2 !important;
    height: 44px !important;
}

body.woocommerce-shop .kmr-electro-search button {
    grid-column: 3 !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    width: 58px;
    height: 46px !important;
    min-height: 46px !important;
    border-radius: 0 24px 24px 0 !important;
}

body.woocommerce-shop .kmr-electro-icons {
    grid-column: 4;
    gap: 24px !important;
    font-size: 21px !important;
    justify-self: end !important;
}

body.woocommerce-shop .kmr-electro-cart {
    font-size: 17px !important;
}

body.woocommerce-shop .kmr-electro-nav {
    border-bottom: 0 !important;
}

body.woocommerce-shop .kmr-electro-nav .kmr-electro-container {
    grid-template-columns: 280px 1fr auto !important;
    gap: 26px !important;
}

body.woocommerce-shop .kmr-electro-dept-title {
    min-height: 52px !important;
    padding: 0 20px !important;
    border-radius: 6px 6px 0 0 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

body.woocommerce-shop .kmr-electro-mainnav {
    gap: 34px !important;
}

body.woocommerce-shop .kmr-electro-mainnav a,
body.woocommerce-shop .kmr-electro-ship {
    color: #333e48 !important;
    font-size: 14px !important;
    font-weight: 750 !important;
}

body.woocommerce-shop .kmr-electro-mainnav a:first-child {
    color: #df3f5f !important;
}

body.woocommerce-shop .kmr-electro-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        linear-gradient(90deg, rgba(246,246,246,0.95), rgba(242,242,242,0.92)),
        linear-gradient(115deg, rgba(255,255,255,0) 0 58%, rgba(255,255,255,0.7) 58% 100%),
        #eeeeee !important;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

body.woocommerce-shop .kmr-electro-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 78%, rgba(255,255,255,0.34) 78% 79%, transparent 79%),
        linear-gradient(145deg, rgba(255,255,255,0.32), transparent 35%);
    pointer-events: none;
}

body.woocommerce-shop .kmr-electro-hero .kmr-electro-container {
    position: relative;
    min-height: 430px !important;
}

body.woocommerce-shop .kmr-electro-departments {
    min-height: 430px !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 18px 36px rgba(51,62,72,0.04) !important;
}

body.woocommerce-shop .kmr-electro-departments a {
    min-height: 35px;
    padding: 9px 18px !important;
    color: #46515d !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.2;
}

body.woocommerce-shop .kmr-electro-departments li:nth-child(-n+3) a {
    font-weight: 750 !important;
}

body.woocommerce-shop .kmr-electro-departments a span {
    color: #a7adb4;
    font-size: 22px;
    line-height: 0.8;
}

body.woocommerce-shop .kmr-electro-hero-panel {
    min-height: 430px;
    grid-template-columns: minmax(440px, 0.9fr) minmax(430px, 0.85fr) !important;
    gap: 34px !important;
    padding: 48px 68px 46px 92px !important;
}

body.woocommerce-shop .kmr-electro-hero-copy small {
    color: #23b7e5 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
}

body.woocommerce-shop .kmr-electro-hero-copy h1 {
    max-width: 570px !important;
    margin: 8px 0 12px !important;
    color: #333e48 !important;
    font-size: clamp(43px, 4vw, 62px) !important;
    font-weight: 300 !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
}

body.woocommerce-shop .kmr-electro-hero-copy h1 strong {
    font-weight: 850 !important;
}

body.woocommerce-shop .kmr-electro-hero-copy p {
    max-width: 500px !important;
    color: #5d6874 !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
}

body.woocommerce-shop .kmr-electro-hero-copy a {
    min-width: 150px;
    min-height: 40px !important;
    border-radius: 8px !important;
    font-size: 14px;
}

body.woocommerce-shop .kmr-electro-book-stage {
    width: min(500px, 100%) !important;
    height: 350px !important;
    transform: translateX(8px);
}

body.woocommerce-shop .kmr-book-front {
    left: 92px !important;
    width: 286px !important;
    transform: rotate(-2deg) translateZ(1px) !important;
}

body.woocommerce-shop .kmr-book-back {
    left: 132px !important;
    width: 270px !important;
}

body.woocommerce-shop .kmr-book-pages {
    left: 190px !important;
    width: 236px !important;
}

@media (max-width: 1100px) {
    body.woocommerce-shop .kmr-electro-header .kmr-electro-container {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-shop .kmr-electro-header .kmr-electro-container::before {
        display: none;
    }

    body.woocommerce-shop .kmr-electro-search,
    body.woocommerce-shop .kmr-electro-icons {
        grid-column: auto;
    }

    body.woocommerce-shop .kmr-electro-hero {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
