/*
Theme Name: Bumbleride
Theme URI: https://froppy.ee
Author: Froppy OÜ
Author URI: https://froppy.ee
Description: Ametliku Bumbleride edasimüüja WooCommerce teema. Identne bumbleride.com kujundusega.
Version: 1.0.0
License: Proprietary
Text Domain: bumbleride
Domain Path: /languages
Requires at least: 6.0
Tested up to: 6.7
WC requires at least: 8.0
WC tested up to: 9.0
*/

/* =====================================================
   FONTS
   ===================================================== */
@font-face {
    font-family: 'Helvetica Neue LT';
    src: url('assets/fonts/HelveticaNeueLTPro-Roman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue LT';
    src: url('assets/fonts/HelveticaNeueLTPro-Bd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =====================================================
   CSS VARIABLES (muudetav adminnist)
   ===================================================== */
:root {
    --br-font: 'Helvetica Neue LT', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --br-color-text: #333333;
    --br-color-text-light: #666666;
    --br-color-text-muted: #999999;
    --br-color-bg: #ffffff;
    --br-color-bg-light: #f4f4f2;
    --br-color-border: #e8e8e8;
    --br-color-border-dark: #cccccc;
    --br-color-announce-bg: #1a1a1a;
    --br-color-announce-text: #ffffff;
    --br-color-btn-bg: #333333;
    --br-color-btn-text: #ffffff;
    --br-color-star: #f0a500;
    --br-radius-pill: 25px;
    --br-max-width: 1280px;
    --br-header-height: 52px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--br-font);
    font-size: 13px;
    color: var(--br-color-text);
    background: var(--br-color-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea {
    font-family: var(--br-font);
    font-size: 13px;
}
button { cursor: pointer; }
ul, ol { list-style: none; }

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.br-announcement {
    background: var(--br-color-announce-bg);
    color: var(--br-color-announce-text);
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    line-height: 1.4;
}
.br-announcement a {
    color: var(--br-color-announce-text);
    text-decoration: underline;
}

/* =====================================================
   HEADER
   ===================================================== */
.br-header {
    background: var(--br-color-bg);
    border-bottom: 1px solid var(--br-color-border);
    position: sticky;
    top: 0;
    z-index: 500;
}
.br-header__inner {
    max-width: var(--br-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--br-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
/* Logo — vasakul, väike */
.br-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    text-decoration: none;
}
.br-logo__icon { width: 11px; height: 14px; fill: #1a1a1a; }
.br-logo__text {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    text-transform: lowercase;
}

/* Nav + Actions — paremal koos, flex-row */
.br-header__right {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
}
.br-nav {
    display: flex;
    align-items: center;
    gap: 0;
}
.br-nav__item {
    position: relative;
    font-size: 13px;
    letter-spacing: 0.01em;
    color: var(--br-color-text);
    padding: 0 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s;
    height: var(--br-header-height);
    display: flex;
    align-items: center;
}
.br-nav__item:hover { color: #000; }
.br-nav__item > a {
    color: inherit;
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

/* Dropdown */
.br-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--br-color-border);
    border-top: 2px solid var(--br-color-text);
    min-width: 220px;
    padding: 12px 0;
    z-index: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.br-nav__item:hover .br-nav__dropdown { display: block; }
.br-nav__dropdown a {
    display: block;
    padding: 8px 20px;
    font-size: 12px;
    color: var(--br-color-text);
    letter-spacing: 0.03em;
    transition: background 0.1s;
}
.br-nav__dropdown a:hover { background: var(--br-color-bg-light); }
.br-nav__dropdown-title {
    padding: 6px 20px 2px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--br-color-text-muted);
    font-weight: 700;
}

.br-header__actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
.br-header__icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--br-color-text);
    transition: opacity 0.15s;
    position: relative;
    border-radius: 2px;
    cursor: pointer;
}
.br-header__icon-btn:hover { opacity: 0.6; }
.br-header__icon-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.br-cart-count {
    position: absolute;
    top: 4px;
    right: 2px;
    background: var(--br-color-text);
    color: #fff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile menu toggle */
.br-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--br-color-text);
    padding: 6px;
    cursor: pointer;
}
.br-mobile-menu-btn svg {
    width: 22px; height: 22px;
    stroke: currentColor; fill: none;
    stroke-width: 1.5; stroke-linecap: round;
}

/* =====================================================
   HERO SLIDESHOW
   ===================================================== */
.br-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ddd;
}
.br-hero__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.br-hero__slide {
    min-width: 100%;
    position: relative;
    flex-shrink: 0;
}
.br-hero__slide img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.br-hero__caption {
    position: absolute;
    bottom: 56px;
    right: 60px;
    text-align: right;
    max-width: 420px;
}
.br-hero__title {
    font-size: clamp(24px, 3.5vw, 52px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
    letter-spacing: -0.01em;
}
.br-hero__btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.85);
    color: #fff;
    padding: 9px 22px;
    font-size: 11px;
    letter-spacing: 0.1em;
    border-radius: var(--br-radius-pill);
    font-family: var(--br-font);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
}
.br-hero__btn:hover {
    background: #fff;
    color: var(--br-color-text);
    border-color: #fff;
}
.br-hero__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.br-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.2s;
}
.br-hero__dot.is-active { background: #fff; }

/* =====================================================
   COLLECTION PAGE
   ===================================================== */
.br-collection__header {
    text-align: center;
    padding: 40px 24px 32px;
}
.br-collection__title {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
.br-collection__description {
    font-size: 13px;
    color: var(--br-color-text-light);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.br-products-grid {
    max-width: var(--br-max-width);
    margin: 0 auto;
    padding: 0 24px 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.br-products-grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

/* Product Card */
.br-product-card {
    cursor: pointer;
    text-align: center;
}
.br-product-card__img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--br-color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    position: relative;
}
.br-product-card__img-wrap img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.br-product-card:hover .br-product-card__img-wrap img {
    transform: scale(1.05);
}
.br-product-card__name {
    font-size: 14px;
    font-weight: 400;
    color: var(--br-color-text);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}
.br-product-card__price {
    font-size: 13px;
    color: var(--br-color-text-light);
    margin-bottom: 6px;
}
.br-product-card__stars {
    color: var(--br-color-star);
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.br-product-card__review-count {
    font-size: 11px;
    color: var(--br-color-text-muted);
}
.br-product-card__color-name {
    font-size: 11px;
    color: var(--br-color-text-muted);
    margin-bottom: 6px;
    min-height: 16px;
}
.br-swatches {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}
.br-swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}
.br-swatch:hover { transform: scale(1.15); }
.br-swatch.is-active { border-color: var(--br-color-text); }

.br-view-all {
    text-align: center;
    padding-bottom: 48px;
}
.br-view-all__btn {
    display: inline-block;
    border: 1.5px solid var(--br-color-text);
    color: var(--br-color-text);
    padding: 10px 32px;
    font-size: 12px;
    letter-spacing: 0.1em;
    border-radius: var(--br-radius-pill);
    background: transparent;
    font-family: var(--br-font);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.br-view-all__btn:hover {
    background: var(--br-color-text);
    color: #fff;
}

/* =====================================================
   PRODUCT PAGE
   ===================================================== */
.br-single-product {
    max-width: var(--br-max-width);
    margin: 0 auto;
    padding: 28px 24px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Gallery */
.br-product-gallery {
    position: sticky;
    top: calc(var(--br-header-height) + 16px);
}
.br-gallery__main {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--br-color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
}
.br-gallery__main img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: opacity 0.2s;
}
.br-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}
.br-gallery__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--br-color-border-dark);
    border: none; cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}
.br-gallery__dot.is-active { background: var(--br-color-text); }
.br-gallery__thumbs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.br-gallery__thumbs::-webkit-scrollbar { display: none; }
.br-gallery__thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: var(--br-color-bg-light);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.15s;
    display: flex; align-items: center; justify-content: center;
}
.br-gallery__thumb.is-active { border-color: var(--br-color-text); }
.br-gallery__thumb img {
    width: 85%; height: 85%; object-fit: contain;
}

/* Product Info */
.br-product-info {}
.br-product-info__breadcrumb {
    font-size: 11px;
    color: var(--br-color-text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}
.br-product-info__breadcrumb a { color: var(--br-color-text-muted); }
.br-product-info__breadcrumb a:hover { color: var(--br-color-text); }
.br-product-info__name {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}
.br-product-info__stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.br-product-info__stars .stars {
    color: var(--br-color-star);
    font-size: 13px;
    letter-spacing: 1px;
}
.br-product-info__stars .count {
    font-size: 12px;
    color: var(--br-color-text-muted);
    text-decoration: underline;
    cursor: pointer;
}
.br-product-info__price {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 6px;
}
.br-product-info__affirm {
    font-size: 11px;
    color: var(--br-color-text-muted);
    margin-bottom: 20px;
}
.br-product-info__affirm a { color: var(--br-color-text-light); text-decoration: underline; }

/* Variant selector */
.br-variant-label {
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.br-variant-label strong { font-weight: 700; }
.br-variant-swatches {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.br-variant-swatches .br-swatch {
    width: 20px;
    height: 20px;
}

/* Add to cart */
.br-add-to-cart {
    width: 100%;
    background: var(--br-color-btn-bg);
    color: var(--br-color-btn-text);
    border: none;
    padding: 16px 24px;
    font-size: 13px;
    letter-spacing: 0.08em;
    font-family: var(--br-font);
    font-weight: 400;
    transition: background 0.2s;
    margin-bottom: 12px;
    cursor: pointer;
}
.br-add-to-cart:hover { background: #1a1a1a; }

/* Short description / highlights */
.br-product-info__desc {
    font-size: 13px;
    color: var(--br-color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Accordion */
.br-accordion {
    border-top: 1px solid var(--br-color-border);
    margin-top: 8px;
}
.br-accordion__item {
    border-bottom: 1px solid var(--br-color-border);
}
.br-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    background: none;
    border: none;
    font-family: var(--br-font);
    font-size: 13px;
    color: var(--br-color-text);
    letter-spacing: 0.03em;
    cursor: pointer;
    text-align: left;
}
.br-accordion__trigger svg {
    width: 16px; height: 16px;
    stroke: currentColor; fill: none;
    stroke-width: 1.5; stroke-linecap: round;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.br-accordion__item.is-open .br-accordion__trigger svg {
    transform: rotate(180deg);
}
.br-accordion__body {
    display: none;
    padding: 0 0 16px;
}
.br-accordion__item.is-open .br-accordion__body { display: block; }
.br-accordion__body p,
.br-accordion__body li {
    font-size: 12px;
    color: var(--br-color-text-light);
    line-height: 1.7;
    margin-bottom: 4px;
}
.br-accordion__body ul { padding-left: 16px; }
.br-accordion__body ul li { list-style: disc; }

/* =====================================================
   LIFESTYLE CONTENT SECTIONS (tootelehel)
   ===================================================== */
.br-lifestyle {
    max-width: var(--br-max-width);
    margin: 0 auto;
    padding: 48px 0;
}
.br-lifestyle__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 4px;
    align-items: center;
}
.br-lifestyle__row--reverse { direction: rtl; }
.br-lifestyle__row--reverse > * { direction: ltr; }
.br-lifestyle__img {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.br-lifestyle__img img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.br-lifestyle__img:hover img { transform: scale(1.03); }
.br-lifestyle__text {
    padding: 48px 56px;
}
.br-lifestyle__eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--br-color-text-muted);
    margin-bottom: 10px;
}
.br-lifestyle__title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.3;
}
.br-lifestyle__body {
    font-size: 12px;
    color: var(--br-color-text-light);
    line-height: 1.8;
}

/* Tech Specs */
.br-tech-specs {
    max-width: var(--br-max-width);
    margin: 0 auto;
    padding: 0 24px 48px;
}
.br-tech-specs__title {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}
.br-tech-specs__table {
    width: 100%;
    border-collapse: collapse;
}
.br-tech-specs__table tr {
    border-bottom: 1px solid var(--br-color-border);
}
.br-tech-specs__table td {
    padding: 10px 0;
    font-size: 12px;
    color: var(--br-color-text-light);
    vertical-align: top;
}
.br-tech-specs__table td:first-child {
    color: var(--br-color-text);
    font-weight: 400;
    width: 45%;
}

/* Related Products */
.br-related {
    max-width: var(--br-max-width);
    margin: 0 auto;
    padding: 0 24px 56px;
}
.br-related__title {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
}
.br-related__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.br-reviews {
    max-width: var(--br-max-width);
    margin: 0 auto;
    padding: 0 24px 56px;
    border-top: 1px solid var(--br-color-border);
    padding-top: 40px;
}
.br-reviews__summary {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 32px;
}
.br-reviews__avg {
    text-align: center;
    flex-shrink: 0;
}
.br-reviews__avg-score {
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 6px;
}
.br-reviews__avg-stars {
    color: var(--br-color-star);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.br-reviews__avg-total {
    font-size: 11px;
    color: var(--br-color-text-muted);
}
.br-reviews__bars {
    flex: 1;
}
.br-reviews__bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}
.br-reviews__bar-label { font-size: 11px; color: var(--br-color-text-muted); width: 40px; text-align: right; }
.br-reviews__bar-track {
    flex: 1;
    height: 6px;
    background: var(--br-color-border);
    border-radius: 3px;
    overflow: hidden;
}
.br-reviews__bar-fill {
    height: 100%;
    background: var(--br-color-star);
    border-radius: 3px;
}
.br-reviews__bar-count { font-size: 11px; color: var(--br-color-text-muted); width: 24px; }
.br-reviews__actions {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
}
.br-reviews__btn {
    border: 1.5px solid var(--br-color-text);
    background: transparent;
    color: var(--br-color-text);
    padding: 9px 20px;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-family: var(--br-font);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.br-reviews__btn:hover { background: var(--br-color-text); color: #fff; }

.br-review-item {
    border-top: 1px solid var(--br-color-border);
    padding: 20px 0;
}
.br-review-item__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}
.br-review-item__stars { color: var(--br-color-star); font-size: 12px; letter-spacing: 1px; }
.br-review-item__date { font-size: 11px; color: var(--br-color-text-muted); margin-left: auto; }
.br-review-item__author { font-size: 12px; font-weight: 700; color: var(--br-color-text); }
.br-review-item__title { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.br-review-item__body { font-size: 12px; color: var(--br-color-text-light); line-height: 1.7; }
.br-review-item__helpful { font-size: 11px; color: var(--br-color-text-muted); margin-top: 8px; }
.br-review-item__brand-reply {
    background: var(--br-color-bg-light);
    border-left: 3px solid var(--br-color-border-dark);
    padding: 10px 14px;
    margin-top: 10px;
}
.br-review-item__brand-reply-name { font-size: 11px; font-weight: 700; margin-bottom: 4px; }
.br-review-item__brand-reply p { font-size: 12px; color: var(--br-color-text-light); line-height: 1.6; }

.br-reviews__pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding-top: 24px;
}
.br-reviews__page-btn {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--br-color-border);
    background: transparent;
    font-size: 12px;
    cursor: pointer;
    font-family: var(--br-font);
    transition: background 0.15s;
}
.br-reviews__page-btn.is-active,
.br-reviews__page-btn:hover {
    background: var(--br-color-text);
    color: #fff;
    border-color: var(--br-color-text);
}

/* =====================================================
   CATEGORY ICONS ROW
   ===================================================== */
.br-category-icons {
    border-top: 1px solid var(--br-color-border);
    border-bottom: 1px solid var(--br-color-border);
    padding: 28px 24px;
}
.br-category-icons__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}
.br-category-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    min-width: 80px;
    transition: opacity 0.15s;
}
.br-category-icon:hover { opacity: 0.7; }
.br-category-icon__img {
    width: 72px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.br-category-icon__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.br-category-icon__label {
    font-size: 11px;
    color: var(--br-color-text);
    text-align: center;
    letter-spacing: 0.02em;
}

/* =====================================================
   NEWSLETTER
   ===================================================== */
.br-newsletter {
    padding: 36px 24px;
    border-top: 1px solid var(--br-color-border);
}
.br-newsletter__inner {
    max-width: var(--br-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.br-newsletter__label {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.br-newsletter__form {
    display: flex;
    border: 1.5px solid var(--br-color-text);
    border-radius: 4px;
    overflow: hidden;
}
.br-newsletter__input {
    border: none;
    outline: none;
    padding: 11px 18px;
    font-size: 13px;
    font-family: var(--br-font);
    min-width: 240px;
    background: #fff;
    color: var(--br-color-text);
}
.br-newsletter__input::placeholder { color: #bbb; }
.br-newsletter__submit {
    background: #fff;
    border: none;
    border-left: 1.5px solid var(--br-color-text);
    padding: 11px 22px;
    font-size: 12px;
    letter-spacing: 0.1em;
    font-family: var(--br-font);
    color: var(--br-color-text);
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.br-newsletter__submit:hover { background: #f5f5f5; }

/* =====================================================
   FOOTER
   ===================================================== */
.br-footer {
    border-top: 1px solid var(--br-color-border);
    padding: 44px 24px 20px;
}
.br-footer__inner {
    max-width: var(--br-max-width);
    margin: 0 auto;
}
.br-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.br-footer__col-title {
    font-size: 10px;
    font-weight: 400;
    color: var(--br-color-text);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
    min-height: 18px;
}
.br-footer__col ul { list-style: none; }
.br-footer__col ul li { margin-bottom: 8px; }
.br-footer__col ul li a {
    font-size: 11px;
    color: #555;
    transition: color 0.15s;
}
.br-footer__col ul li a:hover { color: #000; }

.br-footer__social-title {
    font-size: 10px;
    color: var(--br-color-text);
    margin-bottom: 12px;
}
.br-footer__social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.br-footer__social-links a {
    color: #555;
    transition: color 0.15s;
    display: flex;
    align-items: center;
}
.br-footer__social-links a:hover { color: #000; }
.br-footer__social-links svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    display: block;
}

.br-footer__bottom {
    border-top: 1px solid var(--br-color-border);
    padding-top: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.br-footer__locale {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #666;
    border: 1px solid var(--br-color-border-dark);
    padding: 4px 10px;
    border-radius: 3px;
    cursor: pointer;
}
.br-footer__locale svg { width: 14px; height: 14px; }
.br-footer__copyright { font-size: 11px; color: #aaa; }

/* =====================================================
   UTILITIES
   ===================================================== */
.br-container {
    max-width: var(--br-max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.sr-only {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .br-products-grid { grid-template-columns: repeat(2, 1fr); }
    .br-related__grid { grid-template-columns: repeat(3, 1fr); }
    .br-single-product { gap: 32px; }
}

@media (max-width: 768px) {
    .br-nav { display: none; }
    .br-mobile-menu-btn { display: flex; }
    .br-hero__caption { right: 24px; bottom: 36px; }
    .br-hero__title { font-size: 22px; }
    .br-single-product { grid-template-columns: 1fr; }
    .br-lifestyle__row { grid-template-columns: 1fr; }
    .br-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .br-related__grid { grid-template-columns: repeat(2, 1fr); }
    .br-products-grid { grid-template-columns: 1fr; }
    .br-reviews__summary { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
    .br-header__inner { padding: 0 16px; }
    .br-footer__grid { grid-template-columns: 1fr; }
    .br-newsletter__input { min-width: 160px; }
}

/* =====================================================
   SEARCH OVERLAY
   ===================================================== */
.br-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.br-search-overlay.is-open { display: flex; }
.br-search-overlay__inner {
    width: 100%;
    max-width: 640px;
    padding: 24px;
    position: relative;
}
.br-search-overlay__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    padding: 8px;
}
.br-search-overlay .search-field,
.br-search-overlay input[type="search"] {
    width: 100%;
    border: none;
    border-bottom: 2px solid #333;
    padding: 12px 0;
    font-size: 20px;
    font-family: var(--br-font);
    outline: none;
    background: transparent;
}
.br-search-overlay .search-submit { display: none; }

/* =====================================================
   MOBILE NAV
   ===================================================== */
.br-mobile-nav {
    background: #fff;
    border-top: 1px solid var(--br-color-border);
    padding: 16px 0;
}
.br-mobile-nav__list,
.br-mobile-nav ul {
    list-style: none;
}
.br-mobile-nav a,
.br-mobile-nav li > a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--br-color-text);
    border-bottom: 1px solid var(--br-color-border);
    text-decoration: none;
}
.br-mobile-nav a:hover { background: var(--br-color-bg-light); }

/* =====================================================
   CART COUNT ANIMATION
   ===================================================== */
@keyframes br-bump {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}
.br-cart-count--bump { animation: br-bump 0.3s ease; }

/* =====================================================
   TAGLINE
   ===================================================== */
.br-tagline {
    text-align: center;
    padding: 32px 24px;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* =====================================================
   WC OVERRIDES
   ===================================================== */
.woocommerce-product-gallery { display: none !important; }
.woocommerce-tabs { display: none !important; }
.related.products { display: none !important; }
.entry-summary .woocommerce-product-rating { display: none !important; }

/* Single product layout */
.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    max-width: var(--br-max-width);
    margin: 0 auto;
    padding: 28px 24px 48px;
    align-items: start;
}
.woocommerce div.product #brProductGallery { grid-column: 1; }
.woocommerce div.product .br-product-info { grid-column: 2; }
.woocommerce div.product .br-accordion { grid-column: 1 / -1; }

/* WC notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border-top: none !important;
    border-left: 3px solid #333 !important;
    padding: 12px 16px !important;
    font-size: 12px !important;
    font-family: var(--br-font) !important;
    background: #f9f9f9 !important;
    margin: 0 0 16px !important;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 4px;
    list-style: none;
    padding: 24px 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--br-color-border);
    font-size: 12px;
    font-family: var(--br-font);
    color: var(--br-color-text);
    background: #fff;
    transition: background 0.15s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--br-color-text);
    color: #fff;
    border-color: var(--br-color-text);
}

/* =====================================================
   ADMIN — Product meta boxes style
   ===================================================== */
