﻿/* ═══════════════════════════════════════════════════════════════════
   THEME VARIABLES — overridden at runtime via inline <style> from DB
   ═══════════════════════════════════════════════════════════════════ */
:root {
  /* Primary brand colour (red by default) */
  --clr-primary:        #e53935;
  --clr-primary-dark:   #b71c1c;
  --clr-primary-light:  #ffebee;

  /* Accent / secondary colour */
  --clr-accent:         #1a2a3a;
  --clr-accent-dark:    #0f172a;

  /* Header */
  --clr-header-bg:      #111111;
  --clr-header-text:    #ffffff;

  /* Hero */
  --clr-hero-from:      #1a2a3a;
  --clr-hero-to:        #4a7a9b;

  /* CTA widget */
  --clr-cta-from:       #0f172a;
  --clr-cta-to:         #1e3a5f;

  /* Body */
  --clr-body-bg:        #f5f5f5;
  --clr-body-text:      #222222;

  /* Footer */
  --clr-footer-bg:      #111111;
  --clr-footer-text:    #cccccc;
  --clr-footer-heading: #ffffff;

  /* Buttons */
  --clr-btn-primary-bg:   #e53935;
  --clr-btn-primary-text: #ffffff;

  /* Links */
  --clr-link:           #e53935;
}
/* ===== ROTO TANKS SHOP PAGE STYLES ===== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

body.roto-body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: var(--clr-body-text);
    background: var(--clr-body-bg);
}

html,
body,
body.roto-body {
    margin: 0 !important;
    padding: 0 !important;
}

body.roto-body > :first-child {
    margin-top: 0 !important;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.roto-container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

/* ===== HEADER ===== */
.roto-header {
    background: var(--clr-header-bg);
    color: var(--clr-header-text);
    position: sticky;
    top: 0;
    margin-top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.roto-header-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 56px;
}

/* Logo */
.roto-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.roto-logo-mark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 8px;
    background: #222;
    border: 1px solid #444;
}

.roto-logo-top {
    font-family: "Oswald", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}

.roto-logo-bottom {
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 1;
}

/* Nav */
.roto-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: flex-start;
}

.roto-nav a {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 18px 10px;
    transition: color 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.roto-nav a:hover {
    color: var(--clr-primary);
}

.roto-caret {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Header icons */
.roto-header-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.roto-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}

.roto-menu-toggle:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.34);
}

.roto-mobile-nav { display: none; }

.roto-mobile-nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,.58);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .26s ease;
    z-index: 249;
}

.roto-mobile-nav__panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100dvh;
    background: linear-gradient(160deg, #0b1220 0%, #111827 100%);
    color: #e5e7eb;
    border-left: 1px solid rgba(148,163,184,.24);
    box-shadow: -20px 0 50px rgba(0,0,0,.35);
    transform: translateX(104%);
    transition: transform .3s cubic-bezier(.2,.78,.2,1);
    z-index: 250;
    display: flex;
    flex-direction: column;
}

.roto-mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem .9rem;
    border-bottom: 1px solid rgba(148,163,184,.18);
}

.roto-mobile-nav__title {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
}

.roto-mobile-nav__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.roto-mobile-nav__links {
    padding: .75rem .8rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.roto-mobile-nav__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #d1d5db;
    font-size: .95rem;
    font-weight: 600;
    padding: .78rem .85rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background .2s, border-color .2s, color .2s;
}

.roto-mobile-nav__links a:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
    color: #fff;
}

.roto-mobile-nav__links a.is-active {
    background: rgba(229,57,53,.16);
    border-color: rgba(229,57,53,.4);
    color: #fff;
}

.roto-mobile-nav__actions {
    margin-top: auto;
    padding: 1rem;
    border-top: 1px solid rgba(148,163,184,.18);
    display: grid;
    gap: .55rem;
}

.roto-mobile-nav__welcome {
    color: #93c5fd;
    font-size: .86rem;
    font-weight: 600;
    margin-bottom: .2rem;
}

.roto-mobile-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    padding: .7rem .95rem;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
}

.roto-mobile-nav__btn--ghost {
    border: 1px solid rgba(148,163,184,.4);
    color: #e5e7eb;
    background: rgba(255,255,255,.04);
}

.roto-mobile-nav__btn--cart {
    border: 1px solid rgba(229,57,53,.35);
    color: #fff;
    background: linear-gradient(135deg, rgba(229,57,53,.95), rgba(183,28,28,.95));
}

.roto-mobile-nav__btn--call {
    border: 1px solid rgba(37,211,102,.45);
    color: #dcfce7;
    background: rgba(22,163,74,.18);
}

.roto-mobile-nav.is-open .roto-mobile-nav__backdrop {
    opacity: 1;
    pointer-events: auto;
}

.roto-mobile-nav.is-open .roto-mobile-nav__panel {
    transform: translateX(0);
}

body.roto-nav-open {
    overflow: hidden;
}

.roto-icon-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: color 0.2s;
}

.roto-icon-btn:hover { color: var(--clr-primary); }

.roto-icon-btn svg {
    width: 20px;
    height: 20px;
}

.roto-icon-count {
    position: absolute;
    top: -2px;
    right: -4px;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

.roto-cart-btn {
    background: var(--clr-primary);
    border-radius: 8px;
    padding: 8px 12px;
}

.roto-cart-btn .roto-icon-count {
    background: #111;
}

/* ===== HERO BANNER ===== */
.roto-hero-banner {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, #1a2a3a 0%, #2d4a6a 40%, #3a6080 70%, #4a7a9b 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roto-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") repeat,
        linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.35) 100%);
}

/* Simulate a mountain/landscape backdrop */
.roto-hero-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(20,40,60,0.6));
}

.roto-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 35, 0.45);
}

.roto-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.roto-hero-content h1 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    max-width: 900px;
}

.roto-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.roto-hero-arrow:hover { background: rgba(0,0,0,0.65); }
.roto-hero-prev { left: 1rem; }
.roto-hero-next { right: 1rem; }

/* ===== FLASH ===== */
.roto-flash {
    background: #fff3cd;
    border-bottom: 1px solid #ffc107;
    padding: 0.65rem 0;
    font-weight: 600;
    color: #856404;
}

/* ===== MAIN LAYOUT ===== */
.roto-main {
    padding: 2rem 0 3rem;
}

.roto-shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
}

/* ===== SIDEBAR ===== */
.roto-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roto-widget {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 1.25rem;
}

.roto-widget-title {
    margin: 0 0 1rem;
    font-family: "Oswald", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #222;
    text-transform: uppercase;
    border-bottom: 2px solid var(--clr-primary);
    padding-bottom: 0.5rem;
}

/* Search */
.roto-search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.roto-search-box input {
    flex: 1;
    border: none;
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
    outline: none;
    background: #fafafa;
}

.roto-search-box button {
    background: #f5f5f5;
    border: none;
    border-left: 1px solid #ddd;
    padding: 0 0.75rem;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
}

.roto-search-box button svg {
    width: 16px;
    height: 16px;
}

.roto-search-box button:hover { background: var(--clr-primary); color: #fff; }

/* Price */
.roto-price-range {
    margin-bottom: 0.75rem;
}

.roto-range-slider {
    width: 100%;
    accent-color: var(--clr-primary);
    cursor: pointer;
}

.roto-price-label {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    color: #444;
}

.roto-filter-btn {
    background: var(--clr-primary);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.roto-filter-btn:hover { background: #c62828; }

/* Capacity select */
.roto-select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fafafa;
    font-size: 0.85rem;
    color: #444;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

/* Colors */
.roto-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.roto-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.15s, transform 0.15s;
}

.roto-swatch:hover { transform: scale(1.15); }
.roto-swatch-active { border-color: var(--clr-primary) !important; }

/* Checkboxes */
.roto-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #444;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.roto-checkbox-label input {
    width: 15px;
    height: 15px;
    accent-color: var(--clr-primary);
    cursor: pointer;
}

/* ===== PRODUCT AREA ===== */
.roto-products-area {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Toolbar */
.roto-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    flex-wrap: wrap;
}

.roto-breadcrumb {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.roto-breadcrumb a { color: var(--clr-primary); }
.roto-breadcrumb a:hover { text-decoration: underline; }
.roto-breadcrumb-sep { color: #aaa; }

.roto-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.roto-show-label {
    font-size: 0.82rem;
    color: #666;
    white-space: nowrap;
}

.roto-show-link {
    font-size: 0.82rem;
    color: #666;
    padding: 3px 7px;
    border-radius: 3px;
    transition: all 0.15s;
}

.roto-show-link:hover, .roto-show-active {
    background: var(--clr-primary);
    color: #fff;
}

.roto-view-btns {
    display: flex;
    gap: 4px;
}

.roto-view-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #888;
    transition: all 0.15s;
}

.roto-view-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.roto-view-btn:hover, .roto-view-active {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.roto-sort-select {
    padding: 0.4rem 2rem 0.4rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 0.82rem;
    color: #444;
    background: #fafafa;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    cursor: pointer;
    outline: none;
}

/* ===== PRODUCT GRID ===== */
.roto-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.roto-product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.roto-product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-color: #ccc;
}

.roto-hot-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
}

.roto-product-img-link {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    background: #f9f9f9;
    margin-bottom: 0.85rem;
}

.roto-product-img-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.roto-product-card:hover .roto-product-img-link img {
    transform: scale(1.04);
}

.roto-product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.roto-product-name {
    margin: 0 0 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
}

.roto-product-name a:hover { color: var(--clr-primary); }

.roto-product-stock {
    margin: 0 0 0.4rem;
    font-size: 0.8rem;
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 4px;
}

.roto-stock-icon {
    font-weight: 700;
}

.roto-product-price {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.roto-wishlist-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #666;
    transition: color 0.2s;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
}

.roto-wishlist-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.roto-wishlist-link:hover { color: var(--clr-primary); }

/* Product card overlay on hover */
.roto-product-img-link {
    position: relative;
}
.roto-product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.22s ease;
    border-radius: 4px;
}
.roto-product-card:hover .roto-product-card-overlay {
    opacity: 1;
}
.roto-overlay-cta {
    background: #fff;
    color: #222;
    font-size: .8rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: .04em;
    text-transform: uppercase;
    pointer-events: none;
}

/* Product card bottom actions row */
.roto-product-card-actions {
    margin-top: auto;
    padding-top: 0.6rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.roto-btn-sm {
    padding: 6px 14px;
    font-size: .78rem;
    flex: 1;
}
.roto-product-card-actions .roto-wishlist-link {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

/* ===== PAGINATION ===== */
.roto-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 1rem 0 0;
}

.roto-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.15s;
}

.roto-page-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.roto-page-active {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}

.roto-page-next {
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.roto-footer {
    background: var(--clr-footer-bg);
    color: var(--clr-footer-text);
    padding: 3rem 0 0;
}

.roto-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
}

.roto-footer h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-footer-heading);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer logo */
.roto-footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.roto-footer-logo-img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 220px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 8px;
}

.roto-footer-logo-mark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    padding: 8px 14px;
    border-radius: 8px;
    background: #fff;
}

.roto-footer-logo-top {
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.roto-footer-logo-bottom {
    font-family: "Oswald", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.06em;
    line-height: 1;
}

.roto-footer-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: #aaa;
    margin: 0 0 1.25rem;
}

/* Payment icons */
.roto-payment-options strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
}

.roto-payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.roto-pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    min-width: 44px;
    height: 26px;
}

.roto-pay-visa { background: #1a1f71; color: #fff; }
.roto-pay-mc { background: #eb001b; color: #fff; }
.roto-pay-amex { background: #2e77bc; color: #fff; }
.roto-pay-bank { background: #0f172a; color: #fff; }
.roto-pay-mpesa { background: #00a651; color: #fff; }

/* Footer links */
.roto-footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
}

.roto-footer-links-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.roto-footer-links-grid li {
    margin-bottom: 0.55rem;
}

.roto-footer-links-grid a {
    color: #aaa;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.roto-footer-links-grid a::before {
    content: "•";
    color: var(--clr-primary);
    font-size: 0.7rem;
}

.roto-footer-links-grid a:hover { color: #fff; }

/* Social */
.roto-social {
    margin-top: 1.5rem;
}

.roto-social strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
}

.roto-social-icons {
    display: flex;
    gap: 10px;
}

.roto-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.2s;
}

.roto-social-btn:hover { opacity: 0.85; transform: scale(1.1); }

.roto-social-btn svg {
    width: 18px;
    height: 18px;
}

.roto-social-yt { background: #ff0000; color: #fff; }
.roto-social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }
.roto-social-fb { background: #1877f2; color: #fff; }

/* Contact */
.roto-contact-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    font-size: 0.82rem;
}

.roto-contact-list li {
    margin-bottom: 0.6rem;
    color: #aaa;
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.roto-contact-list li::before {
    content: "•";
    color: var(--clr-primary);
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 2px;
}

.roto-contact-list strong {
    color: #ccc;
}

/* Newsletter */
.roto-newsletter h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
}

.roto-newsletter p {
    font-size: 0.8rem;
    color: #888;
    margin: 0 0 0.75rem;
}

.roto-newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #444;
}

.roto-newsletter-form input {
    flex: 1;
    background: #fff;
    border: none;
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
    color: #333;
    outline: none;
}

.roto-newsletter-form input::placeholder { color: #999; }

.roto-newsletter-form button {
    background: var(--clr-primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.roto-newsletter-form button:hover { background: #c62828; }

/* ===== WHATSAPP FLOAT ===== */
.roto-whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 200;
    transition: transform 0.2s;
}

.roto-whatsapp-float:hover { transform: scale(1.08); }

.roto-whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .roto-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .roto-shop-layout {
        grid-template-columns: 1fr;
    }

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

    .roto-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .roto-nav { display: none; }

    .roto-menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .roto-header-inner {
        height: 54px;
        gap: .5rem;
    }

    .roto-header-icons {
        margin-left: auto;
        gap: .35rem;
    }

    .roto-login-link {
        display: none;
    }

    .roto-mobile-nav {
        display: block;
    }

    .roto-logo img {
        height: 30px !important;
    }

    .roto-hero-content h1 {
        font-size: clamp(1.4rem, 6vw, 2.2rem);
    }

    .roto-hero-banner { height: 220px; }

    .roto-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .roto-sidebar {
        grid-template-columns: 1fr;
    }

    .roto-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 400px) {
    .roto-product-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   PRODUCT DETAIL PAGE
   =================================================== */

.roto-detail-main {
    padding: 1.5rem 0 3rem;
    background: #fff;
}

/* Topbar: breadcrumb + arrows */
.roto-detail-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.roto-breadcrumb-current {
    color: #333;
    font-weight: 600;
}

.roto-detail-nav-arrows {
    display: flex;
    align-items: center;
    gap: 6px;
}

.roto-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #555;
    font-size: 1.1rem;
    transition: all 0.15s;
}

.roto-arrow-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.roto-arrow-grid svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* Detail Grid */
.roto-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

/* Gallery */
.roto-detail-gallery {
    position: relative;
}

.roto-gallery-main {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.roto-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.roto-gallery-main:hover img {
    transform: scale(1.03);
}

.roto-gallery-zoom {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.15s;
}

.roto-gallery-zoom svg { width: 16px; height: 16px; }
.roto-gallery-zoom:hover { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }

/* Product info */
.roto-detail-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.roto-detail-price {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 0.85rem;
}

.roto-detail-desc {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 0.85rem;
}

.roto-detail-instock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2e7d32;
    margin: 0 0 1.1rem;
}

/* Option groups */
.roto-detail-option-group {
    margin-bottom: 0.85rem;
}

.roto-detail-option-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.45rem;
}

.roto-option-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.roto-opt-btn {
    padding: 6px 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    font-size: 0.82rem;
    color: #444;
    cursor: pointer;
    transition: all 0.15s;
}

.roto-opt-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.roto-opt-active {
    border-color: #333;
    background: #fff;
    color: #222;
    font-weight: 600;
}

/* Detail color swatches */
.roto-detail-swatches {
    gap: 7px;
}

.roto-detail-swatches .roto-swatch {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: outline-color 0.15s, transform 0.15s;
}

.roto-detail-swatches .roto-swatch:hover {
    transform: scale(1.15);
}

.roto-detail-swatches .roto-swatch-active {
    outline-color: #333;
    border-color: #fff !important;
}

/* Qty + cart actions */
.roto-detail-cart-form {
    margin: 1.1rem 0 0.5rem;
}

.roto-qty-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.roto-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 3px;
    overflow: hidden;
}

.roto-qty-btn {
    width: 34px;
    height: 42px;
    background: #f5f5f5;
    border: none;
    font-size: 1.1rem;
    color: #444;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roto-qty-btn:hover { background: #e9e9e9; }

.roto-qty-input {
    width: 50px;
    height: 42px;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    outline: none;
    -moz-appearance: textfield;
}

.roto-qty-input::-webkit-inner-spin-button,
.roto-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.roto-btn-addtocart {
    padding: 0 1.4rem;
    height: 42px;
    background: var(--clr-primary);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.roto-btn-addtocart:hover { background: #c62828; }

.roto-btn-buynow {
    padding: 0 1.4rem;
    height: 42px;
    background: #111;
    color: #fff;
    border-radius: 3px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s;
    white-space: nowrap;
}

.roto-btn-buynow:hover { background: #333; }

.roto-detail-wishlist {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #666;
    margin: 0.75rem 0 0;
    transition: color 0.2s;
}

.roto-detail-wishlist svg { width: 15px; height: 15px; }
.roto-detail-wishlist:hover { color: var(--clr-primary); }

.roto-detail-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 1rem 0;
}

/* Meta */
.roto-detail-meta p {
    margin: 0.35rem 0;
    font-size: 0.85rem;
    color: #555;
}

.roto-detail-meta strong {
    color: #222;
}

.roto-detail-meta a {
    color: var(--clr-primary);
}

.roto-detail-share {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.roto-share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: color 0.15s;
}

.roto-share-icon:hover { color: var(--clr-primary); }

/* ===== DESCRIPTION TABS ===== */
.roto-detail-tabs {
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.roto-tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.roto-tab-header-border {
    border-top: 1px solid #eee;
    border-bottom: none;
}

.roto-tab-btn {
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-primary);
    cursor: pointer;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}

.roto-tab-btn:not(.roto-tab-active) {
    color: #444;
}

.roto-tab-toggle {
    background: none;
    border: none;
    font-size: 1rem;
    color: #888;
    cursor: pointer;
    padding: 0;
}

.roto-tab-content {
    display: none;
    padding: 1.25rem;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.75;
}

.roto-tab-content p { margin: 0; }

.roto-tab-content-active {
    display: block;
}

/* ===== RELATED PRODUCTS ===== */
.roto-related-section {
    margin-bottom: 2rem;
}

.roto-related-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 1.25rem;
}

.roto-related-grid {
    grid-template-columns: repeat(4, 1fr);
}

.roto-related-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 1.5rem;
}

.roto-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s;
}

.roto-dot-active { background: var(--clr-primary); }

/* WhatsApp badge on float btn */
.roto-whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* Responsive detail */
@media (max-width: 860px) {
    .roto-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

@media (max-width: 500px) {
    .roto-qty-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .roto-btn-addtocart,
    .roto-btn-buynow {
        width: 100%;
        justify-content: center;
    }

    .roto-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   HOMEPAGE
   =================================================== */

/* Home-specific header tweak */
.roto-login-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: color 0.2s;
}

.roto-login-link:hover { color: #fff; }

.roto-nav-active {
    color: #fff !important;
    border-bottom: 2px solid var(--clr-primary);
}

/* ===== HOME HERO ===== */
.roto-home-hero {
    position: relative;
    background: #c0100c;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: stretch;
}

.roto-home-slide {
    display: none;
    width: 100%;
    min-height: 420px;
    position: relative;
    align-items: center;
}

.roto-home-slide.roto-slide-active {
    display: flex;
}

/* Decorative wave at the bottom */
.roto-home-slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.roto-home-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.12) 0%, transparent 60%),
        linear-gradient(135deg, #c0100c 0%, #9b0d0a 100%);
}

.roto-home-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.roto-home-hero-copy {
    flex: 1;
    max-width: 540px;
    text-align: center;
}

.roto-home-hero-copy h1 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    text-shadow: 0 3px 16px rgba(0,0,0,0.25);
}

.roto-home-hero-copy p {
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    margin: 0 0 1.5rem;
    line-height: 1.55;
}

.roto-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.2rem;
    background: var(--clr-primary);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.roto-hero-cta:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
}

.roto-home-hero-visual {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
}

.roto-hero-tank-right {
    width: 220px;
    max-width: 30vw;
    filter: drop-shadow(-8px 8px 20px rgba(0,0,0,0.35));
}

/* Hero dots */
.roto-home-hero-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.roto-home-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.45);
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.roto-home-dot-active { background: #fff; }

/* WhatsApp helper bubble */
.roto-hero-whatsapp {
    position: absolute;
    bottom: 100px;
    right: 1.5rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 0.55rem 1rem 0.55rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: background 0.2s, transform 0.2s;
}

.roto-hero-whatsapp:hover {
    background: #1fa854;
    transform: scale(1.04);
}

/* ===== WATER TANKS SECTION ===== */
.roto-home-section {
    padding: 3rem 0;
    background: #f8f8f8;
}

.roto-tanks-section {
    background: #f8f8f8;
}

.roto-home-section-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a4a3a;
    text-align: center;
    margin: 0 0 0.5rem;
    letter-spacing: 0.06em;
}

.roto-home-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 2rem;
}

.roto-home-tab {
    padding: 4px 18px;
    border: none;
    background: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.roto-home-tab-active {
    color: #222;
    border-bottom-color: var(--clr-primary);
}

/* Home products grid — 4 columns, plain white cards */
.roto-home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.roto-home-product-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 1rem;
    position: relative;
    text-align: center;
    transition: box-shadow 0.2s;
}

.roto-home-product-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.roto-home-product-img-link {
    display: block;
    margin-bottom: 0.85rem;
}

.roto-home-product-img-link img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: transform 0.25s;
}

.roto-home-product-card:hover .roto-home-product-img-link img {
    transform: scale(1.04);
}

.roto-home-product-info h3 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.roto-home-product-info h3 a:hover { color: var(--clr-primary); }

.roto-home-product-cat {
    font-size: 0.78rem;
    color: #999;
    margin: 0 0 0.3rem;
}

.roto-home-product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0;
}

/* ===== ABOUT SECTION ===== */
.roto-home-about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    background: #fff;
}

.roto-about-img-col {
    overflow: hidden;
}

.roto-about-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.roto-about-copy-col {
    padding: 3.5rem 4rem 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roto-about-copy-col h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a3a2a;
    line-height: 1.2;
    margin: 0 0 0.6rem;
}

.roto-about-copy-col h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 0.5rem;
}

.roto-about-welcome {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 0.75rem;
}

.roto-about-copy-col p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.75;
    margin: 0 0 0.75rem;
}

.roto-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: #1a3a2a;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 3px;
    margin-top: 0.5rem;
    align-self: flex-start;
    transition: background 0.2s, transform 0.2s;
}

.roto-about-btn:hover {
    background: #0f2318;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE (homepage) ===== */
@media (max-width: 900px) {
    .roto-home-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roto-home-about-section {
        grid-template-columns: 1fr;
    }

    .roto-about-img-col {
        height: 280px;
    }

    .roto-about-copy-col {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .roto-home-hero-content {
        flex-direction: column;
        padding-bottom: 5.5rem;
    }

    .roto-hero-tank-right {
        width: 140px;
    }

    .roto-home-hero-copy h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

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

    .roto-hero-whatsapp {
        bottom: 120px;
        right: 0.75rem;
        font-size: 0.75rem;
        padding: 0.45rem 0.75rem 0.45rem 0.6rem;
    }
}

/* ===================================================
   PAGE BANNER (shared across interior pages)
   =================================================== */
.roto-page-banner {
    background: #1a1a1a;
    padding: 2.5rem 0 2rem;
    border-bottom: 3px solid var(--clr-primary);
}

.roto-page-banner h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.roto-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}

.roto-breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.roto-breadcrumb a:hover { color: var(--clr-primary); }

.roto-breadcrumb-sep { color: rgba(255,255,255,0.35); }

/* ===================================================
   FLASH BAR
   =================================================== */
.roto-flash-bar {
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.65rem 0;
    text-align: center;
}

/* ===================================================
   SHARED SECTION / BUTTON HELPERS
   =================================================== */
.roto-section {
    padding: 4rem 0;
}

.roto-section-heading { margin-bottom: 2.5rem; }

.roto-section-heading-center { text-align: center; }

.roto-section-heading h2,
.roto-section-heading-center h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0.25rem 0 0;
}

.roto-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin: 0;
}

/* Buttons */
.roto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.roto-btn-red {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

.roto-btn-red:hover { background: #c62828; border-color: #c62828; color: #fff; }

.roto-btn-dark {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.roto-btn-dark:hover { background: #333; border-color: #333; color: #fff; }

.roto-btn-outline {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.roto-btn-outline:hover { background: #1a1a1a; color: #fff; }

.roto-btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.roto-btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; }

.roto-btn-green {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.roto-btn-green:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }

.roto-btn-block { width: 100%; }

/* Form elements */
.roto-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.roto-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.roto-form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roto-form-group input,
.roto-form-group select,
.roto-form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}

.roto-form-group input:focus,
.roto-form-group select:focus,
.roto-form-group textarea:focus { border-color: var(--clr-primary); }

.roto-required { color: var(--clr-primary); }

/* ===================================================
   CART PAGE
   =================================================== */
.roto-cart-section { background: #f7f7f7; }

.roto-cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

.roto-cart-main {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.roto-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.roto-cart-empty-icon { color: #ccc; }

.roto-cart-empty h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
}

.roto-cart-empty p { color: #666; max-width: 380px; }

.roto-cart-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 1rem;
    padding: 0.85rem 1.5rem;
    background: #1a1a1a;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.roto-cart-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.roto-cart-row:last-of-type { border-bottom: none; }

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

.roto-cart-img-wrap {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roto-cart-img-wrap img { width: 100%; height: 100%; object-fit: contain; }

.roto-cart-product-info { display: flex; flex-direction: column; gap: 0.2rem; }

.roto-cart-product-info a {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
    line-height: 1.3;
}

.roto-cart-product-info a:hover { color: var(--clr-primary); }

.roto-cart-product-info span {
    font-size: 0.78rem;
    color: #888;
}

.roto-cart-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.roto-qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
    width: fit-content;
}

.roto-qty-btn {
    width: 32px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    transition: background 0.15s;
    line-height: 1;
}

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

.roto-qty-input {
    width: 44px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1.5px solid #ddd;
    border-right: 1.5px solid #ddd;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
}

.roto-cart-subtotal {
    font-weight: 700;
    color: #1a1a1a;
}

.roto-cart-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    padding: 4px;
    transition: color 0.2s;
}

.roto-cart-remove-btn:hover { color: var(--clr-primary); }

.roto-cart-actions {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.roto-cart-coupon-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #eee;
    background: #fff;
}

.roto-cart-coupon-field {
    display: flex;
    gap: 0.75rem;
}

.roto-cart-coupon-field input {
    padding: 0.65rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
    width: 200px;
}

.roto-cart-coupon-field input:focus { border-color: var(--clr-primary); }

.roto-cart-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.roto-cart-trust span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #888;
}

/* Cart Totals Sidebar */
.roto-cart-totals {
    background: #fff;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

.roto-cart-totals h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--clr-primary);
    letter-spacing: 0.06em;
}

.roto-cart-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #333;
}

.roto-cart-totals-shipping .roto-shipping-note {
    font-size: 0.78rem;
    color: #888;
    text-align: right;
    max-width: 160px;
}

.roto-cart-totals-grand {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
    border-bottom: none;
    margin-bottom: 1.25rem;
}

.roto-cart-totals-secure {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #aaa;
    justify-content: center;
    margin-top: 0.75rem;
}

/* ===================================================
   ABOUT PAGE
   =================================================== */
.roto-about-intro { background: #fff; }

.roto-about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.roto-about-intro-image {
    position: relative;
}

.roto-about-intro-image img {
    width: 100%;
    max-width: 420px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.roto-about-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 0;
    background: var(--clr-primary);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    text-align: center;
    min-width: 110px;
    box-shadow: 0 4px 20px rgba(229,57,53,0.35);
}

.roto-about-badge-num {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.roto-about-badge-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
    opacity: 0.9;
}

.roto-about-intro-copy h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0.25rem 0 1rem;
}

.roto-about-intro-copy p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* Stats Strip */
.roto-about-stats {
    background: #1a1a1a;
    padding: 3rem 0;
}

.roto-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.roto-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.roto-stat-card:last-child { border-right: none; }

.roto-stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
    display: block;
}

.roto-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 0.5rem;
    display: block;
}

/* Values Grid */
.roto-about-values { background: #f7f7f7; }

.roto-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.roto-value-card {
    background: #fff;
    border-radius: 4px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s, transform 0.25s;
}

.roto-value-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.roto-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(229,57,53,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--clr-primary);
}

.roto-value-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
}

.roto-value-card p { font-size: 0.88rem; color: #666; line-height: 1.7; margin: 0; }

/* About CTA */
.roto-about-cta {
    background: var(--clr-primary);
    padding: 3.5rem 0;
}

.roto-about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.roto-about-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.35rem;
    letter-spacing: 0.03em;
}

.roto-about-cta p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.95rem; }

.roto-about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.roto-contact-section { background: #f7f7f7; }

.roto-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.roto-contact-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 0.03em;
    margin: 0.25rem 0 0.75rem;
}

.roto-contact-intro { color: #555; line-height: 1.75; margin-bottom: 2rem; }

.roto-contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.roto-contact-card {
    background: #fff;
    border-radius: 4px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}

.roto-contact-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.roto-contact-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(229,57,53,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.roto-contact-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin: 0 0 0.3rem;
}

.roto-contact-card p {
    font-size: 0.85rem;
    color: #555;
    margin: 0 0 0.2rem;
    line-height: 1.5;
}

.roto-contact-card a { color: var(--clr-primary); }
.roto-contact-card a:hover { text-decoration: underline; }

/* Form Card */
.roto-contact-form-wrap {
    background: #fff;
    border-radius: 4px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.roto-contact-form-wrap h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin: 0 0 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--clr-primary);
}

.roto-map-strip { line-height: 0; }

/* ===================================================
   TRACK ORDER PAGE
   =================================================== */
.roto-track-section { background: #f7f7f7; }

.roto-track-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.roto-track-card {
    background: #fff;
    border-radius: 4px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.roto-track-icon {
    color: var(--clr-primary);
    margin-bottom: 1.25rem;
}

.roto-track-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}

.roto-track-card p { color: #666; line-height: 1.7; margin-bottom: 1.75rem; }

.roto-track-form { text-align: left; margin-bottom: 1.5rem; }

.roto-track-note {
    font-size: 0.82rem;
    color: #999;
    margin: 1rem 0 0;
}

.roto-track-note a { color: var(--clr-primary); }
.roto-track-note a:hover { text-decoration: underline; }

/* Steps */
.roto-track-steps-wrap h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
}

.roto-track-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.roto-track-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.roto-track-step-last { border-bottom: none; }

.roto-track-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.roto-track-step-num-green { background: #25d366; }

.roto-track-step-copy h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin: 0 0 0.3rem;
}

.roto-track-step-copy p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.6; }

.roto-track-whatsapp-card {
    background: #1a1a1a;
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.roto-track-whatsapp-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.3rem;
    letter-spacing: 0.05em;
}

.roto-track-whatsapp-card p { font-size: 0.84rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ===================================================
   BLOG PAGE
   =================================================== */
.roto-blog-section { background: #f7f7f7; }

.roto-blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}

.roto-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.roto-blog-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s, transform 0.25s;
}

.roto-blog-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.roto-blog-card-img {
    display: block;
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f4f4f4;
}

.roto-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.roto-blog-card:hover .roto-blog-card-img img { transform: scale(1.04); }

.roto-blog-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 2px;
}

.roto-blog-card-body { padding: 1.5rem; }

.roto-blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.77rem;
    color: #aaa;
    margin-bottom: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.roto-blog-meta span { display: flex; align-items: center; gap: 0.3rem; }

.roto-blog-card-body h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #1a1a1a;
    margin: 0 0 0.6rem;
    line-height: 1.4;
}

.roto-blog-card-body h2 a { color: inherit; }
.roto-blog-card-body h2 a:hover { color: var(--clr-primary); }

.roto-blog-card-body p { font-size: 0.86rem; color: #666; line-height: 1.7; margin: 0 0 1rem; }

.roto-blog-read-more {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-primary);
}

.roto-blog-read-more:hover { color: #c62828; }

/* Sidebar */
.roto-blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.roto-blog-widget {
    background: #fff;
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.roto-blog-widget h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--clr-primary);
}

.roto-blog-search {
    display: flex;
    border: 1.5px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.roto-blog-search input {
    flex: 1;
    padding: 0.65rem 0.75rem;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
}

.roto-blog-search button {
    padding: 0 0.9rem;
    background: var(--clr-primary);
    border: none;
    color: #fff;
    cursor: pointer;
}

.roto-blog-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.roto-blog-categories li a {
    display: flex;
    justify-content: space-between;
    font-size: 0.86rem;
    color: #555;
    padding: 0.3rem 0;
    border-bottom: 1px solid #eee;
    transition: color 0.2s;
}

.roto-blog-categories li a:hover { color: var(--clr-primary); }

.roto-blog-categories li a span {
    background: #f4f4f4;
    color: #888;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 20px;
}

.roto-blog-recent {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.roto-blog-recent li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.roto-blog-recent-img {
    width: 56px;
    height: 56px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f4f4f4;
}

.roto-blog-recent-img img { width: 100%; height: 100%; object-fit: contain; }

.roto-blog-recent li div { display: flex; flex-direction: column; gap: 0.2rem; }

.roto-blog-recent li a {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.roto-blog-recent li a:hover { color: var(--clr-primary); }

.roto-blog-recent li span { font-size: 0.75rem; color: #aaa; }

.roto-blog-cta-widget { background: #1a1a1a; }

.roto-blog-cta-widget h3 {
    color: #fff;
    border-bottom-color: var(--clr-primary);
}

.roto-blog-cta-widget p { font-size: 0.86rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }

/* ===================================================
   RESPONSIVE — INTERIOR PAGES
   =================================================== */
@media (max-width: 900px) {
    .roto-cart-layout { grid-template-columns: 1fr; }
    .roto-cart-header-row { display: none; }
    .roto-cart-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        border: 1px solid #eee;
        border-radius: 4px;
        margin: 0.75rem 1rem;
        padding: 1rem;
    }
    .roto-about-intro-grid { grid-template-columns: 1fr; }
    .roto-about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .roto-values-grid { grid-template-columns: repeat(2, 1fr); }
    .roto-about-cta-inner { flex-direction: column; align-items: flex-start; }
    .roto-contact-layout { grid-template-columns: 1fr; }
    .roto-contact-cards { grid-template-columns: 1fr; }
    .roto-track-layout { grid-template-columns: 1fr; }
    .roto-blog-layout { grid-template-columns: 1fr; }
    .roto-blog-grid { grid-template-columns: 1fr; }
    .roto-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .roto-about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .roto-values-grid { grid-template-columns: 1fr; }
    .roto-cart-totals { position: static; }
    .roto-track-whatsapp-card { flex-direction: column; }
    .roto-trust-strip-inner { flex-wrap: wrap; gap: 10px; }
    .roto-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   TRUST BADGES STRIP
   ===================================================================== */
.roto-trust-strip {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}
.roto-trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.roto-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}
.roto-trust-badge svg {
    color: #c0392b;
    flex-shrink: 0;
}

/* =====================================================================
   STATS STRIP (home page)
   ===================================================================== */
.roto-stats-strip {
    background: #1a1a2e;
    padding: 56px 0;
}
.roto-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.roto-stat-card {
    color: #fff;
}
.roto-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}
.roto-stat-suffix {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
}
.roto-stat-card p {
    margin: 8px 0 0;
    font-size: .9rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .08em;
}

@media (max-width: 768px) {
    .roto-trust-strip-inner { justify-content: center; }
    .roto-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .roto-stat-num { font-size: 2.2rem; }
}

/* =====================================================================
   CHECKOUT PAGE  (ck-* namespace)
   ===================================================================== */

/* Body override — light grey canvas */
.ck-body { background: #f4f6f9; }

/* ── Progress bar ─────────────────────────────────────────────────── */
.ck-progress-bar {
    background: #fff;
    border-bottom: 1px solid #e8eaed;
    padding: 18px 0;
}

.ck-steps {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-content: center;
}

.ck-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ck-step__bubble {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    border: 2px solid #dde0e6;
    color: #aaa;
    background: #fff;
    transition: all 0.2s;
}

.ck-step__label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #aaa;
    transition: color 0.2s;
}

.ck-step--done .ck-step__bubble {
    background: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
}
.ck-step--done .ck-step__label { color: #2e7d32; }

.ck-step--active .ck-step__bubble {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(229,57,53,.15);
}
.ck-step--active .ck-step__label { color: var(--clr-primary); font-weight: 700; }

.ck-step__connector {
    flex: 1;
    height: 2px;
    background: #dde0e6;
    min-width: 60px;
    max-width: 120px;
    align-self: center;
    margin-bottom: 18px;
}
.ck-step__connector--done { background: #2e7d32; }

/* ── Main layout ──────────────────────────────────────────────────── */
.ck-main {
    padding: 48px 0 80px;
    font-family: 'Inter', 'Open Sans', sans-serif;
}

.ck-main .roto-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.ck-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* ── Form column ──────────────────────────────────────────────────── */
.ck-form-col { display: flex; flex-direction: column; gap: 0; min-width: 0; }

/* ── Block card ───────────────────────────────────────────────────── */
.ck-block {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8eaed;
    padding: 28px 32px 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}
.ck-block:focus-within {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.ck-block__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.ck-block__num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--clr-primary);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ck-block__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 2px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ck-block__sub {
    font-size: .8rem;
    color: #8a8fa8;
    margin: 0;
}

/* ── Fields ───────────────────────────────────────────────────────── */
.ck-fields { display: flex; flex-direction: column; gap: 0; }

.ck-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ck-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.ck-field label {
    font-size: .78rem;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ck-req { color: var(--clr-primary); }
.ck-opt { color: #aaa; font-weight: 400; text-transform: none; letter-spacing: 0; }

.ck-field input,
.ck-field select,
.ck-field textarea {
    font-family: 'Inter', 'Open Sans', sans-serif;
    font-size: .92rem;
    color: #1a1a2e;
    background: #fafbfc;
    border: 1.5px solid #dde0e6;
    border-radius: 8px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
    width: 100%;
    box-sizing: border-box;
}

.ck-field input:focus,
.ck-field select:focus,
.ck-field textarea:focus {
    border-color: var(--clr-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(229,57,53,.1);
}

.ck-field input::placeholder,
.ck-field textarea::placeholder { color: #b0b5c8; }

.ck-field--error input,
.ck-field--error select { border-color: var(--clr-primary); background: #fff8f8; }

.ck-field__err {
    font-size: .75rem;
    color: var(--clr-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ck-field__err::before { content: '⚠'; font-size: .7rem; }

/* ── Payment options ──────────────────────────────────────────────── */
.ck-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ck-pay {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid #dde0e6;
    border-radius: 10px;
    background: #fafbfc;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    user-select: none;
    min-width: 0;
}

.ck-pay:hover {
    border-color: #c0c4d0;
    background: #fff;
}

.ck-pay--selected {
    border-color: var(--clr-primary);
    background: #fff8f8;
    box-shadow: 0 0 0 3px rgba(229,57,53,.08);
}

.ck-pay input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ck-pay__icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.ck-pay__icon--mpesa { background: #4caf50; color: #fff; }
.ck-pay__icon--bank  { background: #1565c0; color: #fff; }
.ck-pay__icon--cash  { background: #f57f17; color: #fff; }
.ck-pay__icon--wa    { background: #25d366; color: #fff; }

.ck-pay__text {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
}
.ck-pay__text strong { font-size: .88rem; color: #1a1a2e; font-weight: 600; }
.ck-pay__text small  { font-size: .75rem; color: #8a8fa8; }

.ck-pay__check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #dde0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: transparent;
    transition: all 0.18s;
}
.ck-pay--selected .ck-pay__check {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}

/* ── Trust row ────────────────────────────────────────────────────── */
.ck-trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0 20px;
    flex-wrap: wrap;
}

.ck-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #6b7280;
    font-weight: 500;
}
.ck-trust-item svg { color: #2e7d32; flex-shrink: 0; }

/* ── Submit button ────────────────────────────────────────────────── */
.ck-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(229,57,53,.35);
    transition: box-shadow 0.2s, transform 0.15s, opacity 0.2s;
}
.ck-submit-btn:hover:not(:disabled) {
    box-shadow: 0 8px 28px rgba(229,57,53,.45);
    transform: translateY(-1px);
}
.ck-submit-btn:active:not(:disabled) { transform: translateY(0); }
.ck-submit-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

/* ── Order summary sidebar ────────────────────────────────────────── */
.ck-summary {
    position: sticky;
    top: 90px;
}

.ck-summary__inner {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8eaed;
    padding: 28px 24px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.ck-summary__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--clr-primary);
}

.ck-summary__items { display: flex; flex-direction: column; gap: 14px; }

.ck-summary__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ck-summary__img-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #f5f5f5;
}
.ck-summary__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ck-summary__qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #1a1a2e;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.ck-summary__item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.ck-summary__item-name {
    font-size: .84rem;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ck-summary__item-cap { font-size: .74rem; color: #8a8fa8; }

.ck-summary__item-cap,
.ck-summary__item-name,
.ck-pay__text strong,
.ck-pay__text small {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ck-summary__item-price {
    font-size: .88rem;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
}

.ck-summary__divider {
    height: 1px;
    background: #eee;
    margin: 18px 0;
}

.ck-summary__totals { display: flex; flex-direction: column; gap: 10px; }

.ck-summary__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .88rem;
    color: #555;
}

.ck-summary__muted { color: #aaa; font-size: .8rem; }

.ck-summary__grand {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    padding-top: 10px;
    border-top: 1.5px solid #eee;
}

.ck-summary__edit-cart {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: #8a8fa8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.ck-summary__edit-cart:hover { color: var(--clr-primary); }

.ck-summary__pay-badges {
    display: flex;
    gap: 6px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* ── Loading spinner for submit ───────────────────────────────────── */
@keyframes ck-spin {
    to { transform: rotate(360deg); }
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .ck-layout {
        grid-template-columns: 1fr;
    }
    .ck-summary {
        position: static;
        order: -1;
    }
    .ck-summary__inner { padding: 20px; }
}

@media (max-width: 640px) {
    .ck-main { padding: 24px 0 40px; }
    .ck-progress-bar { padding: 12px 0; }
    .ck-step__bubble { width: 30px; height: 30px; font-size: .8rem; }
    .ck-step__label { font-size: .62rem; letter-spacing: .05em; }
    .ck-step__connector { min-width: 20px; margin-bottom: 15px; }

    .ck-form-col { order: 1; }
    .ck-summary { order: 2; }

    .ck-block { padding: 20px 18px; }
    .ck-block__head { gap: 10px; margin-bottom: 16px; }
    .ck-block__title { font-size: 1rem; letter-spacing: .03em; }
    .ck-block__sub { font-size: .76rem; }

    .ck-row { grid-template-columns: 1fr; gap: 0; }
    .ck-field { margin-bottom: 14px; }
    .ck-field label { font-size: .72rem; letter-spacing: .04em; }
    .ck-field input,
    .ck-field select,
    .ck-field textarea { font-size: 16px; }

    .ck-payment-grid { grid-template-columns: 1fr; }
    .ck-pay { align-items: flex-start; padding: 12px; }
    .ck-pay__text strong { font-size: .84rem; line-height: 1.25; }
    .ck-pay__text small { font-size: .72rem; line-height: 1.25; }
    .ck-pay__check { margin-top: 4px; }

    .ck-steps { gap: 0; }
    .ck-trust-row { gap: 10px; flex-direction: column; align-items: flex-start; padding: 8px 0 14px; }
    .ck-submit-btn { font-size: .95rem; padding: 16px 20px; }

    .ck-summary__inner { padding: 16px; }
    .ck-summary__items { gap: 10px; }
    .ck-summary__item { align-items: flex-start; }
    .ck-summary__item-name { white-space: normal; overflow: visible; text-overflow: clip; line-height: 1.3; }
    .ck-summary__item-price { align-self: flex-start; font-size: .82rem; }
    .ck-summary__total-row { font-size: .82rem; }
}

@media (max-width: 420px) {
    .ck-step__label { font-size: .58rem; }
    .ck-submit-btn { font-size: .9rem; }
}

/* ════════════════════════════════════════════════════════════════════
   ORDER CONFIRMATION PAGE  (oc-*)
   ════════════════════════════════════════════════════════════════════ */

.oc-body { background: #f4f6f9; }

.oc-main { padding: 48px 0 72px; }

/* ── Two-column layout ──────────────────────────────────────────── */
.oc-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}

.oc-left  { display: flex; flex-direction: column; gap: 20px; }
.oc-right { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }

/* ── Shared card ─────────────────────────────────────────────────── */
.oc-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8eaed;
    padding: 28px 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.055);
}

.oc-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #1a1a2e;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--clr-primary);
}
.oc-card__title svg { color: var(--clr-primary); flex-shrink: 0; }

/* ── Hero success card ───────────────────────────────────────────── */
.oc-hero-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(26,26,46,0.18);
    position: relative;
    overflow: hidden;
}

.oc-hero-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(229,57,53,.15) 0%, transparent 70%);
    pointer-events: none;
}

.oc-hero-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(46,125,50,.35);
    flex-shrink: 0;
}
.oc-hero-icon svg { color: #fff; }

.oc-hero-copy { display: flex; flex-direction: column; gap: 6px; }

.oc-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0;
}

.oc-hero-sub {
    font-size: .93rem;
    color: rgba(255,255,255,.75);
    margin: 0;
    line-height: 1.6;
}
.oc-hero-sub strong { color: #fff; }

.oc-ref-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    padding: 10px 16px;
    align-self: flex-start;
}

.oc-ref-label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.5);
}

.oc-ref-code {
    font-family: 'Oswald', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
}

/* ── Customer details grid ───────────────────────────────────────── */
.oc-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.oc-detail { display: flex; flex-direction: column; gap: 3px; }
.oc-detail--full { grid-column: 1 / -1; }

.oc-detail__label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
}

.oc-detail__value {
    font-size: .9rem;
    font-weight: 500;
    color: #1a1a2e;
}

.oc-detail__value--badge {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    font-size: .78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: capitalize;
    align-self: flex-start;
}

/* ── Items list ──────────────────────────────────────────────────── */
.oc-items { display: flex; flex-direction: column; }

.oc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f3;
}
.oc-item:first-child { padding-top: 0; }

.oc-item__info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.oc-item__name { font-size: .88rem; font-weight: 600; color: #1a1a2e; }
.oc-item__cap  { font-size: .75rem; color: #9ca3af; }

.oc-item__qty {
    font-size: .82rem;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
    background: #f3f4f6;
    padding: 3px 8px;
    border-radius: 6px;
}

.oc-item__price {
    font-size: .9rem;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}

.oc-items-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    border-top: 2px solid #1a1a2e;
    margin-top: 4px;
}

/* ── WhatsApp CTA card ───────────────────────────────────────────── */
.oc-wa-card {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(7,94,84,.2);
}

.oc-wa-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.oc-wa-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0;
}

.oc-wa-sub {
    font-size: .83rem;
    color: rgba(255,255,255,.75);
    margin: 0;
    line-height: 1.55;
}

.oc-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding: 12px 20px;
    background: #25d366;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37,211,102,.35);
    transition: box-shadow 0.2s, transform 0.15s;
}
.oc-wa-btn:hover {
    box-shadow: 0 6px 20px rgba(37,211,102,.5);
    transform: translateY(-1px);
}

/* ── What happens next ───────────────────────────────────────────── */
.oc-next-card { padding-bottom: 28px; }

.oc-pay-card { display:flex; flex-direction:column; gap:14px; }
.oc-pay-block {
    border:1px solid #e8edf3;
    border-radius:12px;
    padding:12px;
    background:#f8fafc;
}
.oc-pay-block h3 {
    margin:0 0 8px;
    font-family:'Oswald',sans-serif;
    font-size:.88rem;
    text-transform:uppercase;
    letter-spacing:.05em;
    color:#0f172a;
}
.oc-pay-line {
    margin:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    font-size:.8rem;
    color:#475569;
    padding:4px 0;
}
.oc-pay-line strong { color:#111827; font-size:.82rem; }
.oc-pay-note {
    margin:8px 0 0;
    font-size:.76rem;
    color:#64748b;
    line-height:1.5;
}

.oc-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.oc-step-item {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 24px;
}
.oc-step-item:last-child { padding-bottom: 0; }

.oc-step-item::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 36px;
    bottom: 0;
    width: 2px;
    background: #f0f0f3;
}
.oc-step-item:last-child::before { display: none; }

.oc-step-num {
    width: 36px; height: 36px;
    background: var(--clr-primary);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(229,57,53,.3);
    z-index: 1;
}

.oc-step-body {
    padding-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.oc-step-body strong { font-size: .9rem; color: #1a1a2e; font-weight: 700; }
.oc-step-body p { font-size: .82rem; color: #6b7280; margin: 0; line-height: 1.55; }
.oc-step-body p strong { font-size: inherit; color: #1a1a2e; }

/* ── Secondary action buttons ────────────────────────────────────── */
.oc-actions { display: flex; flex-direction: column; gap: 10px; }

.oc-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.18s;
}

.oc-action-btn--outline {
    background: #fff;
    color: #1a1a2e;
    border: 1.5px solid #d1d5db;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.oc-action-btn--outline:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    box-shadow: 0 3px 12px rgba(229,57,53,.12);
}

.oc-action-btn--ghost {
    background: transparent;
    color: #6b7280;
    border: 1.5px solid transparent;
}
.oc-action-btn--ghost:hover { color: #1a1a2e; border-color: #e8eaed; background: #fff; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .oc-layout {
        grid-template-columns: 1fr;
    }
    .oc-right {
        position: static;
        order: -1;
    }
}

@media (max-width: 640px) {
    .oc-main { padding: 28px 0 48px; }
    .oc-hero-card { padding: 24px 20px; }
    .oc-hero-title { font-size: 1.5rem; }
    .oc-card { padding: 20px 18px; }
    .oc-details-grid { grid-template-columns: 1fr; }
    .oc-ref-pill { align-self: stretch; justify-content: space-between; }
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT PAGE  (cn-*)
   ════════════════════════════════════════════════════════════════════ */

/* ── Hero banner ─────────────────────────────────────────────────── */
.cn-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    padding: 56px 0 44px;
    position: relative;
    overflow: hidden;
}
.cn-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 40px;
    background: #f4f6f9;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.cn-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cn-hero__eyebrow {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--clr-primary);
    margin: 0;
}

.cn-hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0;
    line-height: 1.1;
}

.cn-hero__sub {
    font-size: .97rem;
    color: rgba(255,255,255,.68);
    margin: 0;
    max-width: 520px;
}

.cn-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
}
.cn-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.cn-breadcrumb a:hover { color: #fff; }
.cn-breadcrumb span:last-child { color: rgba(255,255,255,.85); }

/* ── Main canvas ─────────────────────────────────────────────────── */
.cn-main { background: #f4f6f9; padding: 40px 0 0; }

/* ── Quick-reach cards strip ─────────────────────────────────────── */
.cn-reach-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.cn-reach-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 18px 18px 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.15s, border-color 0.15s;
    cursor: pointer;
}
.cn-reach-card:not(.cn-reach-card--plain):hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.cn-reach-card__icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cn-reach-card__icon--red    { background: #fff5f5; color: var(--clr-primary); }
.cn-reach-card__icon--green  { background: #f0fdf4; color: #16a34a; }
.cn-reach-card__icon--blue   { background: #eff6ff; color: #2563eb; }
.cn-reach-card__icon--orange { background: #fff7ed; color: #ea580c; }

.cn-reach-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.cn-reach-card__body strong {
    font-size: .85rem;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
}
.cn-reach-card__body span {
    font-size: .76rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.cn-reach-card__arrow { color: #c0c4d0; flex-shrink: 0; transition: color 0.15s; }
.cn-reach-card:hover .cn-reach-card__arrow { color: var(--clr-primary); }

/* ── Two-column layout ───────────────────────────────────────────── */
.cn-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
    margin-bottom: 0;
    padding-bottom: 56px;
}

/* ── Form card ───────────────────────────────────────────────────── */
.cn-form-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8eaed;
    padding: 36px 36px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.055);
}

.cn-form-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.cn-form-card__sub {
    font-size: .87rem;
    color: #6b7280;
    margin: 0 0 28px;
}

/* Form internals */
.cn-form { display: flex; flex-direction: column; gap: 20px; }

.cn-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cn-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cn-form__group label {
    font-size: .8rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: .02em;
}

.cn-required { color: var(--clr-primary); }

.cn-form__group input,
.cn-form__group select,
.cn-form__group textarea {
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    color: #1a1a2e;
    background: #fafbfc;
    border: 1.5px solid #e2e5ea;
    border-radius: 8px;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
    resize: vertical;
}
.cn-form__group input::placeholder,
.cn-form__group textarea::placeholder { color: #b0b7c3; }
.cn-form__group input:focus,
.cn-form__group select:focus,
.cn-form__group textarea:focus {
    border-color: var(--clr-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(229,57,53,.10);
}
.cn-form__group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }

.cn-field-err {
    font-size: .76rem;
    color: var(--clr-primary);
    font-weight: 500;
    min-height: 1em;
}

/* Submit button */
.cn-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(229,57,53,.35);
    transition: box-shadow 0.2s, transform 0.15s, opacity 0.2s;
    align-self: flex-start;
}
.cn-submit-btn:hover:not(:disabled) {
    box-shadow: 0 8px 28px rgba(229,57,53,.45);
    transform: translateY(-1px);
}
.cn-submit-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.cn-submit-btn__text,
.cn-submit-btn__loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Success banner */
.cn-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: .9rem;
    font-weight: 600;
    color: #166534;
}
.cn-success svg { color: #16a34a; flex-shrink: 0; }

/* ── Info sidebar ────────────────────────────────────────────────── */
.cn-info { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 90px; }

.cn-info-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 22px 22px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.cn-info-card__title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Oswald', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #1a1a2e;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--clr-primary);
}
.cn-info-card__title svg { color: var(--clr-primary); }

.cn-info-card__text {
    font-size: .88rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 12px;
}

.cn-info-card__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: none;
    transition: gap 0.15s;
}
.cn-info-card__link:hover { gap: 8px; }

/* Hours table */
.cn-hours { display: flex; flex-direction: column; gap: 8px; }

.cn-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .84rem;
    color: #374151;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}
.cn-hours__row:last-child { border-bottom: none; padding-bottom: 0; }
.cn-hours__time { font-weight: 600; color: #1a1a2e; }
.cn-hours__row--closed .cn-hours__time { color: #9ca3af; }

/* WhatsApp CTA block */
.cn-wa-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
    border-radius: 12px;
    padding: 18px 18px 18px 20px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(7,94,84,.2);
    transition: box-shadow 0.2s, transform 0.15s;
}
.cn-wa-cta:hover {
    box-shadow: 0 8px 28px rgba(7,94,84,.3);
    transform: translateY(-2px);
}

.cn-wa-cta__icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.cn-wa-cta__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cn-wa-cta__body strong { font-size: .9rem; font-weight: 700; color: #fff; display: block; }
.cn-wa-cta__body span   { font-size: .76rem; color: rgba(255,255,255,.7); display: block; }
.cn-wa-cta > svg { color: rgba(255,255,255,.6); flex-shrink: 0; }

/* ── Map strip ───────────────────────────────────────────────────── */
.cn-map-strip { line-height: 0; }
.cn-map-strip iframe { display: block; width: 100%; filter: grayscale(15%); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .cn-reach-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .cn-layout {
        grid-template-columns: 1fr;
    }
    .cn-info { position: static; order: -1; }
    .cn-info { flex-direction: row; flex-wrap: wrap; }
    .cn-info-card { flex: 1 1 240px; }
    .cn-wa-cta { flex: 1 1 100%; }
}

@media (max-width: 640px) {
    .cn-main { padding: 22px 0 0; }
    .cn-hero { padding: 40px 0 36px; }
    .cn-hero__title { font-size: 1.72rem; }
    .cn-hero__sub { font-size: .9rem; }
    .cn-breadcrumb { flex-wrap: wrap; row-gap: 2px; }
    .cn-reach-strip { grid-template-columns: 1fr; gap: 10px; margin-bottom: 18px; }
    .cn-reach-card { padding: 14px; gap: 10px; }
    .cn-reach-card__body span { white-space: normal; overflow: visible; text-overflow: clip; }
    .cn-reach-card__arrow { display: none; }
    .cn-layout { gap: 14px; padding-bottom: 30px; }
    .cn-form-card { padding: 22px 18px; }
    .cn-form__row { grid-template-columns: 1fr; gap: 0; }
    .cn-form__group input,
    .cn-form__group select,
    .cn-form__group textarea { font-size: 16px; }
    .cn-submit-btn { align-self: stretch; justify-content: center; }
    .cn-info { flex-direction: column; }
    .cn-info-card { padding: 16px; }
    .cn-hours__row { align-items: flex-start; gap: 6px; }
    .cn-map-strip iframe { height: 280px; }
}

@media (max-width: 390px) {
    .cn-hero__title { font-size: 1.55rem; }
}

/* ════════════════════════════════════════════════════════════════════
   ABOUT PAGE  (ab-*)
   ════════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────── */
.ab-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}
.ab-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(229,57,53,.12) 0%, transparent 70%);
    pointer-events: none;
}

.ab-hero__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    padding-bottom: 48px;
}

.ab-hero__copy { display: flex; flex-direction: column; gap: 20px; }

.ab-hero__eyebrow {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--clr-primary);
    margin: 0;
}

.ab-hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0;
    line-height: 1.1;
}

.ab-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.68);
    margin: 0;
    line-height: 1.65;
    max-width: 480px;
}

.ab-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.ab-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.18s;
}
.ab-hero__btn--red {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: #fff;
    box-shadow: 0 6px 20px rgba(229,57,53,.35);
}
.ab-hero__btn--red:hover { box-shadow: 0 8px 28px rgba(229,57,53,.5); transform: translateY(-1px); }
.ab-hero__btn--ghost {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.2);
}
.ab-hero__btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

.ab-hero__image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.ab-hero__img {
    max-height: 380px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
    position: relative;
    z-index: 1;
}

.ab-hero__badge {
    position: absolute;
    bottom: 28px;
    left: 0;
    background: var(--clr-primary);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(229,57,53,.4);
    z-index: 2;
}
.ab-hero__badge-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.ab-hero__badge-label {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.3;
}

.ab-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    padding-bottom: 20px;
}
.ab-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.ab-breadcrumb a:hover { color: #fff; }
.ab-breadcrumb span:last-child { color: rgba(255,255,255,.8); }

/* ── Main canvas ─────────────────────────────────────────────────── */
.ab-main { background: #f4f6f9; }

/* ── Stats strip ─────────────────────────────────────────────────── */
.ab-stats-strip {
    background: #fff;
    border-bottom: 1px solid #e8eaed;
    padding: 32px 0;
}

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

.ab-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-right: 1px solid #e8eaed;
    text-align: center;
}
.ab-stat:last-child { border-right: none; }

.ab-stat__num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
}
.ab-stat__suffix {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
    display: inline;
}
/* Num + suffix on same line */
.ab-stat { position: relative; }
.ab-stat > .ab-stat__num + .ab-stat__suffix {
    position: absolute;
    top: 8px;
    margin-left: 2px;
}

.ab-stat__label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #6b7280;
    margin-top: 4px;
}

/* ── Shared section helpers ──────────────────────────────────────── */
.ab-section { padding: 72px 0; }
.ab-section:nth-child(odd) { background: #f4f6f9; }
.ab-section:nth-child(even) { background: #fff; }

.ab-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--clr-primary);
    margin: 0 0 10px;
}

.ab-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0 0 20px;
    line-height: 1.2;
}

.ab-section-heading {
    text-align: center;
    margin-bottom: 48px;
}
.ab-section-heading .ab-eyebrow { display: block; }
.ab-section-heading .ab-heading { max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── Mission two-col ─────────────────────────────────────────────── */
.ab-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ab-two-col__image {
    position: relative;
}

.ab-two-col__image img {
    width: 100%;
    border-radius: 14px;
    display: block;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.ab-img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--clr-primary);
    border-radius: 14px;
    z-index: -1;
    opacity: .35;
}

.ab-two-col__copy p {
    font-size: .95rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0 0 16px;
}

.ab-checkmarks {
    list-style: none;
    margin: 20px 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ab-checkmarks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    font-weight: 500;
    color: #374151;
}
.ab-checkmarks li svg {
    color: #16a34a;
    flex-shrink: 0;
    background: #f0fdf4;
    border-radius: 50%;
    padding: 2px;
    width: 20px;
    height: 20px;
}

.ab-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--clr-primary);
    text-decoration: none;
    transition: gap 0.15s;
}
.ab-cta-btn:hover { gap: 12px; }
.ab-cta-btn svg { transition: transform 0.15s; }
.ab-cta-btn:hover svg { transform: translateX(3px); }

/* ── Values grid ─────────────────────────────────────────────────── */
.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ab-value-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.18s;
}
.ab-value-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.ab-value-card__icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.ab-value-card__icon--red    { background: #fff5f5; color: var(--clr-primary); }
.ab-value-card__icon--blue   { background: #eff6ff; color: #2563eb; }
.ab-value-card__icon--orange { background: #fff7ed; color: #ea580c; }
.ab-value-card__icon--green  { background: #f0fdf4; color: #16a34a; }
.ab-value-card__icon--purple { background: #f5f3ff; color: #7c3aed; }
.ab-value-card__icon--teal   { background: #f0fdfa; color: #0d9488; }

.ab-value-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #1a1a2e;
    margin: 0 0 10px;
}
.ab-value-card p {
    font-size: .86rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ── CTA banner ──────────────────────────────────────────────────── */
.ab-cta-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.ab-cta-banner::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(229,57,53,.1) 0%, transparent 70%);
    pointer-events: none;
}

.ab-cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.ab-cta-banner__copy h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0 0 6px;
}
.ab-cta-banner__copy p {
    font-size: .93rem;
    color: rgba(255,255,255,.65);
    margin: 0;
}

.ab-cta-banner__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.ab-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.18s;
}
.ab-cta-banner__btn--primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: #fff;
    box-shadow: 0 6px 20px rgba(229,57,53,.35);
}
.ab-cta-banner__btn--primary:hover { box-shadow: 0 8px 28px rgba(229,57,53,.5); transform: translateY(-1px); }
.ab-cta-banner__btn--ghost {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.2);
}
.ab-cta-banner__btn--ghost:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ab-hero__inner { grid-template-columns: 1fr 320px; gap: 32px; }
    .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .ab-hero__inner { grid-template-columns: 1fr; }
    .ab-hero__image-wrap { display: none; }
    .ab-two-col { grid-template-columns: 1fr; gap: 36px; }
    .ab-img-accent { display: none; }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-stat:nth-child(2) { border-right: none; }
    .ab-stat:nth-child(3) { border-right: 1px solid #e8eaed; border-top: 1px solid #e8eaed; }
    .ab-stat:nth-child(4) { border-right: none; border-top: 1px solid #e8eaed; }
    .ab-cta-banner__inner { flex-direction: column; text-align: center; }
    .ab-cta-banner__btns { justify-content: center; }
}

@media (max-width: 580px) {
    .ab-hero__title { font-size: 2.2rem; }
    .ab-values-grid { grid-template-columns: 1fr; }
    .ab-section { padding: 48px 0; }
}

/* ════════════════════════════════════════════════════════════════════
   SHOP PAGE  (sp-*)
   ════════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────── */
.sp-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
}

.sp-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(229,57,53,.12) 0%, transparent 60%);
    pointer-events: none;
}

.sp-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
}

.sp-hero__copy { flex: 1; display: flex; flex-direction: column; gap: 14px; }

.sp-hero__eyebrow {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--clr-primary);
    margin: 0;
}

.sp-hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.1;
    margin: 0;
}

.sp-hero__sub {
    font-size: .93rem;
    color: rgba(255,255,255,.65);
    margin: 0;
    max-width: 460px;
}

.sp-hero__pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.sp-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    letter-spacing: .03em;
}
.sp-hero__pill svg { color: #4ade80; flex-shrink: 0; }

.sp-hero__img {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,.45));
    flex-shrink: 0;
}

/* ── Flash message ───────────────────────────────────────────────── */
.sp-flash {
    background: #f0fdf4;
    border-bottom: 2px solid #86efac;
    padding: 12px 0;
}
.sp-flash .roto-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 600;
    color: #166534;
}
.sp-flash svg { color: #16a34a; flex-shrink: 0; }

/* ── Main canvas ─────────────────────────────────────────────────── */
.sp-main { background: #f4f6f9; padding: 36px 0 64px; }

.sp-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────────────── */
.sp-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-widget {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 20px 20px 18px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.045);
}

.sp-widget__title {
    font-family: 'Oswald', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #1a1a2e;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--clr-primary);
}

/* Search */
.sp-search {
    display: flex;
    border: 1.5px solid #e2e5ea;
    border-radius: 8px;
    overflow: hidden;
    background: #fafbfc;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.sp-search:focus-within {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(229,57,53,.1);
    background: #fff;
}
.sp-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 9px 12px;
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    color: #1a1a2e;
    outline: none;
}
.sp-search input::placeholder { color: #b0b7c3; }
.sp-search button {
    background: var(--clr-primary);
    border: none;
    color: #fff;
    padding: 0 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.15s;
}
.sp-search button:hover { background: var(--clr-primary-dark); }

/* Capacity radio list */
.sp-cap-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sp-cap-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 7px;
    font-size: .84rem;
    color: #374151;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
}
.sp-cap-item input { display: none; }
.sp-cap-item:hover { background: #f3f4f6; color: #1a1a2e; }
.sp-cap-item--active {
    background: #fff5f5;
    color: var(--clr-primary);
    font-weight: 600;
}
.sp-cap-item--active::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--clr-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Price range */
.sp-price-wrap { display: flex; flex-direction: column; gap: 10px; }
.sp-range {
    width: 100%;
    accent-color: var(--clr-primary);
    cursor: pointer;
}
.sp-price-label { font-size: .82rem; color: #6b7280; margin: 0; }
.sp-price-label strong { color: #1a1a2e; }
.sp-filter-btn {
    align-self: flex-start;
    padding: 8px 18px;
    background: #1a1a2e;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}
.sp-filter-btn:hover { background: var(--clr-primary); }

/* Colour swatches */
.sp-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.sp-swatch {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    outline: none;
}
.sp-swatch:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

/* Checkboxes */
.sp-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .84rem;
    color: #374151;
    cursor: pointer;
    padding: 4px 0;
    user-select: none;
}
.sp-check input { display: none; }
.sp-check__box {
    width: 17px; height: 17px;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s;
    background: #fff;
}
.sp-check input:checked + .sp-check__box {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}
.sp-check input:checked + .sp-check__box::after {
    content: '';
    display: block;
    width: 5px; height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px,-1px);
}

/* WhatsApp sidebar block */
.sp-wa-block {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(7,94,84,.2);
    transition: box-shadow 0.18s, transform 0.15s;
}
.sp-wa-block:hover { box-shadow: 0 6px 22px rgba(7,94,84,.3); transform: translateY(-2px); }
.sp-wa-block__icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.sp-wa-block div { display: flex; flex-direction: column; gap: 2px; }
.sp-wa-block strong { font-size: .82rem; font-weight: 700; color: #fff; display: block; }
.sp-wa-block span { font-size: .73rem; color: rgba(255,255,255,.7); display: block; }

/* ── Products area ───────────────────────────────────────────────── */
.sp-products-area { display: flex; flex-direction: column; gap: 20px; }

/* Toolbar */
.sp-toolbar {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    flex-wrap: wrap;
}

.sp-toolbar__left { display: flex; align-items: center; gap: 16px; }

.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    color: #9ca3af;
}
.sp-breadcrumb a { color: #6b7280; text-decoration: none; }
.sp-breadcrumb a:hover { color: var(--clr-primary); }
.sp-breadcrumb span:last-child { color: #1a1a2e; font-weight: 500; }

.sp-count {
    font-size: .78rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 3px 10px;
    border-radius: 20px;
}

.sp-toolbar__right { display: flex; align-items: center; gap: 12px; }

.sp-sort-select {
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    color: #374151;
    border: 1.5px solid #e2e5ea;
    border-radius: 7px;
    padding: 7px 28px 7px 10px;
    background: #fafbfc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center / 14px;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s;
}
.sp-sort-select:focus { border-color: var(--clr-primary); }

.sp-view-btns { display: flex; gap: 4px; }
.sp-view-btn {
    width: 32px; height: 32px;
    border: 1.5px solid #e2e5ea;
    border-radius: 6px;
    background: #fafbfc;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    padding: 0;
}
.sp-view-btn:hover { border-color: var(--clr-primary); color: var(--clr-primary); background: #fff5f5; }
.sp-view-btn--active { background: var(--clr-primary); border-color: var(--clr-primary); color: #fff; }

/* ── Product grid ────────────────────────────────────────────────── */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

/* ── Product card ────────────────────────────────────────────────── */
.sp-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    border: 1px solid #e6ebf2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.24s ease, transform 0.2s ease, border-color 0.2s ease;
}
.sp-card:hover {
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
    transform: translateY(-5px);
    border-color: #d7e0ea;
}

/* Badges */
.sp-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.sp-badge {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    line-height: 1.4;
}
.sp-badge--hot   { background: var(--clr-primary); color: #fff; }
.sp-badge--stock { background: #dcfce7; color: #166534; }

/* Image wrap */
.sp-card__img-wrap {
    display: block;
    position: relative;
    background: radial-gradient(circle at 15% 25%, #ffffff 0%, #f2f6fb 85%);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid #edf1f6;
}

.sp-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: transform 0.35s ease;
}
.sp-card:hover .sp-card__img-wrap img {
    transform: scale(1.06);
}

/* Hover overlay */
.sp-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.22s;
    backdrop-filter: blur(2px);
}
.sp-card:hover .sp-card__overlay { opacity: 1; }

.sp-card__overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: #1a1a2e;
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    transform: translateY(6px);
    transition: transform 0.22s;
}
.sp-card:hover .sp-card__overlay-btn { transform: translateY(0); }

/* Info section */
.sp-card__info {
    padding: 16px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
}

.sp-card__capacity {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-primary);
    margin: 0;
}

.sp-card__name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0 0 4px;
    line-height: 1.3;
}
.sp-card__name a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.15s;
}
.sp-card__name a:hover { color: var(--clr-primary); }

.sp-card__meta { margin-bottom: 4px; }

.sp-card__instock {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    font-weight: 600;
    color: #16a34a;
}
.sp-card__instock svg { flex-shrink: 0; }

.sp-card__price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.24rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 6px 0 12px;
}

.sp-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    align-items: center;
}

.sp-card__atc {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 10px 12px;
    background: #f3f6fb;
    color: #0f172a;
    font-family: 'Oswald', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 10px;
    border: 1px solid #d7deea;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s;
}
.sp-card__atc:hover {
    background: #ebf0f7;
    border-color: #cfd8e6;
    color: #0b1220;
    transform: translateY(-1px);
}

.sp-card__wish {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #e2e5ea;
    border-radius: 10px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.18s;
    flex-shrink: 0;
}
.sp-card__wish:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    background: #fff5f5;
}

/* ── List view ───────────────────────────────────────────────────── */
.sp-grid--list {
    grid-template-columns: 1fr;
}
.sp-grid--list .sp-card {
    flex-direction: row;
}
.sp-grid--list .sp-card__img-wrap {
    width: 200px;
    flex-shrink: 0;
    aspect-ratio: unset;
    border-bottom: none;
    border-right: 1px solid #f0f0f3;
}
.sp-grid--list .sp-card__info {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 20px;
}
.sp-grid--list .sp-card__name { flex: 1; min-width: 160px; margin: 0; }
.sp-grid--list .sp-card__capacity { display: none; }
.sp-grid--list .sp-card__meta { display: none; }
.sp-grid--list .sp-card__price { margin: 0; }
.sp-grid--list .sp-card__actions { margin-top: 0; }

/* ── Pagination ──────────────────────────────────────────────────── */
.sp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 8px;
}

.sp-page {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #e2e5ea;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: #374151;
    text-decoration: none;
    background: #fff;
    transition: all 0.15s;
}
.sp-page:hover { border-color: var(--clr-primary); color: var(--clr-primary); background: #fff5f5; }
.sp-page--active { background: var(--clr-primary); border-color: var(--clr-primary); color: #fff; }
.sp-page--next { color: #6b7280; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .sp-layout { grid-template-columns: 220px 1fr; }
    .sp-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .sp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .sp-card {
        border-radius: 14px;
    }

    .sp-card__img-wrap {
        aspect-ratio: 1 / 1;
    }

    .sp-card__img-wrap img {
        padding: 14px;
    }

    .sp-card__info {
        padding: 12px 12px 13px;
        gap: 2px;
    }

    .sp-card__capacity {
        font-size: .66rem;
        letter-spacing: .07em;
    }

    .sp-card__name {
        font-size: .86rem;
        margin: 0 0 2px;
        line-height: 1.25;
        min-height: 2.2em;
    }

    .sp-card__price {
        font-size: 1.02rem;
        margin: 4px 0 8px;
    }

    .sp-card__atc {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        min-height: 38px;
        padding: 0;
        font-size: 0;
        letter-spacing: 0;
        gap: 0;
        border-radius: 10px;
        border: 1px solid #d7deea;
        background: #f3f6fb;
        color: #0f172a;
        box-shadow: none;
    }

    .sp-card__atc svg {
        width: 16px;
        height: 16px;
    }

    .sp-card__atc:hover {
        transform: none;
        box-shadow: none;
        background: #ebf0f7;
        border-color: #cfd8e6;
    }

    .sp-card__atc:active {
        background: #e4eaf3;
    }

    .sp-card__wish {
        width: 36px;
        height: 36px;
    }

    .sp-card__wish svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 860px) {
    .sp-layout { grid-template-columns: 1fr; }
    .sp-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .sp-widget { flex: 1 1 200px; }
    .sp-wa-block { flex: 1 1 100%; }
    .sp-hero__img { display: none; }
    .sp-hero__title { font-size: 2rem; }
}

@media (max-width: 580px) {
    .sp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .sp-hero__title { font-size: 1.6rem; }
    .sp-hero__inner { padding-top: 32px; padding-bottom: 32px; }
    .sp-toolbar { flex-direction: column; align-items: flex-start; }
    .sp-grid--list .sp-card { flex-direction: column; }
    .sp-grid--list .sp-card__img-wrap { width: 100%; border-right: none; border-bottom: 1px solid #f0f0f3; }
    .sp-grid--list .sp-card__info { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
    .sp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

    .sp-card__img-wrap {
        aspect-ratio: 16 / 11;
    }

    .sp-card__name {
        min-height: 0;
        font-size: .95rem;
    }
}

/* ============================================================
   TRACK ORDER  (tr-*)
   ============================================================ */

.tr-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.tr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(229,57,53,.10) 0%, transparent 70%);
  pointer-events: none;
}
.tr-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.tr-hero__copy { flex: 1; }
.tr-hero__icon-wrap { flex-shrink: 0; color: #fff; }
.tr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.tr-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.tr-breadcrumb a:hover { color: var(--clr-primary); }
.tr-breadcrumb svg { color: rgba(255,255,255,.35); }
.tr-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tr-hero__sub {
  font-size: .97rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}

/* layout */
.tr-section { padding: 56px 0 72px; background: #f8f9fb; }
.tr-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .tr-layout { grid-template-columns: 1fr; }
  .tr-hero__icon-wrap { display: none; }
}

/* form card */
.tr-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.tr-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.tr-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.tr-card__sub { font-size: .9rem; color: #64748b; margin: 0 0 28px; }
.tr-form__group { margin-bottom: 18px; }
.tr-form__label { display: block; font-size: .85rem; font-weight: 600; color: #0f172a; margin-bottom: 7px; }
.tr-required { color: var(--clr-primary); }
.tr-form__input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: .93rem;
  color: #0f172a;
  background: #f8fafc;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.tr-form__input:focus { outline: none; border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(229,57,53,.1); background: #fff; }
.tr-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  margin-top: 4px;
}
.tr-form__submit:hover { opacity: .9; transform: translateY(-1px); }
.tr-card__note { font-size: .82rem; color: #64748b; margin: 18px 0 0; text-align: center; }
.tr-card__note a { color: var(--clr-primary); font-weight: 600; text-decoration: none; }
.tr-card__note a:hover { text-decoration: underline; }

.tr-result{
  margin-top:16px;
  border-radius:12px;
  padding:14px;
  border:1px solid #e2e8f0;
  background:#fff;
}
.tr-result strong{color:#0f172a;}
.tr-result p{margin:6px 0 0;color:#64748b;font-size:.85rem;line-height:1.55;}
.tr-result--error{border-color:#fecaca;background:#fff5f5;}
.tr-result--error strong{color:#b91c1c;}
.tr-result--success{border-color:#c7e4d0;background:#f7fffa;}
.tr-result__head{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:10px;}
.tr-result__head h3{margin:0;font-family:'Oswald',sans-serif;font-size:1rem;letter-spacing:.03em;text-transform:uppercase;color:#0f172a;}
.tr-status{display:inline-flex;padding:4px 9px;border-radius:999px;font-size:.68rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;}
.tr-status--pending,.tr-status--confirmed,.tr-status--processing{background:#fff7ed;color:#c2410c;}
.tr-status--dispatched{background:#eff6ff;color:#1d4ed8;}
.tr-status--delivered{background:#dcfce7;color:#166534;}
.tr-status--cancelled{background:#fef2f2;color:#b91c1c;}
.tr-result__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 12px;}
.tr-result__grid div{display:flex;flex-direction:column;gap:2px;}
.tr-result__grid span{font-size:.72rem;color:#64748b;text-transform:uppercase;letter-spacing:.05em;font-weight:700;}
.tr-result__grid strong{font-size:.87rem;color:#0f172a;line-height:1.4;}
.tr-result__full{grid-column:1 / -1;}
.tr-result__items{margin-top:12px;border-top:1px dashed #dbe4ee;padding-top:10px;display:flex;flex-direction:column;gap:8px;}
.tr-result__item{display:flex;align-items:center;justify-content:space-between;gap:10px;font-size:.84rem;color:#334155;}

/* right column */
.tr-right { display: flex; flex-direction: column; gap: 24px; }

/* timeline */
.tr-timeline {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.tr-timeline__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  text-transform: uppercase;
  margin: 0 0 24px;
  letter-spacing: .4px;
}
.tr-steps { display: flex; flex-direction: column; }
.tr-step { display: grid; grid-template-columns: 32px 1px 1fr; gap: 0 14px; }
.tr-step--last { grid-template-columns: 32px 1fr; }
.tr-step__dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.tr-step--done .tr-step__dot {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
}
.tr-step__dot--green {
  background: linear-gradient(135deg, #16a34a, #15803d) !important;
  color: #fff !important;
}
.tr-step__line { width: 1px; background: #e2e8f0; margin: 4px auto 0; }
.tr-step__copy { padding-bottom: 22px; padding-top: 5px; }
.tr-step--last .tr-step__copy { grid-column: 2; padding-bottom: 0; }
.tr-step__copy h4 { font-size: .88rem; font-weight: 700; color: #0f172a; margin: 0 0 3px; }
.tr-step__copy p { font-size: .82rem; color: #64748b; margin: 0; }

/* WhatsApp card */
.tr-wa-card {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 500px) { .tr-wa-card { flex-wrap: wrap; } }

@media (max-width: 620px) {
  .tr-result__grid { grid-template-columns: 1fr; }
}
.tr-wa-card__icon { color: #25d366; flex-shrink: 0; }
.tr-wa-card__copy { flex: 1; }
.tr-wa-card__copy h4 { font-size: .95rem; font-weight: 700; color: #fff; margin: 0 0 4px; }
.tr-wa-card__copy p { font-size: .83rem; color: rgba(255,255,255,.65); margin: 0; }
.tr-wa-card__btn {
  flex-shrink: 0;
  padding: 10px 18px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.tr-wa-card__btn:hover { background: #1ebe59; }


/* ============================================================
   BLOG  (bl-*)
   ============================================================ */

.bl-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.bl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(229,57,53,.10) 0%, transparent 70%);
  pointer-events: none;
}
.bl-hero__inner { display: flex; flex-direction: column; gap: 8px; }
.bl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.bl-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.bl-breadcrumb a:hover { color: var(--clr-primary); }
.bl-breadcrumb svg { color: rgba(255,255,255,.35); }
.bl-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bl-hero__sub { font-size: .97rem; color: rgba(255,255,255,.7); margin: 0; }

/* layout */
.bl-section { padding: 56px 0 80px; background: #f8f9fb; }
.bl-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 960px) { .bl-layout { grid-template-columns: 1fr; } }

/* post grid */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) { .bl-grid { grid-template-columns: 1fr; } }

/* card */
.bl-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.bl-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); transform: translateY(-3px); }
.bl-card--featured { grid-column: 1 / -1; flex-direction: row; }
@media (max-width: 640px) { .bl-card--featured { flex-direction: column; } }

.bl-card__img-wrap { position: relative; overflow: hidden; display: block; flex-shrink: 0; }
.bl-card__img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.bl-card--featured .bl-card__img-wrap img { height: 260px; }
.bl-card--featured .bl-card__img-wrap { width: 45%; }
@media (max-width: 640px) { .bl-card--featured .bl-card__img-wrap { width: 100%; } }
.bl-card:hover .bl-card__img-wrap img { transform: scale(1.04); }

.bl-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--clr-primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.bl-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bl-card__meta { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: #94a3b8; margin-bottom: 10px; }
.bl-card__meta-item { display: flex; align-items: center; gap: 4px; }
.bl-card__meta-sep { color: #cbd5e1; }
.bl-card__title { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600; color: #0f172a; margin: 0 0 10px; text-transform: uppercase; letter-spacing: .2px; line-height: 1.3; }
.bl-card__title a { text-decoration: none; color: inherit; transition: color .2s; }
.bl-card__title a:hover { color: var(--clr-primary); }
.bl-card--featured .bl-card__title { font-size: 1.25rem; }
.bl-card__excerpt { font-size: .87rem; color: #475569; margin: 0 0 16px; line-height: 1.6; flex: 1; }
.bl-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--clr-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: gap .2s;
}
.bl-card__read-more:hover { gap: 10px; }

/* sidebar */
.bl-sidebar { display: flex; flex-direction: column; gap: 20px; }
.bl-widget {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.bl-widget__title {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--clr-primary);
  letter-spacing: .4px;
}

/* search */
.bl-search { display: flex; gap: 0; }
.bl-search__input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid #e2e8f0;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: .88rem;
  color: #0f172a;
  background: #f8fafc;
}
.bl-search__input:focus { outline: none; border-color: var(--clr-primary); }
.bl-search__btn {
  padding: 9px 14px;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background .2s;
}
.bl-search__btn:hover { background: var(--clr-primary-dark); }

/* categories */
.bl-categories { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.bl-categories li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: .87rem;
  color: #334155;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.bl-categories li a:hover { background: #fef2f2; color: var(--clr-primary); }
.bl-categories li a span {
  background: #f1f5f9;
  color: #64748b;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 1px 8px;
}

/* recent posts */
.bl-recent { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.bl-recent__item { display: flex; gap: 12px; align-items: center; }
.bl-recent__img { flex-shrink: 0; width: 58px; height: 52px; border-radius: 8px; overflow: hidden; display: block; }
.bl-recent__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bl-recent__copy { flex: 1; }
.bl-recent__title { display: block; font-size: .83rem; font-weight: 600; color: #0f172a; text-decoration: none; line-height: 1.35; margin-bottom: 3px; transition: color .2s; }
.bl-recent__title:hover { color: var(--clr-primary); }
.bl-recent__date { font-size: .75rem; color: #94a3b8; }

/* cta widget */
.bl-widget--cta { background: linear-gradient(135deg, #0f172a, #1e3a5f); text-align: center; }
.bl-widget--cta .bl-widget__title { color: rgba(255,255,255,.6); border-bottom-color: rgba(255,255,255,.15); }
.bl-widget__cta-icon { color: var(--clr-primary); margin-bottom: 12px; }
.bl-widget--cta h4 { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600; color: #fff; margin: 0 0 8px; text-transform: uppercase; }
.bl-widget--cta p { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0 0 16px; }
.bl-widget__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--clr-primary);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: background .2s;
}
.bl-widget__cta-btn:hover { background: var(--clr-primary-dark); }

/* newsletter widget */
.bl-widget--newsletter {}
.bl-widget--newsletter p { font-size: .85rem; color: #64748b; margin: 0 0 14px; }
.bl-newsletter { display: flex; flex-direction: column; gap: 8px; }
.bl-newsletter__input {
  padding: 9px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: .88rem;
  color: #0f172a;
  background: #f8fafc;
}
.bl-newsletter__input:focus { outline: none; border-color: var(--clr-primary); }
.bl-newsletter__btn {
  padding: 10px;
  background: var(--clr-primary);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: background .2s;
}
.bl-newsletter__btn:hover { background: var(--clr-primary-dark); }

/* home page (hm-*) additions */
.hm-hero { position: relative; background: linear-gradient(135deg, var(--clr-hero-from) 0%, var(--clr-hero-to) 60%, var(--clr-hero-from) 100%); min-height: 560px; display: flex; flex-direction: column; overflow: hidden; }
.hm-slide { display: none; flex: 1; position: relative; min-height: 560px; }
.hm-slide--active { display: flex; }
.hm-slide__media-wrap { position: absolute; inset: 0; z-index: 1; }
.hm-slide__bg-media { width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-slide__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(2,6,23,.78) 0%, rgba(2,6,23,.58) 45%, rgba(2,6,23,.42) 100%); pointer-events: none; }
.hm-slide__inner { position: relative; z-index: 3; width: min(1200px, calc(100% - 2rem)); margin: 0 auto; min-height: 560px; display: flex; align-items: center; justify-content: flex-start; }
.hm-slide__copy { max-width: 640px; }
.hm-slide__eyebrow { font-size: .8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--clr-primary); margin: 0 0 14px; }
.hm-slide__title { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; color: #fff; margin: 0 0 16px; line-height: 1.1; text-transform: uppercase; }
.hm-slide__text { font-size: .97rem; color: rgba(255,255,255,.72); margin: 0 0 28px; line-height: 1.7; }
.hm-slide__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hm-slide__btn { display: inline-flex; align-items: center; padding: 13px 28px; border-radius: 8px; font-weight: 700; font-size: .9rem; text-decoration: none; text-transform: uppercase; letter-spacing: .4px; transition: opacity .2s, transform .15s; }
.hm-slide__btn--red { background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark)); color: #fff; }
.hm-slide__btn--ghost { border: 2px solid rgba(255,255,255,.4); color: #fff; }
.hm-slide__btn:hover { opacity: .88; transform: translateY(-1px); }
@media (max-width: 900px) { .hm-slide__inner { min-height: 500px; } .hm-slide { min-height: 500px; } .hm-hero { min-height: 500px; } }

.hm-hero__dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hm-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.hm-dot--active { background: var(--clr-primary); transform: scale(1.25); }

.hm-hero__wa { position: absolute; bottom: 20px; right: 24px; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.8); border-radius: 24px; padding: 7px 14px; font-size: .78rem; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 7px; transition: background .2s; }
.hm-hero__wa:hover { background: rgba(37,211,102,.2); color: #25d366; }
@media (max-width: 600px) { .hm-hero__wa { display: none; } }

/* trust strip */
.hm-trust { background: #0f172a; border-bottom: 1px solid rgba(255,255,255,.07); }
.hm-trust__inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; padding: 14px 0; }
.hm-trust__item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); font-size: .8rem; font-weight: 500; padding: 8px 20px; }
.hm-trust__icon { color: var(--clr-primary); flex-shrink: 0; }
.hm-trust__divider { width: 1px; height: 24px; background: rgba(255,255,255,.12); flex-shrink: 0; }
@media (max-width: 700px) { .hm-trust__divider { display: none; } .hm-trust__item { flex: 0 1 50%; } }

/* products section */
.hm-products { padding: 72px 0 64px; background: #f8f9fb; }
.hm-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; gap: 16px; flex-wrap: wrap; }
.hm-section-head--center { flex-direction: column; align-items: center; text-align: center; }
.hm-eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--clr-primary); margin: 0 0 8px; }
.hm-heading { font-family: 'Oswald', sans-serif; font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 700; color: #0f172a; margin: 0; text-transform: uppercase; }
.hm-section-link { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--clr-primary); text-decoration: none; text-transform: uppercase; letter-spacing: .3px; white-space: nowrap; transition: gap .2s; }
.hm-section-link:hover { gap: 10px; }
.hm-products__cta { text-align: center; margin-top: 36px; }
.hm-products__view-all { display: inline-flex; align-items: center; gap: 8px; padding: 13px 32px; background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark)); color: #fff; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; border-radius: 8px; text-decoration: none; transition: opacity .2s, transform .15s; }
.hm-products__view-all:hover { opacity: .9; transform: translateY(-1px); }

/* why choose us */
.hm-features { padding: 72px 0; background: #fff; }
.hm-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 900px) { .hm-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hm-features__grid { grid-template-columns: 1fr; } }
.hm-feature { padding: 28px 24px; border-radius: 14px; border: 1px solid #e2e8f0; background: #f8f9fb; transition: box-shadow .25s, transform .25s; }
.hm-feature:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); transform: translateY(-3px); }
.hm-feature__icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hm-feature__icon--red { background: #fef2f2; color: var(--clr-primary); }
.hm-feature__icon--blue { background: #eff6ff; color: #2563eb; }
.hm-feature__icon--green { background: #f0fdf4; color: #16a34a; }
.hm-feature__icon--orange { background: #fff7ed; color: #ea580c; }
.hm-feature__icon--purple { background: #faf5ff; color: #7c3aed; }
.hm-feature__icon--teal { background: #f0fdfa; color: #0d9488; }
.hm-feature h3 { font-family: 'Oswald', sans-serif; font-size: .95rem; font-weight: 600; color: #0f172a; text-transform: uppercase; margin: 0 0 8px; }
.hm-feature p { font-size: .85rem; color: #64748b; margin: 0; line-height: 1.6; }

/* about */
.hm-about { padding: 80px 0; background: #f8f9fb; }
.hm-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .hm-about__inner { grid-template-columns: 1fr; } }
.hm-about__image { position: relative; }
.hm-about__image img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.hm-about__img-accent { position: absolute; bottom: -16px; right: -16px; width: 60%; height: 60%; border: 4px solid var(--clr-primary); border-radius: 16px; z-index: -1; }
.hm-about__badge { position: absolute; bottom: 20px; left: -16px; background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark)); color: #fff; border-radius: 14px; padding: 14px 18px; text-align: center; box-shadow: 0 6px 20px rgba(229,57,53,.35); }
.hm-about__badge-num { display: block; font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.hm-about__badge-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; opacity: .85; line-height: 1.3; }
.hm-about__copy {}
.hm-about__welcome { font-weight: 700; color: #0f172a; margin: 0 0 10px; font-size: .95rem; }
.hm-about__copy p { font-size: .92rem; color: #475569; margin: 0 0 14px; line-height: 1.7; }
.hm-about__checks { list-style: none; margin: 18px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hm-about__checks li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: #334155; font-weight: 500; }
.hm-about__checks svg { color: #16a34a; flex-shrink: 0; }
.hm-about__btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark)); color: #fff; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .4px; border-radius: 8px; text-decoration: none; transition: opacity .2s, transform .15s; }
.hm-about__btn:hover { opacity: .9; transform: translateY(-1px); }

/* stats strip */
.hm-stats { background: linear-gradient(135deg, #0f172a, #1e3a5f); padding: 56px 0; }
.hm-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
@media (max-width: 700px) { .hm-stats__grid { grid-template-columns: repeat(2, 1fr); } }
.hm-stat {}
.hm-stat__num { font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 700; color: #fff; }
.hm-stat__suf { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--clr-primary); }
.hm-stat__label { display: block; font-size: .82rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .8px; margin-top: 4px; }

/* CTA banner */
.hm-cta { background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark)); padding: 56px 0; }
.hm-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hm-cta__copy h2 { font-family: 'Oswald', sans-serif; font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; color: #fff; margin: 0 0 6px; text-transform: uppercase; }
.hm-cta__copy p { font-size: .92rem; color: rgba(255,255,255,.8); margin: 0; }
.hm-cta__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hm-cta__btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 8px; font-weight: 700; font-size: .9rem; text-decoration: none; text-transform: uppercase; letter-spacing: .4px; transition: opacity .2s, transform .15s; }
.hm-cta__btn--red { background: #fff; color: var(--clr-primary); }
.hm-cta__btn--wa { background: #25d366; color: #fff; }
.hm-cta__btn:hover { opacity: .9; transform: translateY(-1px); }

/* ============================================================
   PRODUCT DETAIL  (pd-*)
   ============================================================ */

/* breadcrumb bar */
.pd-breadbar {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
}
.pd-breadbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: #64748b;
  flex-wrap: wrap;
}
.pd-breadcrumb a { color: #475569; text-decoration: none; font-weight: 500; transition: color .2s; }
.pd-breadcrumb a:hover { color: var(--clr-primary); }
.pd-breadcrumb svg { color: #cbd5e1; }
.pd-breadcrumb span { color: #0f172a; font-weight: 600; }
.pd-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  padding: 5px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 7px;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.pd-nav-btn:hover { border-color: var(--clr-primary); color: var(--clr-primary); }

/* main section */
.pd-section { padding: 40px 0 60px; background: #fff; }
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Gallery ── */
.pd-gallery { position: sticky; top: 80px; }
.pd-gallery__main {
  position: relative;
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
}
.pd-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
  transition: transform .4s ease;
}
.pd-gallery__main:hover .pd-gallery__main-img { transform: scale(1.03); }
.pd-gallery__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pd-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.pd-badge--stock { background: #dcfce7; color: #16a34a; }
.pd-badge--uv    { background: #fef9c3; color: #a16207; }
.pd-gallery__zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.9);
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background .2s, color .2s;
}
.pd-gallery__zoom:hover { background: var(--clr-primary); color: #fff; }

/* thumbnails */
.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.pd-thumb {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  padding: 0;
  cursor: pointer;
  transition: border-color .2s;
  flex-shrink: 0;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; box-sizing: border-box; }
.pd-thumb--active { border-color: var(--clr-primary); }
.pd-thumb:hover { border-color: var(--clr-primary); }

/* trust strip under gallery */
.pd-trust-strip {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  flex-wrap: wrap;
}
.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: #475569;
  font-weight: 500;
  flex: 1;
  min-width: 130px;
}
.pd-trust-item svg { color: var(--clr-primary); flex-shrink: 0; }

/* ── Product info ── */
.pd-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin: 0 0 10px;
}
.pd-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.1;
}
.pd-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.pd-stars { display: flex; gap: 2px; }
.pd-rating-count { font-size: .82rem; color: #64748b; }
.pd-rating-sep { color: #cbd5e1; }
.pd-sku { font-size: .78rem; color: #94a3b8; font-family: monospace; }
.pd-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.pd-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1;
}
.pd-vat { font-size: .78rem; color: #94a3b8; }
.pd-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.pd-stock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
  flex-shrink: 0;
}
.pd-stock__label { font-size: .85rem; font-weight: 600; color: #16a34a; }
.pd-short-desc { font-size: .92rem; color: #475569; line-height: 1.7; margin: 0 0 20px; }

/* specs mini-table */
.pd-specs-table {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
}
.pd-spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid #f1f5f9;
}
.pd-spec-row:last-child { border-bottom: none; }
.pd-spec-key {
  padding: 9px 14px;
  font-size: .8rem;
  font-weight: 700;
  color: #0f172a;
  background: #f8fafc;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.pd-spec-val {
  padding: 9px 14px;
  font-size: .82rem;
  color: #475569;
  background: #fff;
}

/* option groups */
.pd-option-group { margin-bottom: 18px; }
.pd-option-label { display: block; font-size: .82rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .4px; }
.pd-option-label strong { color: var(--clr-primary); font-weight: 700; }

/* swatches */
.pd-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  padding: 0;
}
.pd-swatch:hover { transform: scale(1.18); box-shadow: 0 0 0 3px rgba(229,57,53,.25); }
.pd-swatch--active { border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(229,57,53,.2); }

/* profile option buttons */
.pd-opt-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-opt-btn {
  padding: 7px 18px;
  border-radius: 7px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.pd-opt-btn:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.pd-opt-btn--active { border-color: var(--clr-primary); background: #fef2f2; color: var(--clr-primary); }

/* qty + ATC */
.pd-cart-form { margin-bottom: 12px; }
.pd-buy-row { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.pd-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.pd-qty__btn {
  width: 38px;
  height: 48px;
  border: none;
  background: #f8fafc;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pd-qty__btn:hover { background: #fef2f2; color: var(--clr-primary); }
.pd-qty__input {
  width: 52px;
  height: 48px;
  border: none;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  background: #fff;
  -moz-appearance: textfield;
}
.pd-qty__input::-webkit-outer-spin-button,
.pd-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pd-qty__input:focus { outline: none; }

.pd-atc-btn {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 48px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.pd-atc-btn:hover { opacity: .9; transform: translateY(-1px); }

/* WhatsApp buy button */
.pd-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 18px;
  transition: background .2s, transform .15s;
}
.pd-wa-btn:hover { background: #1ebe59; transform: translateY(-1px); }

/* meta row */
.pd-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: #64748b;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.pd-meta-item { display: flex; align-items: center; gap: 6px; }
.pd-meta-item strong { color: #0f172a; }
.pd-meta-item a { color: var(--clr-primary); text-decoration: none; }
.pd-meta-sep { color: #cbd5e1; }
.pd-share-icon { color: #94a3b8; transition: color .2s; display: flex; align-items: center; }
.pd-share-icon:hover { color: var(--clr-primary); }

/* ── Tabs section ── */
.pd-tabs-section { background: #f8f9fb; padding: 48px 0 64px; border-top: 1px solid #e2e8f0; }
.pd-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 36px;
}
.pd-tab-btn {
  padding: 12px 28px;
  border: none;
  background: none;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #94a3b8;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.pd-tab-btn:hover { color: #0f172a; }
.pd-tab-btn--active { color: var(--clr-primary); border-bottom-color: var(--clr-primary); }

.pd-tab-panel { display: none; }
.pd-tab-panel--active { display: block; }

/* description panel */
.pd-tab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 860px) { .pd-tab-inner { grid-template-columns: 1fr; } }
.pd-desc-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0 0 16px;
  letter-spacing: .3px;
}
.pd-desc-col p { font-size: .9rem; color: #475569; line-height: 1.75; margin: 0 0 14px; }
.pd-desc-checklist { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pd-desc-checklist li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: #334155; font-weight: 500; }
.pd-desc-checklist svg { color: #16a34a; flex-shrink: 0; }

.pd-use-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 14px 0 20px; }
.pd-use-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: .83rem;
  font-weight: 600;
  color: #334155;
}
.pd-use-card svg { color: var(--clr-primary); flex-shrink: 0; }

.pd-delivery-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  border-radius: 12px;
  margin-top: 6px;
}
.pd-delivery-card__icon { color: var(--clr-primary); flex-shrink: 0; }
.pd-delivery-card h4 { font-size: .9rem; font-weight: 700; color: #fff; margin: 0 0 4px; }
.pd-delivery-card p { font-size: .82rem; color: rgba(255,255,255,.65); margin: 0; }

/* specs full table */
.pd-specs-full { overflow-x: auto; }
.pd-spec-tbl { width: 100%; border-collapse: collapse; font-size: .88rem; }
.pd-spec-tbl th, .pd-spec-tbl td { padding: 11px 16px; text-align: left; border-bottom: 1px solid #f1f5f9; }
.pd-spec-tbl th { background: #f8fafc; color: #0f172a; font-weight: 700; width: 220px; text-transform: uppercase; font-size: .78rem; letter-spacing: .4px; }
.pd-spec-tbl td { background: #fff; color: #475569; }
.pd-spec-tbl tr:last-child th,
.pd-spec-tbl tr:last-child td { border-bottom: none; }

/* enquiry */
.pd-enquiry-wrap { max-width: 660px; }
.pd-enquiry-intro h3 { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; color: #0f172a; margin: 0 0 8px; }
.pd-enquiry-intro p { font-size: .9rem; color: #64748b; margin: 0 0 28px; }
.pd-eq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .pd-eq-row { grid-template-columns: 1fr; } }
.pd-eq-group { margin-bottom: 16px; }
.pd-eq-label { display: block; font-size: .83rem; font-weight: 700; color: #0f172a; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .3px; }
.pd-eq-label span { color: var(--clr-primary); }
.pd-eq-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: .9rem;
  color: #0f172a;
  background: #fff;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.pd-eq-input:focus { outline: none; border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(229,57,53,.1); }
.pd-eq-textarea { resize: vertical; min-height: 110px; }
.pd-eq-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pd-eq-submit {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.pd-eq-submit:hover { opacity: .9; transform: translateY(-1px); }
.pd-eq-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: background .2s;
}
.pd-eq-wa:hover { background: #1ebe59; }

/* related products section */
.pd-related { padding: 60px 0 80px; background: #fff; }
.pd-related .hm-section-head { margin-bottom: 32px; }

/* lightbox */
.pd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.pd-lightbox--open { opacity: 1; pointer-events: all; }
.pd-lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.pd-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pd-lightbox__close:hover { background: var(--clr-primary); }

@media (max-width: 640px) {
  .pd-breadbar {
    padding: 12px 0;
  }

  .pd-breadbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pd-breadbar__nav,
  .pd-nav-btn {
    width: 100%;
  }

  .pd-nav-btn {
    justify-content: center;
    padding: 10px 14px;
  }

  .pd-section {
    padding: 24px 0 40px;
  }

  .pd-gallery {
    position: static;
    top: auto;
  }

  .pd-gallery__main {
    border-radius: 14px;
  }

  .pd-gallery__main-img {
    padding: 16px;
  }

  .pd-gallery__badges {
    top: 10px;
    left: 10px;
    right: 52px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pd-badge {
    font-size: .64rem;
    padding: 4px 8px;
  }

  .pd-thumbs {
    overflow-x: auto;
    padding-bottom: 4px;
    margin-right: -4px;
  }

  .pd-thumb {
    width: 68px;
    height: 68px;
  }

  .pd-trust-strip {
    gap: 12px;
    padding: 12px;
  }

  .pd-trust-item {
    flex: 1 1 100%;
    min-width: 0;
  }

  .pd-title {
    font-size: 1.9rem;
  }

  .pd-price-row {
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .pd-price {
    font-size: 1.7rem;
  }

  .pd-stock {
    align-items: flex-start;
  }

  .pd-spec-row {
    grid-template-columns: 1fr;
  }

  .pd-spec-key,
  .pd-spec-val {
    padding: 10px 12px;
  }

  .pd-spec-key {
    border-bottom: 1px solid #f1f5f9;
  }

  .pd-opt-btns {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pd-opt-btn {
    width: 100%;
    text-align: center;
  }

  .pd-buy-row {
    flex-direction: column;
  }

  .pd-qty,
  .pd-atc-btn {
    width: 100%;
  }

  .pd-qty {
    justify-content: space-between;
  }

  .pd-qty__btn {
    width: 52px;
  }

  .pd-qty__input {
    flex: 1;
    width: auto;
  }

  .pd-meta-row {
    align-items: flex-start;
    gap: 10px;
  }

  .pd-meta-sep {
    display: none;
  }

  .pd-meta-item {
    flex-wrap: wrap;
  }

  .pd-tabs-section {
    padding: 36px 0 48px;
  }

  .pd-tabs-nav {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -16px 24px;
    padding: 0 16px;
    scrollbar-width: thin;
  }

  .pd-tab-btn {
    flex: 0 0 auto;
    padding: 12px 18px;
    white-space: nowrap;
  }

  .pd-tab-inner {
    gap: 28px;
  }

  .pd-use-cards {
    grid-template-columns: 1fr;
  }

  .pd-delivery-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }

  .pd-spec-tbl th,
  .pd-spec-tbl td {
    padding: 10px 12px;
  }

  .pd-spec-tbl th {
    width: 150px;
  }

  .pd-eq-actions {
    flex-direction: column;
  }

  .pd-eq-submit,
  .pd-eq-wa {
    width: 100%;
    justify-content: center;
  }

  .pd-related {
    padding: 44px 0 56px;
  }

  .pd-lightbox__close {
    top: 12px;
    right: 12px;
  }
}

/* ============================================================
   AJAX ADD-TO-CART  (atc-*)
   ============================================================ */

/* toast notification */
.atc-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0f172a;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.atc-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.atc-toast--success { background: #0f172a; border-left: 4px solid #16a34a; }
.atc-toast--error   { background: #7f1d1d; border-left: 4px solid var(--clr-primary); }

/* cart button bounce */
@keyframes atc-bounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.28); }
  70%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}
.atc-cart-bounce { animation: atc-bounce .45s ease; }

/* spinner inside button */
@keyframes atc-spin {
  to { transform: rotate(360deg); }
}
.atc-spinner {
  animation: atc-spin .7s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

/* "added" state flash on ATC button */
.sp-card__atc.atc-added,
.pd-atc-btn.atc-added {
  background: linear-gradient(135deg, #16a34a, #15803d) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   CART PAGE  (pct-*)
   ═══════════════════════════════════════════════════════════════════ */

/* Hero */
.pct-hero{background:#0f172a;padding:3rem 0 2.25rem;}
.pct-hero__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
.pct-hero__title{font-family:'Oswald',sans-serif;font-size:2rem;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.04em;margin:0 0 .5rem;}
.pct-hero__meta{display:flex;align-items:center;gap:.75rem;}
.pct-hero__count{display:inline-flex;align-items:center;gap:.4rem;font-size:.875rem;color:#94a3b8;font-weight:500;}
.pct-hero__count svg{flex-shrink:0;}

/* Flash bar */
.roto-flash-bar{background:#16a34a;color:#fff;font-size:.875rem;font-weight:500;padding:.65rem 0;text-align:center;}

/* Section */
.pct-section{padding:2.5rem 0 4rem;}

/* Empty state */
.pct-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:5rem 1rem;text-align:center;max-width:480px;margin:0 auto;}
.pct-empty__icon{color:#cbd5e1;margin-bottom:1.5rem;}
.pct-empty__title{font-family:'Oswald',sans-serif;font-size:1.5rem;font-weight:600;color:#1e293b;margin:0 0 .75rem;text-transform:uppercase;}
.pct-empty__text{color:#64748b;font-size:.9375rem;margin:0 0 2rem;line-height:1.6;}
.pct-empty__btn{display:inline-flex;align-items:center;gap:.5rem;background:#dc2626;color:#fff;font-weight:600;font-size:.875rem;padding:.75rem 1.5rem;border-radius:.375rem;text-decoration:none;transition:background .2s;}
.pct-empty__btn:hover{background:#b91c1c;}

/* Layout: 2-col on desktop */
.pct-layout{display:grid;grid-template-columns:1fr 340px;gap:2rem;align-items:start;}
@media(max-width:900px){.pct-layout{grid-template-columns:1fr;}}

/* Table head (desktop only) */
.pct-table-head{display:grid;grid-template-columns:1fr 120px 130px 120px 40px;gap:.5rem;padding:.5rem 1rem .75rem;border-bottom:2px solid #e2e8f0;margin-bottom:.25rem;}
.pct-th{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:#94a3b8;}
.pct-th--product{/* wider */}
.pct-th--rm{text-align:right;}
@media(max-width:700px){.pct-table-head{display:none;}}

/* Cart row */
.pct-row{display:grid;grid-template-columns:1fr 120px 130px 120px 40px;gap:.5rem;align-items:center;padding:1.25rem 1rem;background:#fff;border:1px solid #e2e8f0;border-radius:.5rem;margin-bottom:.75rem;transition:box-shadow .2s;}
.pct-row:hover{box-shadow:0 4px 16px rgba(0,0,0,.07);}
@media(max-width:700px){
  .pct-row{grid-template-columns:1fr auto;grid-template-rows:auto auto auto;gap:.75rem;}
  .pct-row__price,.pct-row__qty,.pct-row__sub{grid-column:1;font-size:.875rem;}
  .pct-row__rm{grid-column:2;grid-row:1;}
}

/* Product info */
.pct-row__product{display:flex;align-items:center;gap:.875rem;min-width:0;}
.pct-row__img-wrap{flex-shrink:0;width:72px;height:72px;background:#f1f5f9;border-radius:.375rem;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.pct-row__img-wrap img{width:100%;height:100%;object-fit:contain;padding:4px;}
.pct-row__info{min-width:0;}
.pct-row__name{font-weight:600;font-size:.9375rem;color:#1e293b;text-decoration:none;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.pct-row__name:hover{color:#dc2626;}
.pct-row__cap{display:block;font-size:.8125rem;color:#64748b;margin-top:.15rem;}
.pct-row__usage{display:block;font-size:.75rem;color:#94a3b8;margin-top:.1rem;}

/* Responsive data-label */
@media(max-width:700px){
  .pct-row__price::before{content:attr(data-label) ': ';font-weight:600;color:#64748b;}
  .pct-row__sub::before{content:attr(data-label) ': ';font-weight:600;color:#64748b;}
}

/* Price / subtotal cells */
.pct-row__price,.pct-row__sub{font-size:.9375rem;color:#1e293b;font-weight:500;}
.pct-row__sub{font-weight:700;color:#0f172a;}

/* Qty stepper */
.pct-qty{display:inline-flex;align-items:center;border:1.5px solid #e2e8f0;border-radius:.375rem;overflow:hidden;background:#f8fafc;}
.pct-qty__btn{background:none;border:none;cursor:pointer;padding:.45rem .6rem;color:#475569;transition:background .15s,color .15s;display:flex;align-items:center;justify-content:center;}
.pct-qty__btn:hover{background:#f1f5f9;color:#dc2626;}
.pct-qty__input{width:42px;border:none;border-left:1.5px solid #e2e8f0;border-right:1.5px solid #e2e8f0;text-align:center;font-size:.875rem;font-weight:600;color:#1e293b;background:#fff;padding:.45rem 0;-moz-appearance:textfield;}
.pct-qty__input::-webkit-inner-spin-button,.pct-qty__input::-webkit-outer-spin-button{-webkit-appearance:none;}
.pct-qty__input:focus{outline:2px solid #dc2626;outline-offset:-2px;}

/* Remove btn */
.pct-row__rm{display:flex;justify-content:flex-end;}
.pct-remove-btn{background:none;border:none;cursor:pointer;color:#94a3b8;padding:.35rem;border-radius:.25rem;transition:color .15s,background .15s;display:flex;align-items:center;justify-content:center;}
.pct-remove-btn:hover{color:#dc2626;background:#fff1f1;}

/* Actions bar below items */
.pct-actions-bar{display:flex;align-items:center;justify-content:space-between;margin-top:.5rem;padding:.75rem 0;}
.pct-ghost-btn{display:inline-flex;align-items:center;gap:.4rem;font-size:.875rem;font-weight:600;color:#475569;border:1.5px solid #e2e8f0;padding:.55rem 1.1rem;border-radius:.375rem;text-decoration:none;transition:border-color .2s,color .2s;}
.pct-ghost-btn:hover{border-color:#dc2626;color:#dc2626;}
.pct-actions-right{display:flex;align-items:center;gap:.75rem;}
.pct-saving-notice{display:none;align-items:center;gap:.4rem;font-size:.8125rem;color:#64748b;}
.pct-saving-dot{width:8px;height:8px;border-radius:50%;background:#dc2626;animation:pct-pulse 1s ease-in-out infinite;}
@keyframes pct-pulse{0%,100%{opacity:1;}50%{opacity:.35;}}

/* Trust strip */
.pct-trust-strip{display:flex;flex-wrap:wrap;gap:1rem 2rem;padding:1.25rem 1.25rem;background:#f8fafc;border:1px solid #e2e8f0;border-radius:.5rem;margin-top:1.25rem;}
.pct-trust-item{display:flex;align-items:center;gap:.5rem;font-size:.8125rem;font-weight:500;color:#475569;}
.pct-trust-item svg{flex-shrink:0;color:#dc2626;}

/* Order summary sidebar */
.pct-summary{position:sticky;top:1.5rem;}
.pct-summary__inner{background:#fff;border:1px solid #e2e8f0;border-radius:.625rem;padding:1.5rem;box-shadow:0 2px 8px rgba(0,0,0,.06);}
.pct-summary__title{font-family:'Oswald',sans-serif;font-size:1.125rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#0f172a;margin:0 0 1.25rem;padding-bottom:.875rem;border-bottom:2px solid #f1f5f9;}
.pct-summary__rows{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.25rem;}
.pct-summary__row{display:flex;justify-content:space-between;align-items:baseline;font-size:.9rem;color:#475569;}
.pct-summary__row--delivery span:first-child{color:#475569;}
.pct-delivery-note{font-size:.8125rem;color:#94a3b8;font-style:italic;}
.pct-summary__total{display:flex;justify-content:space-between;align-items:baseline;font-size:1.0625rem;font-weight:700;color:#0f172a;border-top:2px solid #f1f5f9;padding-top:1rem;margin-bottom:1.25rem;}
.pct-checkout-btn{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;background:#dc2626;color:#fff;font-weight:700;font-size:.9375rem;padding:.875rem;border-radius:.5rem;text-decoration:none;margin-bottom:.75rem;transition:background .2s,transform .15s;}
.pct-checkout-btn:hover{background:#b91c1c;transform:translateY(-1px);}
.pct-wa-btn{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;background:#16a34a;color:#fff;font-weight:600;font-size:.875rem;padding:.75rem;border-radius:.5rem;text-decoration:none;margin-bottom:1rem;transition:background .2s;}
.pct-wa-btn:hover{background:#15803d;}
.pct-summary__secure{display:flex;align-items:center;justify-content:center;gap:.35rem;font-size:.75rem;color:#94a3b8;margin-bottom:.875rem;}
.pct-payment-icons{display:flex;gap:.5rem;flex-wrap:wrap;}
.pct-pay-icon{font-size:.6875rem;font-weight:700;letter-spacing:.04em;color:#64748b;background:#f1f5f9;border:1px solid #e2e8f0;border-radius:.25rem;padding:.2rem .45rem;}


/* ═══════════════════════════════════════════════════════════════════
   AUTH PAGES  (auth-*)
   ═══════════════════════════════════════════════════════════════════ */

.auth-section{padding:4rem 0 5rem;min-height:60vh;display:flex;align-items:center;}
.auth-card{background:#fff;border:1px solid #e2e8f0;border-radius:.75rem;padding:2.5rem 2rem;max-width:440px;margin:0 auto;box-shadow:0 4px 24px rgba(0,0,0,.07);}
@media(max-width:480px){.auth-card{padding:1.75rem 1.25rem;}}

.auth-card__header{margin-bottom:1.75rem;text-align:center;}
.auth-card__title{font-family:'Oswald',sans-serif;font-size:1.625rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#0f172a;margin:0 0 .375rem;}
.auth-card__sub{font-size:.9rem;color:#64748b;margin:0;}

.auth-alert{background:#fff1f1;border:1px solid #fecaca;border-radius:.4rem;padding:.75rem 1rem;margin-bottom:1.25rem;}
.auth-alert p{color:#b91c1c;font-size:.875rem;margin:0 0 .25rem;}
.auth-alert p:last-child{margin-bottom:0;}

.auth-field{margin-bottom:1.125rem;}
.auth-label{display:block;font-size:.8125rem;font-weight:600;color:#374151;margin-bottom:.375rem;}
.auth-hint{font-weight:400;color:#94a3b8;}
.auth-input{width:100%;padding:.65rem .875rem;border:1.5px solid #e2e8f0;border-radius:.4rem;font-size:.9375rem;color:#1e293b;background:#fff;transition:border-color .2s,box-shadow .2s;box-sizing:border-box;}
.auth-input:focus{outline:none;border-color:#dc2626;box-shadow:0 0 0 3px rgba(220,38,38,.12);}
.auth-input--err{border-color:#dc2626;}

.auth-pw-wrap{position:relative;}
.auth-pw-wrap .auth-input{padding-right:2.75rem;}
.auth-pw-toggle{position:absolute;right:.65rem;top:50%;transform:translateY(-50%);background:none;border:none;cursor:pointer;color:#94a3b8;padding:.2rem;display:flex;align-items:center;transition:color .15s;}
.auth-pw-toggle:hover{color:#475569;}

.auth-submit{width:100%;background:#dc2626;color:#fff;font-weight:700;font-size:.9375rem;padding:.8rem;border:none;border-radius:.4rem;cursor:pointer;margin-top:.5rem;transition:background .2s,transform .15s;}
.auth-submit:hover{background:#b91c1c;transform:translateY(-1px);}

.auth-card__switch{text-align:center;font-size:.875rem;color:#64748b;margin:1.25rem 0 0;}
.auth-card__switch a{color:#dc2626;font-weight:600;text-decoration:none;}
.auth-card__switch a:hover{text-decoration:underline;}

/* Premium login composition */
.auth-login-page{
  background:
    radial-gradient(circle at 12% 18%, rgba(229,57,53,.08) 0%, transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(30,58,95,.1) 0%, transparent 48%),
    linear-gradient(180deg, #f8fafd 0%, #f2f6fb 100%);
}

.auth-login-wrap{
  display:grid;
  grid-template-columns:minmax(280px,1fr) minmax(360px,460px);
  gap:24px;
  align-items:stretch;
}

.auth-login-spotlight{
  border-radius:16px;
  overflow:hidden;
  border:1px solid #d8e1ec;
  box-shadow:0 10px 30px rgba(15,23,42,.08);
  background:
    linear-gradient(145deg, rgba(15,23,42,.92) 0%, rgba(30,58,95,.9) 54%, rgba(11,18,32,.9) 100%),
    url('../images/kentank-price-promo.jpg') center/cover no-repeat;
  color:#fff;
  position:relative;
}

.auth-login-spotlight::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at 20% 25%, rgba(229,57,53,.24) 0%, transparent 52%);
  pointer-events:none;
}

.auth-login-spotlight__inner{
  position:relative;
  z-index:1;
  padding:34px 34px 30px;
}

.auth-login-spotlight__eyebrow{
  display:inline-flex;
  margin:0 0 14px;
  padding:5px 10px;
  border-radius:999px;
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  color:#fee2e2;
  border:1px solid rgba(254,226,226,.35);
  background:rgba(185,28,28,.25);
}

.auth-login-spotlight h2{
  margin:0 0 10px;
  font-family:'Oswald',sans-serif;
  font-size:clamp(1.45rem,2.6vw,2rem);
  line-height:1.15;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.auth-login-spotlight p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:.95rem;
  line-height:1.7;
}

.auth-login-spotlight__bullets{
  list-style:none;
  margin:18px 0 0;
  padding:0;
  display:grid;
  gap:10px;
}

.auth-login-spotlight__bullets li{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:.88rem;
  color:#f8fafc;
}

.auth-login-spotlight__bullets li::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 3px rgba(34,197,94,.22);
  flex-shrink:0;
}

.auth-card--premium{
  border-radius:16px;
  border:1px solid #dde6f1;
  box-shadow:0 16px 36px rgba(15,23,42,.1);
  background:linear-gradient(180deg,#ffffff 0%,#fdfefe 100%);
}

.auth-card--premium .auth-card__title{
  font-size:1.75rem;
  letter-spacing:.03em;
}

.auth-card--premium .auth-submit{
  border-radius:10px;
  padding:.88rem;
  box-shadow:0 10px 20px rgba(185,28,28,.25);
}

.auth-card--premium .auth-submit:hover{
  box-shadow:0 13px 24px rgba(185,28,28,.3);
}

@media(max-width:980px){
  .auth-login-wrap{grid-template-columns:1fr;gap:16px;}
  .auth-login-spotlight{order:2;}
  .auth-card--premium{order:1;}
}

@media(max-width:640px){
  .auth-login-spotlight{display:none;}
}




/* Footer bottom bar */
.roto-footer-bottom{background:rgba(0,0,0,.25);text-align:center;padding:.75rem 0;font-size:.8125rem;color:var(--clr-footer-text);}
.roto-footer-bottom .roto-container{max-width:1200px;margin:0 auto;padding:0 1rem;}

/* Social icon additions */
.roto-social-wa{background:#25d366 !important;}
.roto-social-tw{background:#000 !important;}


/* ============================================================
   CUSTOMER PORTAL (pp-*)
   ============================================================ */
.pp-main{padding:28px 0 54px;background:linear-gradient(180deg,#f7f9fc 0%,#f1f5f9 100%);} 
.pp-shell{display:grid;grid-template-columns:280px 1fr;gap:22px;align-items:start;}
.pp-side{background:linear-gradient(165deg,#0b1220 0%, #111b30 58%, #0b1220 100%);color:#e2e8f0;border-radius:16px;padding:18px;position:sticky;top:78px;box-shadow:0 16px 34px rgba(2,6,23,.32);border:1px solid rgba(148,163,184,.2);} 
.pp-side__avatar{width:46px;height:46px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--clr-primary),var(--clr-primary-dark));color:#fff;font-family:'Oswald',sans-serif;font-size:1.15rem;letter-spacing:.03em;margin-bottom:10px;}
.pp-side__eyebrow{margin:0 0 6px;font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;color:#93c5fd;font-weight:700;}
.pp-side__head h2{margin:0 0 14px;font-family:'Oswald',sans-serif;font-size:1.2rem;color:#fff;line-height:1.15;}
.pp-side__head p{margin:-8px 0 12px;color:#94a3b8;font-size:.78rem;word-break:break-all;}
.pp-side__status{display:inline-flex;align-items:center;gap:6px;padding:5px 9px;border-radius:999px;background:rgba(34,197,94,.12);color:#bbf7d0;border:1px solid rgba(34,197,94,.28);font-size:.67rem;text-transform:uppercase;letter-spacing:.07em;font-weight:700;margin-bottom:10px;}
.pp-side__status::before{content:'';width:6px;height:6px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 3px rgba(34,197,94,.2);}
.pp-side__nav{display:grid;gap:6px;}
.pp-side__nav a{display:block;padding:10px 11px;border-radius:9px;color:#cbd5e1;font-size:.86rem;font-weight:600;text-decoration:none;border:1px solid transparent;}
.pp-side__nav a:hover{background:rgba(255,255,255,.05);border-color:rgba(148,163,184,.25);color:#fff;}
.pp-side__nav a.is-active{background:rgba(229,57,53,.2);border-color:rgba(229,57,53,.45);color:#fff;}
.pp-content{display:flex;flex-direction:column;gap:16px;}
.pp-head h1{margin:0;font-family:'Oswald',sans-serif;font-size:1.7rem;letter-spacing:.03em;text-transform:uppercase;color:#0f172a;}
.pp-head p{margin:6px 0 0;color:#64748b;font-size:.92rem;}
.pp-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;}
.pp-stat{background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);border:1px solid #dfe7f1;border-radius:14px;padding:14px;box-shadow:0 8px 22px rgba(15,23,42,.06);} 
.pp-stat span{display:block;font-size:.73rem;text-transform:uppercase;letter-spacing:.06em;color:#64748b;font-weight:700;}
.pp-stat strong{display:block;margin-top:7px;font-family:'Oswald',sans-serif;font-size:1.2rem;color:#0f172a;}
.pp-stat small{display:block;margin-top:4px;color:#94a3b8;font-size:.73rem;}
.pp-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:16px;box-shadow:0 6px 24px rgba(15,23,42,.06);} 
.pp-card__head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px;}
.pp-card__head h2{margin:0;font-size:1rem;font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.04em;color:#0f172a;}
.pp-card__head a{font-size:.84rem;color:var(--clr-primary);font-weight:600;text-decoration:none;}
.pp-empty{margin:0;color:#64748b;font-size:.9rem;}
.pp-grid{display:grid;grid-template-columns:1.45fr .9fr;gap:16px;align-items:start;}
.pp-table-wrap{overflow:auto;}
.pp-table{width:100%;border-collapse:collapse;min-width:620px;}
.pp-table th,.pp-table td{padding:10px 9px;border-bottom:1px solid #edf2f7;text-align:left;font-size:.86rem;color:#334155;}
.pp-table th{font-size:.72rem;letter-spacing:.06em;text-transform:uppercase;color:#64748b;font-weight:700;}
.pp-badge{display:inline-flex;padding:3px 8px;border-radius:999px;font-size:.68rem;line-height:1.2;font-weight:700;letter-spacing:.04em;text-transform:uppercase;}
.pp-badge--pending,.pp-badge--confirmed,.pp-badge--processing{background:#fff7ed;color:#c2410c;}
.pp-badge--dispatched{background:#eff6ff;color:#1d4ed8;}
.pp-badge--delivered{background:#dcfce7;color:#166534;}
.pp-badge--cancelled{background:#fef2f2;color:#b91c1c;}
.pp-card--form{max-width:760px;}
.pp-card--quick{min-height:100%;}
.pp-quick-actions{display:grid;gap:10px;}
.pp-quick-action{display:block;padding:12px;border:1px solid #e2e8f0;border-radius:12px;background:#f8fbff;text-decoration:none;transition:border-color .18s,transform .12s,box-shadow .18s;}
.pp-quick-action strong{display:block;color:#0f172a;font-size:.9rem;font-weight:700;margin-bottom:3px;}
.pp-quick-action span{color:#64748b;font-size:.79rem;line-height:1.45;}
.pp-quick-action:hover{border-color:#d4deea;box-shadow:0 6px 16px rgba(15,23,42,.08);transform:translateY(-1px);}
.pp-alert{background:#fff1f1;border:1px solid #fecaca;border-radius:10px;padding:10px 12px;margin-bottom:12px;}
.pp-alert p{margin:0 0 4px;color:#b91c1c;font-size:.86rem;}
.pp-alert p:last-child{margin-bottom:0;}
.pp-form{display:grid;gap:14px;}
.pp-form__row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.pp-field label{display:block;font-size:.78rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#64748b;margin-bottom:5px;}
.pp-field input{width:100%;padding:10px 11px;border:1.5px solid #dbe3ec;border-radius:9px;font-size:.92rem;color:#0f172a;background:#fff;}
.pp-field input:focus{outline:none;border-color:var(--clr-primary);box-shadow:0 0 0 3px rgba(229,57,53,.14);} 
.pp-btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 18px;border:none;border-radius:10px;background:linear-gradient(135deg,var(--clr-primary),var(--clr-primary-dark));color:#fff;font-size:.84rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;cursor:pointer;}
@media(max-width:980px){.pp-shell{grid-template-columns:1fr;}.pp-side{position:static;}.pp-stats{grid-template-columns:repeat(2,minmax(0,1fr));}.pp-grid{grid-template-columns:1fr;}}
@media(max-width:620px){.pp-stats{grid-template-columns:1fr;}.pp-form__row{grid-template-columns:1fr;}.pp-card{padding:12px;}.pp-head h1{font-size:1.35rem;}}
