/* ── Custom Fonts ─────────────────────────────────────────── */
@font-face {
    font-family: 'SutiRegular';
    font-display: swap;
    src: url('fonts/Mika-Melvas-Suti-Regular.otf') format('opentype');
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --color-bg: #ffffff;
    --color-text: #333333;
    --color-muted: #707070;
    --color-border: #e5e7eb;
    --color-accent: #EDB52A;
    --color-accent-hover: #EF7037;
    --color-dark: #151515;
    --color-dark-secondary: #222222;
    --color-surface: #f4f4f4;
    --color-footer-text: #AFAFAF;
    --radius: 4px;
    --max-width: 1200px;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 14px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main.container { flex: 1; }

a { color: inherit; text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--color-accent); }
img { max-width: 100%; height: auto; display: block; }

p {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 16px;
    line-height: 21px;
}

h1 { color: var(--color-muted); font-size: 32px; font-weight: 700; }
h2 { color: #252525; font-size: 24px; font-weight: 700; }
h3 { color: #252525; font-size: 20px; font-weight: 300; font-family: 'SutiRegular', sans-serif; }
h4 { font-family: var(--font-primary); font-weight: 700; font-size: 18px; }
h5 { font-family: var(--font-secondary); font-weight: 700; font-size: 16px; line-height: 21px; }

/* ── Container ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Header ───────────────────────────────────────────────── */
/* ── Desktop / Mobile toggle ─────────────────────────────── */
.brm-mobile { display: none; }

/* ── Header bar ──────────────────────────────────────────── */
.brm-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.brm-header {
    background: #151515;
    padding: 20px 0;
}

.brm-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brm-header-logo img {
    width: 202px;
    height: auto;
}

.brm-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brm-search-wrap {
    display: inline-block;
    width: 80%;
    max-width: 340px;
}

.brm-search-wrap input {
    width: 100%;
    padding: 8px 18px;
    border-style: none;
    border-radius: 17px;
    background: #F4F4F4;
    color: #333;
    font-size: 14px;
    font-family: var(--font-secondary);
    outline: none;
}

.brm-search-wrap input::placeholder { color: #999; }

.brm-search-wrap input:focus {
    box-shadow: 0 0 0 2px var(--color-accent);
}

.brm-cart-btn {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.brm-cart-btn img {
    width: 30px;
    height: 30px;
}

.brm-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #fff;
    color: #151515;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-primary);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ── Navbar ───────────────────────────────────────────────── */
.brm-navbar {
    background: #222222;
}

.brm-navbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brm-navlinks ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.brm-navlinks li {
    padding: 8px 15px;
}

.brm-navlinks a {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.15s;
}

.brm-navlinks a:hover { color: var(--color-accent); }

.brm-navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brm-navbar-email {
    color: #ffffff;
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 14px;
}

.brm-navbar-email a {
    color: #ffffff;
    text-decoration: none;
}

.brm-navbar-email a:hover { color: var(--color-accent); }

.brm-social-icon {
    display: inline-flex;
    align-items: center;
}

.brm-social-icon img {
    width: 20px;
    height: 20px;
    transition: filter 0.15s;
}

.brm-social-icon:hover img {
    filter: invert(72%) sepia(67%) saturate(497%) hue-rotate(353deg) brightness(97%) contrast(89%);
}

/* ── Mobile header ───────────────────────────────────────── */
.brm-mobile-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.brm-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
}

.brm-mobile-logo img {
    width: 150px;
    height: auto;
}

.brm-mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brm-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.brm-mobile-nav {
    display: none;
    background: #222222;
}

.brm-mobile-nav-open {
    display: block;
}

.brm-mobile-search {
    padding: 12px 15px;
}

.brm-mobile-search input {
    width: 100%;
    padding: 8px 18px;
    border: none;
    border-radius: 17px;
    background: #F4F4F4;
    color: #333;
    font-size: 14px;
    font-family: var(--font-secondary);
    outline: none;
}

.brm-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.brm-mobile-nav li {
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.brm-mobile-nav li a {
    display: block;
    padding: 12px 15px;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.brm-mobile-nav li a:hover { color: var(--color-accent); }

.brm-mobile-nav-footer {
    padding: 15px;
    color: #fff;
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 14px;
}

.brm-mobile-nav-footer a { color: #fff; text-decoration: none; }
.brm-mobile-nav-footer a:hover { color: var(--color-accent); }

.brm-mobile-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.brm-mobile-social img {
    width: 20px;
    height: 20px;
}

/* ── Body offset for fixed header ────────────────────────── */
body {
    padding-top: 110px;
}

/* ── Footer ───────────────────────────────────────────────── */
.brm-footer {
    width: 100%;
    background-color: #151515;
    color: #fff;
}

.brm-footer a { color: #AFAFAF; text-decoration: none; }
.brm-footer a:hover { color: var(--color-accent); }
.brm-footer p { color: #AFAFAF; font-family: var(--font-secondary); font-weight: 300; font-size: 16px; line-height: 21px; }
.brm-footer h5 { color: #fff; font-family: var(--font-primary); font-weight: 700; font-size: 13px; letter-spacing: 0.7px; text-transform: uppercase; margin-bottom: 10px; }

.brm-footer-desktop { display: block; }
.brm-footer-mobile { display: none; }

.brm-footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
    text-align: left;
}

.brm-footer-nav-col .brm-footer-logo {
    display: block;
    margin-bottom: 20px;
    max-width: 220px;
}

.brm-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.brm-footer-links li { margin-bottom: 0; }
.brm-footer-links h5 { margin-bottom: 6px; }
.brm-footer-links a { color: #AFAFAF; }
.brm-footer-links a h5 { color: #AFAFAF; transition: color 0.15s; }
.brm-footer-links a:hover h5 { color: var(--color-accent); }

.brm-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.brm-social-filter {
    width: 20px;
    height: 20px;
    transition: filter 0.15s;
}

.brm-social-filter:hover {
    filter: invert(72%) sepia(67%) saturate(497%) hue-rotate(353deg) brightness(97%) contrast(89%);
}

.brm-opening-table {
    color: #AFAFAF;
    font: 300 16px/21px var(--font-secondary);
}

.brm-opening-table td {
    padding: 5px 20px 2px 0;
    color: #AFAFAF;
}

.brm-footer-finance-col {
    position: relative;
}

.brm-finance-logos {
    display: flex;
    gap: 5px;
    padding: 10px 0 17px;
}

.brm-finance-logos img {
    width: 84px;
    height: 52px;
}

.brm-copyright {
    color: #fff !important;
    font-size: 14px;
    margin-top: 20px;
}

/* ── Mobile Footer ───────────────────────────────────────── */
.brm-footer-mobile-inner {
    text-align: center;
    padding: 0 15px;
}

.brm-footer-logo-mobile {
    display: inline-block;
    padding: 50px 0;
    max-width: 200px;
}

.brm-footer-links-mobile {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.brm-footer-links-mobile li {
    display: inline-flex;
}

.brm-footer-links-mobile li a {
    padding: 0 10px;
    color: #AFAFAF;
}

.brm-footer-links-mobile h5 { color: #AFAFAF; }
.brm-footer-links-mobile a:hover h5 { color: var(--color-accent); }

.brm-footer-mobile-section {
    margin: 50px 0;
}

.brm-footer-mobile-section .brm-footer-social {
    justify-content: center;
}

.brm-opening-table-center {
    margin: 0 auto;
}

.brm-footer-mobile .brm-copyright {
    padding-bottom: 50px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    text-align: center;
    padding: 4rem 1.5rem;
    background: var(--color-dark);
    color: #fff;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.hero p {
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

.hero .btn { margin-top: 1.5rem; }

/* ── Grid ─────────────────────────────────────────────────── */
.products-grid { padding: 2rem 0; }
.products-grid h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* ── Product Card ─────────────────────────────────────────── */
.product-card {
    text-align: center;
    padding: 5px;
}

.product-card a {
    display: block;
    color: #333333;
    text-decoration: none;
}

.product-card a:hover { color: #333333; }

.product-card-image {
    background-color: #DDDDDD;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.product-card-info {
    padding-bottom: 20px;
    text-align: left;
}

.product-card .brand-label {
    padding-top: 10px;
    color: #797979;
    font: 400 15px/19px var(--font-primary);
    margin: 0;
}

.product-card .product-name {
    padding-top: 5px;
    color: #333333;
    font: 400 15px/19px var(--font-primary);
    margin: 0;
}

.product-card .price {
    padding-top: 5px;
    color: #252525;
    font: 600 15px/19px var(--font-secondary);
    margin: 0;
}

/* ── Product Detail ───────────────────────────────────────── */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-images img {
    border-radius: 0;
    background: none;
}

.product-info h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
}

.product-info .brand {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-info .price {
    color: #252525;
    font: normal normal normal 30px/37px 'SutiRegular', sans-serif;
    margin: 0;
}

.product-price-row {
    display: flex;
    padding: 40px 0;
    align-items: flex-start;
}

.product-price-left {
    flex: 1;
}

.product-price-right {
    flex: 1;
    text-align: right;
}

.stock-available {
    color: #78C41E;
    font: normal normal 16px/19px var(--font-secondary);
}

.stock-instore {
    font: normal normal 16px/19px var(--font-secondary);
}

.product-info hr {
    border: none;
    border-top: 1px solid #000;
    margin: 0;
}

.product-info .description {
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 2rem;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Scope imported HTML descriptions */
.description h1, .description h2, .description h3,
.description h4, .description h5, .description h6 {
    margin: 1.25rem 0 0.5rem;
    line-height: 1.3;
}
.description h1 { font-size: 1.4rem; }
.description h2 { font-size: 1.25rem; }
.description h3 { font-size: 1.1rem; }

.description p { margin-bottom: 0.75rem; }
.description ul, .description ol { margin: 0.75rem 0; padding-left: 1.5rem; }
.description li { margin-bottom: 0.25rem; }
.description a { color: var(--color-accent); text-decoration: underline; }

.product-description-section .description {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.product-description-section .description > * {
    max-width: 100%;
}

.description img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1rem 0;
}

.description table {
    display: block;
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
    overflow-x: auto;
}

.description th,
.description td {
    text-align: left;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
}

.description th {
    background: var(--color-surface);
    font-weight: 600;
}

.description blockquote {
    border-left: 3px solid var(--color-border);
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    color: var(--color-muted);
}

.description pre, .description code {
    font-family: monospace;
    font-size: 0.9em;
    background: var(--color-surface);
    border-radius: 4px;
}
.description pre { padding: 1rem; overflow-x: auto; margin: 1rem 0; }
.description code { padding: 0.15rem 0.35rem; }

.description iframe,
.description video {
    max-width: 100%;
}

.description hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 1.5rem 0;
}

.product-info .variants {
    margin-bottom: 20px;
}

.variant-table {
    width: 100%;
    margin-bottom: 30px;
}

.variant-table td {
    padding: 0;
    border: none;
}

.variant-table input[type="radio"] {
    margin: 0 10px;
    width: auto;
}

.variant-label {
    font: normal normal 600 16px/30px var(--font-primary);
}

.product-add-row {
    margin-top: 10px;
}

.product-info button,
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 0;
    font: normal normal bold 16px/19px var(--font-primary);
    cursor: pointer;
    transition: background 0.15s;
    width: 100%;
    height: 40px;
    text-transform: uppercase;
}

.product-info button:hover,
button[type="submit"]:hover {
    background: var(--color-accent-hover);
}

.product-info button:disabled {
    background: var(--color-border);
    color: var(--color-muted);
    cursor: not-allowed;
}

/* ── Image Carousel ────────────────────────────────────── */
.carousel-main {
    position: relative;
    overflow: hidden;
}

.carousel-main img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.carousel-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.carousel-thumb {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
    background: none;
    transition: border-color 0.15s;
}

.carousel-thumb.active {
    border-color: var(--color-accent);
}

.carousel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* ── Product Attributes ────────────────────────────────────── */
.product-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.product-description-section {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.product-attribute {
    font-size: 0.9rem;
}

.product-attribute-label {
    font-weight: 600;
    color: var(--color-muted);
}

.product-attribute-value {
    color: var(--color-text);
}

/* ── Collection ───────────────────────────────────────────── */
.collection { padding: 3rem 0; }
.collection h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* ── Collection Header ───────────────────────────────────── */
.collection {
    padding-top: 30px;
}

.collection-header {
    padding: 10px 20px 0 20px;
    text-align: left;
}

.collection-header h3,
.collection-header h1 {
    padding: 0;
    margin: 0;
    font-family: 'SutiRegular', sans-serif;
    font-size: 30px;
    line-height: 39px;
}

.collection-header h3 a,
.collection-header h1 a {
    color: #252525;
    text-decoration: none;
}

.collection-header h3 a:hover,
.collection-header h1 a:hover {
    color: var(--color-accent);
}

.collection-header .collection-current {
    font: 400 30px/39px var(--font-secondary);
}

.collection-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    margin-top: 25px;
}

.collection-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Filter Sidebar (BRM style) ─────────────────────────── */
.filter-section {
    margin-bottom: 0;
}

.filter-header {
    background-color: #222222;
    color: #fff;
    padding: 6px 16px;
    font: Bold 18px/24px var(--font-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    width: 100%;
    border: 0;
    text-align: left;
}

.filter-header .arrow {
    font-size: 10px;
    transition: transform 0.15s ease;
}

.filter-content {
    padding: 0;
    display: none;
}

.filter-section.is-open .filter-content {
    display: block;
}

.filter-section.is-open .filter-header .arrow {
    transform: rotate(180deg);
}

.filter-list {
    font: 14px var(--font-secondary);
    list-style: none;
    padding: 0 16px;
    margin: 0;
}

.filter-list li {
    padding: 5px 0;
}

.filter-list a {
    display: block;
    padding: 6px 16px;
    color: #333333;
    font-family: var(--font-secondary);
    font-size: 14px;
    transition: background 0.15s;
}

.filter-list a:hover {
    background: var(--color-surface);
    color: #333333;
}

.filter-list a.active {
    font-weight: 600;
    background: var(--color-surface);
}

.filter-child a {
    padding-left: 32px;
}

/* ── Collection Ad Blocks ─────────────────────────────── */
.collection-adblocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 5px;
}

.collection-adblocks a img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* ── Collection Bar (dark header) ─────────────────────── */
.collection-bar {
    background: #222222;
    color: #fff;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
    font-family: var(--font-secondary);
    font-size: 14px;
}

.collection-bar-left,
.collection-bar-right {
    display: flex;
    align-items: center;
}

.collection-bar-right {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.collection-bar select {
    background: transparent;
    color: #fff;
    border: none;
    font-family: var(--font-secondary);
    font-size: 14px;
    cursor: pointer;
    margin-left: 5px;
}

.collection-bar select option {
    background: #222222;
    color: #fff;
}

/* ── Filter Form ──────────────────────────────────────────── */
.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px 16px;
    font: 14px var(--font-secondary);
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    width: auto;
    margin: 5px 5px 0 0;
}

/* ── Cart ─────────────────────────────────────────────────── */
.cart-page,
.checkout-page {
    padding: 3rem 0;
}

.cart-page h1,
.checkout-page h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cart-empty {
    color: var(--color-text-light, #6b7280);
    font-size: 1.1rem;
}

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

.cart-table th,
.cart-table td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius);
}

.cart-item-name {
    font-weight: 600;
}

.cart-item-variant {
    color: var(--color-text-light, #6b7280);
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 1.25rem;
}

.cart-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.cart-subtotal {
    font-size: 1.25rem;
}

/* ── Checkout ─────────────────────────────────────────────── */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .checkout-summary-col { order: -1; }
}

.checkout-form-col h2,
.checkout-summary-col h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}
.checkout-form-col h2:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.form-group .optional {
    color: var(--color-muted);
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: inset 0 0 0 3px var(--color-accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-freight-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.checkout-freight-option:has(input:checked) {
    border-color: var(--color-accent);
    background: rgba(237, 181, 42, 0.05);
}

.checkout-freight-option [data-freight-price] {
    margin-left: auto;
    font-weight: 600;
}

.checkout-freight-loading {
    color: var(--color-muted);
    font-style: italic;
}

.checkout-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.checkout-submit {
    width: 100%;
    margin-top: 1rem;
}

.checkout-submit:disabled {
    background: var(--color-border);
    color: var(--color-muted);
    cursor: not-allowed;
}

.checkout-payment {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg);
}

.checkout-payment h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

#checkout-payment-element {
    min-height: 100px;
}

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

.checkout-summary-item td {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.checkout-summary-product {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkout-item-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius);
}

.checkout-summary-product small {
    display: block;
    color: var(--color-muted);
    font-size: 0.8rem;
}

.checkout-summary-qty {
    text-align: center;
    color: var(--color-muted);
}

.checkout-summary-price {
    text-align: right;
    font-weight: 500;
}

.checkout-totals {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
}

.checkout-total-grand {
    font-size: 1.15rem;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--color-border);
}

/* ── Order ────────────────────────────────────────────────── */
.order-page { padding: 3rem 0; }
.order-page h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.order-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.order-page th,
.order-page td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.order-page th {
    background: var(--color-surface);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
}

.order-totals {
    text-align: right;
    margin-top: 1rem;
    line-height: 2;
}

/* ── Payment Result ────────────────────────────────────────── */
.payment-result-page {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}

.payment-result-container {
    max-width: 540px;
    width: 100%;
}

.payment-result-loading {
    text-align: center;
    padding: 3rem;
    color: var(--color-muted);
}

.payment-result-card {
    text-align: center;
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
}

.payment-result-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.payment-result-success .payment-result-icon {
    background: #dcfce7;
    color: #16a34a;
}

.payment-result-failed .payment-result-icon {
    background: #fee2e2;
    color: #dc2626;
}

.payment-result-pending .payment-result-icon {
    background: #fef3c7;
    color: #d97706;
}

.payment-result-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.payment-result-message {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.payment-result-details {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.payment-result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-outline:hover {
    background: var(--color-surface);
}

/* ── CMS Page ─────────────────────────────────────────────── */
.cms-page { padding: 3rem 0; max-width: 800px; margin: 0 auto; }
.cms-page h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* ── Quote Page ───────────────────────────────────────────── */
.quote-page {
    padding: 3rem 0;
}

.quote-page > .payment-result-card {
    max-width: 540px;
    margin: 0 auto;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .quote-layout {
        grid-template-columns: 1fr;
    }
    .quote-summary-col { order: -1; }
}

.quote-page h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quote-details-col h2,
.quote-summary-col h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.quote-expiry {
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.quote-section {
    margin-top: 1.5rem;
}

.quote-items {
    width: 100%;
    border-collapse: collapse;
    margin: 0.5rem 0;
}

.quote-items th,
.quote-items td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.quote-items th {
    background: var(--color-surface);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
}

.quote-items td:last-child,
.quote-items th:last-child {
    text-align: right;
}

.quote-summary-col {
    position: sticky;
    top: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: var(--color-surface);
}

.quote-summary-col h2 {
    margin-top: 0;
}

.quote-totals {
    margin-top: 0.5rem;
}

.quote-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
}

.quote-total-grand {
    font-size: 1.15rem;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--color-border);
}

.quote-payment-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.quote-pay-btn {
    width: 100%;
    margin-top: 1rem;
}

.page-content {
    line-height: 1.8;
}

.page-content h2, .page-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.page-content p { margin-bottom: 1rem; }
.page-content ul, .page-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }

/* ── 404 ──────────────────────────────────────────────────── */
.not-found {
    text-align: center;
    padding: 6rem 1.5rem;
}

.not-found h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.not-found p {
    color: var(--color-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.not-found a {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--color-accent);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background 0.15s;
}

.not-found a:hover { background: var(--color-accent-hover); }

/* ── Pagination ───────────────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem 0;
    font-size: 0.95rem;
    list-style: none;
}

.pagination a,
.pagination .current,
.pagination .ellipsis {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border: 1px solid #222222;
    color: #333333;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    margin-left: -1px;
}

.pagination a:hover {
    background: #EDB52A;
    border-color: #222222;
    color: #222222;
}

.pagination .current {
    background: #EDB52A;
    color: #222222;
    border-color: #222222;
    font-weight: 700;
}

/* ── Search ───────────────────────────────────────────────── */
.search-page { padding: 2rem 1rem; }
.search-form { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.search-form input[type="text"] { flex: 1; margin-bottom: 0; }
.search-meta { color: var(--color-muted); margin-bottom: 1.5rem; }
.search-empty { text-align: center; padding: 3rem 0; color: var(--color-muted); }

/* ── Forms ────────────────────────────────────────────────── */
label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.375rem;
    font-size: 0.9rem;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: inset 0 0 0 3px var(--color-accent);
}

.error { color: #dc2626; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }

    .carousel-main img {
        height: 300px;
    }

    .product-price-row {
        flex-direction: column;
        padding: 20px 0;
        text-align: left;
    }

    .product-price-right {
        text-align: left;
    }

    .collection-layout {
        grid-template-columns: 1fr;
    }

    .collection-sidebar {
        order: -1;
    }

    .carousel-thumb {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
    }

    .hero { padding: 3rem 1.5rem; }
    .hero h1 { font-size: 1.75rem; }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-section {
        padding-bottom: 10px;
    }

    .brm-desktop { display: none; }
    .brm-mobile { display: block; }

    .brm-footer-desktop { display: none; }
    .brm-footer-mobile { display: block; }

    body { padding-top: 65px; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
    padding: 10px 30px;
    border: none;
    transition: background 0.15s;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    color: #fff;
}

/* ── Collection items count (legacy) ─────────────────────── */
.collection-meta {
    display: none;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #000;
    margin-top: 50px;
    margin-left: 0;
    padding: 0;
    background: none;
    list-style: none;
}

.breadcrumb a { color: #000; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { margin: 0 10px; }

/* ══════════════════════════════════════════════════════════════
   BRANDS PAGE
   ══════════════════════════════════════════════════════════════ */

.brands-page {
    max-width: 1200px;
    margin: 0 auto;
}

.brands-header {
    text-align: center;
    padding: 40px 0 10px 0;
}

.brands-header h3 {
    font-family: 'SutiRegular', sans-serif;
    font-size: 30px;
    margin: 0;
    padding: 0;
    text-align: center;
}

.brands-subheader {
    text-align: center;
}

.brands-subheader p {
    font: 300 16px/21px var(--font-secondary);
    margin: 0;
    padding: 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.brands-item {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands-item img {
    max-width: 180px;
    max-height: 80px;
}

@media (max-width: 1199px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brands-item {
        padding: 50px 0;
    }
}

/* ══════════════════════════════════════════════════════════════
   SERVICE PAGE
   ══════════════════════════════════════════════════════════════ */

/* Break out of main.container for full-width sections */
.service-page {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.service-page-title {
    background-color: #222222;
    color: #fff !important;
    font-family: 'SutiRegular', sans-serif;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    padding: 40px 15px 30px;
    margin: 0;
}

/* ── Service Packages (Accordion) ─────────────────────────── */
.service-packages {
    background-color: #222222;
    padding-top: 0;
    padding-bottom: 30px;
}

.service-packages-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 20px;
}

.service-packages h3 {
    color: #fff;
    text-align: left;
    padding: 40px 0 20px 0;
    font-family: 'SutiRegular', sans-serif;
    font-size: 30px;
    margin: 0;
}

/* Accordion */
.accordion {
    background-color: #222222;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: 0.4s;
}

.accordion.active:hover {
    background-color: #222222;
}

.accordion:after {
    content: '\002B';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.accordion.active:after {
    content: "\2212";
}

.panel {
    padding-top: 0;
    padding-left: 0;
    padding-right: 18px;
    color: #fff;
    background-color: #222222;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid #fff;
}

.panel p {
    color: #fff;
    padding: 10px 0 18px 0;
    margin: 0;
    font: 300 16px/24px var(--font-secondary);
}

.panel p:first-child {
    padding: 0;
    font-weight: 400;
}

/* ── Individual Services (Desktop) ────────────────────────── */
.service-individual {
    background-color: #222222;
    padding-top: 30px;
}

.service-individual-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 80px;
}

.service-individual h3,
.service-individual-mobile h3 {
    color: #fff;
    text-align: left;
    font-family: 'SutiRegular', sans-serif;
    font-size: 30px;
    margin: 0;
    padding: 40px 0 20px 0;
}

.service-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
}

.servicetable {
    font: 300 16px/21px var(--font-secondary);
    width: 100%;
    color: #fff;
}

.servicetable td {
    padding: 10px 0;
}

.servicetable tr:nth-child(even) {
    background-color: #333333;
}

.servicetable td:first-child {
    text-align: left;
    padding-left: 55px;
}

.servicetable td:last-child {
    text-align: right;
    padding-right: 55px;
}

.service-disclaimer {
    margin-top: 50px;
    color: #fff;
    font: 600 20px/24px var(--font-primary);
}

/* ── Individual Services (Mobile) ─────────────────────────── */
.service-mobile {
    display: none;
}

.service-individual-mobile {
    background-color: #151515;
    padding-bottom: 24px;
}

.service-mobile-card {
    color: #fff;
    border-radius: 0 20px 20px 20px;
    background-color: #222222;
    font: 16px/19px var(--font-secondary);
    padding: 20px 0;
}

.service-mobile-row {
    display: flex;
    padding: 10px 0 10px 30px;
}

.service-mobile-row.alt {
    background-color: #333333;
}

.service-mobile-name {
    flex: 1;
}

.service-mobile-price {
    flex: 1;
    text-align: center;
}

.service-mobile-row p {
    margin: 0;
}

/* ── Service Booking ──────────────────────────────────────── */
.service-booking {
    background-color: #2E2E2E;
    border-top: 3px solid #fff;
}

.service-booking-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.service-booking-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 30px;
    padding: 50px 0;
    align-items: center;
}

.service-booking-iframe iframe {
    width: 100%;
    height: 825px;
    border: none;
}

.service-booking-image {
    text-align: center;
}

.service-booking-image img {
    width: 100%;
    max-width: 394px;
    padding: 0 20px;
}

/* ── Service responsive ───────────────────────────────────── */
@media (max-width: 768px) {
    .service-desktop {
        display: none;
    }

    .service-mobile {
        display: block;
    }

    .service-booking-grid {
        grid-template-columns: 1fr;
    }

    .service-booking-iframe iframe {
        height: 600px;
    }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */

/* Break out of main.container for full-width sections */
.contact-page {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* ── Dark top section ─────────────────────────────────────── */
.contact-dark {
    background-color: #222222;
    padding-bottom: 70px;
}

.contact-dark h3,
.contact-dark h1 {
    color: #fff !important;
    font-family: 'SutiRegular', sans-serif;
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    padding: 40px 0 30px;
    margin: 0;
}

.contact-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Contact methods row */
.contact-methods {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-bottom: 50px;
    gap: 0;
    flex-wrap: wrap;
}

.contact-method {
    flex: 1 1 25%;
    min-width: 200px;
    padding-bottom: 10px;
}

.contact-method img {
    padding-right: 10px;
    vertical-align: middle;
}

.contact-method span {
    font: 300 16px/21px var(--font-secondary);
    vertical-align: middle;
}

.yellowhover {
    color: #fff;
    text-decoration: none;
    transition: color 0.15s;
}

.yellowhover:hover {
    color: var(--color-accent);
}

/* ── Contact form ─────────────────────────────────────────── */
.brmform {
    max-width: 600px;
    margin: 0 auto;
}

.brmform-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brmform-row {
    margin-bottom: 0;
}

.brmform-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.brmform input[type="text"],
.brmform input[type="email"],
.brmform input[type="tel"],
.brmform input[type="number"],
.brmform input[type="url"],
.brmform input[type="phone"],
.brmform select,
.brmform textarea {
    width: 100%;
    padding: 15px;
    border: none;
    font: 300 14px/17px var(--font-secondary);
    color: #333;
    background: #fff;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.brmform textarea {
    height: 150px;
    resize: vertical;
}

.brmform input::placeholder,
.brmform textarea::placeholder {
    color: #999;
}

.button-red {
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    padding: 12px 40px;
    font: normal normal bold 16px/19px var(--font-primary);
    cursor: pointer;
    transition: background 0.15s;
    width: 100%;
    text-transform: uppercase;
}

.button-red:hover {
    background-color: var(--color-accent-hover);
}

.required-note {
    text-align: left;
    color: #fff;
    font: 300 14px var(--font-secondary);
    margin: 0;
}

/* ── Store info section ───────────────────────────────────── */
.contact-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    padding-top: 90px;
    font: 14px var(--font-secondary);
}

.contact-info-block {
    margin-bottom: 60px;
    padding: 0 20px;
}

.contact-info-block img {
    display: block;
    margin: 0 auto 15px;
}

.contact-info-block h3 {
    font-family: 'SutiRegular', sans-serif;
    font-size: 30px;
    padding-bottom: 10px;
    margin: 0;
}

.contact-info-block p {
    margin: 0 auto;
    color: #333;
    font: 14px var(--font-secondary);
    max-width: 300px;
}

.contact-info-block .openingtable {
    color: #333333;
    font: 14px var(--font-secondary);
    margin: 0 auto;
}

.contact-info-block .openingtable td {
    padding: 4px 15px;
    border: none;
}

/* ── Map ──────────────────────────────────────────────────── */
.contact-map {
    width: 100%;
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ── Contact responsive ───────────────────────────────────── */
@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .contact-method {
        min-width: auto;
        padding-bottom: 15px;
    }

    .brmform-row-half {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        padding-top: 50px;
    }
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   DEALS PAGE
   ══════════════════════════════════════════════════════════════ */

/* Break deals page out of main.container so hero spans full width */
.deals-page {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #EFEFEF;
    text-align: center;
    min-height: 450px;
}

/* Ensure the hero always stretches edge to edge */
.deals-page .deals-hero,
.deals-page .hp-banner {
    width: 100vw;
}

.deals-listing-inner {
    padding-top: 30px;
}

.deals-heading {
    padding: 40px 20px 0;
    text-align: center;
}

.deals-title,
.deals-heading h3 {
    margin: 0;
    padding: 0;
    text-align: left;
    color: #252525;
    font: 300 40px/49px 'SutiRegular', sans-serif;
}

.deals-bar {
    margin: 5px 5px 0;
}

.deals-adblocks-wrap {
    padding-top: 30px;
    padding-bottom: 30px;
}


/* Break homepage out of main.container so sections go full-width */
.hp-page {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ── Hero Banner ──────────────────────────────────────────── */
.hp-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    padding: 20px;
    text-align: center;
}

.hp-banner-content {
    margin: auto;
}

.hp-banner-title {
    margin: 0;
    font: normal normal 600 40px 'Montserrat', sans-serif;
    letter-spacing: 0;
    color: #FFFFFF;
    text-shadow: 5px 5px 17px rgba(0, 0, 0, 0.7);
}

.hp-banner-promo {
    margin: 10px 0 0;
    font: normal normal 600 40px 'Montserrat', sans-serif;
    color: #FFFFFF;
    text-shadow: 5px 5px 17px rgba(0, 0, 0, 0.7);
}

.hp-banner-title sup {
    font-size: 0.5em;
}

.hp-banner-actions {
    margin: 30px 0;
}

.hp-banner-terms {
    font: normal normal 200 10px 'Montserrat', sans-serif;
    color: #FFFFFF;
    text-shadow: 5px 5px 17px rgba(0, 0, 0, 0.7);
    text-decoration: underline !important;
}

.hp-banner-terms:hover {
    color: #FFFFFF;
}

/* ── Shared button (BRM yellow) ───────────────────────────── */
.button {
    cursor: pointer;
    display: inline-block;
    color: #fff;
    background-color: #EDB52A;
    padding: 10px 30px;
    border: none;
    height: 40px;
    font: normal normal bold 16px/19px 'Montserrat', sans-serif;
    text-align: center;
    transition: background-color 0.15s;
}

.button:hover {
    background-color: #EF7037;
    color: #fff;
}

/* ── Featured Products ────────────────────────────────────── */
.hp-featured {
    padding: 30px 30px 0;
    text-align: center;
}

.hp-section-title {
    color: #252525;
    font: 300 40px/49px 'SutiRegular', sans-serif;
    text-align: center;
    padding: 0 0 30px;
    margin: 0;
}

.hp-products-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hp-product-card {
    flex: 1 1 0;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
    padding: 5px;
}

.hp-product-card a {
    color: black;
    display: block;
}

.hp-product-card a:hover {
    color: black;
}

.hp-product-image {
    background-color: #DDDDDD;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hp-product-image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}

.hp-product-info {
    padding-bottom: 20px;
    text-align: left;
}

.hp-product-brand {
    padding-top: 10px;
    color: #797979;
    font: 400 15px/19px 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

.hp-product-name {
    padding-top: 5px;
    color: #333333;
    font: 400 15px/19px 'Montserrat', sans-serif;
    margin: 0;
}

.hp-product-price {
    padding-top: 5px;
    color: #252525;
    font: 600 15px/19px 'Roboto', sans-serif;
    margin: 0;
}

/* ── Promo Banners ────────────────────────────────────────── */
.hp-promo-banners {
    padding: 0 0 20px;
    text-align: center;
}

.hp-banner-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 300px;
}

.hp-banner-card-content {
    margin: auto;
    text-align: center;
}

.hp-banner-card-title {
    margin: 0;
    font: normal normal 600 42px 'Montserrat', sans-serif;
    color: #FFFFFF;
    text-shadow: 5px 5px 17px rgba(0, 0, 0, 0.7);
}

.hp-banner-card-subtitle {
    margin: 0;
    font: normal normal 200 20px 'Montserrat', sans-serif;
    color: #FFFFFF;
    text-shadow: 5px 5px 17px rgba(0, 0, 0, 0.7);
}

.hp-banner-card .button {
    margin-top: 30px;
}

/* ── Category Tiles ───────────────────────────────────────── */
.hp-categories {
    padding: 30px 0 0;
    text-align: center;
}

.hp-cat-row {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.hp-cat-tile {
    flex: 1 1 33.333%;
    padding: 0 15px 30px;
}

.hp-cat-tile img {
    width: 100%;
    display: block;
}

/* ── Trust Badges ─────────────────────────────────────────── */
.hp-trust {
    padding: 50px 0;
    text-align: center;
}

.hp-trust-row {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.hp-trust-badge {
    flex: 0 0 20%;
    text-align: center;
    margin-bottom: 30px;
    font: 16px/19px 'Roboto', sans-serif;
    color: #333;
}

.hp-trust-badge img {
    margin: 0 auto 15px;
    display: block;
}

/* ── Split Image+Text Blocks ──────────────────────────────── */
.hp-split-blocks {
    background-color: #222222;
    color: #FFFFFF;
}

.hp-split-row {
    display: flex;
    min-height: 400px;
}

.hp-split-row-reverse {
    flex-direction: row-reverse;
}

.hp-split-image {
    flex: 1 1 50%;
    overflow: hidden;
}

.hp-split-image img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.hp-split-text {
    flex: 1 1 50%;
    background-color: #222222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
}

.hp-split-text h4 {
    font: 300 30px/37px 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 20px;
    max-width: 321px;
}

.hp-split-text .button {
    align-self: flex-start;
}

.hp-split-text-right {
    align-items: flex-end;
    text-align: right;
}

.hp-split-text-right h4 {
    max-width: 301px;
    text-align: right;
}

.hp-split-text-right .button {
    align-self: flex-end;
}

/* ── Instagram Section ────────────────────────────────────── */
.hp-instagram {
    background-color: #ffffff;
    text-align: center;
    padding: 30px 0;
}

.hp-instagram .hp-section-title {
    padding-bottom: 0;
}

.hp-instagram .button {
    display: block;
    margin: 26px auto 50px;
    width: 234px;
}

.hp-instagram .button p {
    font: bold 15px 'Montserrat', sans-serif;
    text-align: center;
    margin: 0;
    color: #fff;
}

/* ── Mailing List ─────────────────────────────────────────── */
.hp-mailing {
    text-align: center;
    background-color: #222222;
    color: #FFFFFF;
    padding-bottom: 50px;
}

.hp-mailing-title {
    color: #FFFFFF;
    text-align: center;
    padding: 40px;
    font: 300 40px/49px 'SutiRegular', sans-serif;
    margin: 0;
}

.hp-mailing-fields {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.hp-mailing-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.hp-mailing-form input[type="text"],
.hp-mailing-form input[type="email"] {
    flex: 1;
    width: 100%;
    border-radius: 17px;
    padding: 20px;
    border: none;
    color: #333333;
    background-color: #F4F4F4;
    font-size: 14px;
    margin-bottom: 10px;
}

.hp-mailing-form input:focus,
.hp-mailing-form textarea:focus {
    box-shadow: inset 0 0 0 3px #EDB52A;
    outline: none;
    border-color: transparent;
}

.hp-mailing-form textarea {
    width: 100%;
    border-radius: 17px;
    padding: 10px;
    border: none;
    color: #333333;
    background-color: #F4F4F4;
    height: 150px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 15px;
}

.hp-mailing-form .button {
    width: 100%;
    height: auto;
    padding: 10px 30px;
    cursor: pointer;
}

.hp-mailing-note {
    text-align: left;
    margin-top: 15px;
    font: 300 14px 'Roboto', sans-serif;
    color: #AFAFAF;
}

/* ── Homepage Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
    .deals-heading {
        padding-top: 24px;
    }

    .deals-title,
    .deals-heading h3 {
        font: 300 40px/49px 'SutiRegular', sans-serif;
    }

    .hp-banner {
        min-height: 300px;
    }

    .hp-banner-title {
        font-size: 24px;
    }

    .hp-products-row {
        flex-direction: column;
        align-items: center;
    }

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

    .hp-banner-card {
        height: 200px;
    }

    .hp-banner-card-title {
        font-size: 28px;
    }

    .hp-banner-card-subtitle {
        font-size: 16px;
    }

    .hp-cat-tile {
        flex: 1 1 100%;
    }

    .hp-trust-badge {
        flex: 0 0 50%;
    }

    .hp-split-row,
    .hp-split-row-reverse {
        flex-direction: column;
    }

    .hp-split-text {
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }

    .hp-split-text h4 {
        font: 400 25px 'Montserrat', sans-serif;
        max-width: 100%;
        text-align: center;
    }

    .hp-split-text .button {
        align-self: center;
    }

    .hp-split-text-right {
        align-items: center;
        text-align: center;
    }

    .hp-split-text-right h4 {
        text-align: center;
    }

    .hp-split-text-right .button {
        align-self: center;
    }

    .hp-mailing-row {
        flex-direction: column;
        gap: 15px;
    }

    .hp-mailing-title {
        font-size: 28px;
        padding: 30px 10px;
    }

    .hp-section-title {
        font-size: 28px;
    }
}

.overlay {
    position: fixed;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0; */
    display: none;               /* hidden initially */
    align-items: center;         /* center spinner vertically */
    justify-content: center;     /* center spinner horizontally */
    background: rgba(0,0,0,0.8); /* 80% transparent dark grey */
    z-index: 9999;
}

.spinner{
	margin: auto;
	width: 64px;
	height: 64px;
	border: 8px solid;
	border-color: #EDB52A transparent #EDB52A transparent;
	border-radius: 50%;
	animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Visually hidden text for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── Support Local Page ─────────────────────────────── */

/* Break out of main.container for full-width sections */
.support-local-page {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    font-family: var(--font-secondary);
}

.sl-hero {
    background-color: #222222;
    text-align: center;
    padding-bottom: 70px;
}

.sl-hero-title {
    height: 360px;
    color: #FFFFFF;
    padding: 80px 0;
    margin: 0 auto 50px auto;
    font: normal normal normal 84px/84px SutiRegular;
    background-color: #222222;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

.sl-hero-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.sl-hero-text p {
    color: #FFFFFF;
    padding: 10px;
}

.sl-content {
    text-align: center;
}

.sl-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.sl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin: 100px 0;
    text-align: left;
    align-items: center;
}

.sl-row-reverse {
    direction: rtl;
}

.sl-row-reverse > * {
    direction: ltr;
}

.sl-col-text h3 {
    padding: 0;
    text-align: left;
}

.sl-col-text p {
    padding-bottom: 36px;
    padding-top: 10px;
    text-align: left;
}

.sl-col-image img {
    width: 100%;
    height: auto;
}

.sl-buttons {
    display: flex;
    gap: 15px;
}

.sl-help {
    margin: 50px 0;
    text-align: left;
}

.sl-help h3 {
    padding: 20px 0;
    text-align: left;
}

.sl-help-list p {
    margin-bottom: 20px;
    color: #333;
}

.sl-bullet {
    background-color: #EDB52A;
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 10px;
}

.sl-link {
    text-decoration: underline;
    color: #333;
}

.sl-link:hover {
    color: #EDB52A;
}

@media (max-width: 767px) {
    .sl-hero-title {
        margin: 70px 50px 50px 50px;
        font-size: 60px;
        line-height: 60px;
    }

    .sl-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 50px 0;
        text-align: center;
    }

    .sl-row-reverse {
        direction: ltr;
    }

    .sl-col-text h3 {
        text-align: center;
        padding: 10px 0;
    }

    .sl-col-text p {
        padding: 10px;
        text-align: center;
    }

    .sl-col-image img {
        width: 80%;
        margin: 0 auto;
        padding: 25px 0;
        display: block;
    }

    .sl-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sl-buttons .button {
        margin-top: 20px;
    }
}

/* ── About Page ──────────────────────────────────────── */
.about-page {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    font-family: var(--font-secondary);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero */
.about-hero {
    background-color: #222222;
}

.about-hero img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* We Offer */
.about-offer {
    text-align: center;
    padding: 60px 0;
}

.about-offer h3 {
    font-size: 36px;
    padding-bottom: 40px;
}

.about-offer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-offer-card {
    text-align: center;
}

.about-offer-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
}

.about-offer-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-offer-card p {
    color: #555;
    padding: 0 10px;
}

/* About Info */
.about-info {
    padding: 60px 0;
    text-align: center;
}

.about-info h3 {
    font-size: 36px;
    padding-bottom: 40px;
}

.about-info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-info-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #252525;
}

.about-info-content p {
    margin-bottom: 16px;
    color: #333;
}

/* Our Team */
.about-team {
    text-align: center;
    padding: 60px 0 80px 0;
}

.about-team h3 {
    font-size: 36px;
    padding-bottom: 40px;
}

.about-team-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-team-card {
    text-align: center;
}

.about-team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
}

.about-team-card h4 {
    margin-bottom: 4px;
}

.about-team-card p {
    color: #707070;
}

@media (max-width: 767px) {
    .about-offer-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-team-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-info-content {
        text-align: center;
        padding: 0 15px;
    }

    .about-info-content h1 {
        font-size: 32px;
    }
}

/* ── Terms & Conditions Page ────────────────────────── */
.terms-page {
    padding-bottom: 80px;
}

.terms-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.terms-title {
    font-size: 30px;
    padding: 40px 0;
    color: #252525;
}

.terms-heading {
    padding: 20px 0;
}

.terms-divider {
    margin: 50px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.terms-button-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
}

.terms-link {
    color: #333;
    font-weight: 600;
    text-decoration: underline;
}

.terms-link:hover {
    color: #EDB52A;
}
