:root {
    --ga-orange: #e31e24;
    --ga-orange-dark: #c4181e;
    --ga-accent: #e31e24;
    --ga-accent-dark: #c4181e;
    --ga-black: #1a1a1a;
    --ga-navy: #111111;
    --ga-gray: #f5f5f5;
    --ga-border: #e5e5e5;
    --ga-muted: #6c6c6c;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

* { box-sizing: border-box; }

html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: var(--font-sans);
    color: var(--ga-black);
    background: #fff;
    font-size: 14px;
    line-height: 1.6;
}

a { color: var(--ga-orange); text-decoration: none; }
a:hover { color: var(--ga-orange-dark); }

img { max-width: 100%; height: auto; }

/* Wider content shell for header / footer */
.site-shell {
    width: 100%;
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
}

.site-header {
    margin: 0;
    padding: 0;
    display: block;
    margin-top: -22px;
}
.site-header > *:first-child {
    margin-top: 0;
}

/* Notice ticker (admin-managed) — seamless loop */
.notice-ticker {
    background: #e31e24;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    height: 36px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 36px;
}
.notice-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: none;
}
.notice-ticker.is-ready .notice-ticker-track {
    animation: notice-marquee var(--notice-duration, 40s) linear infinite;
}
.notice-ticker:hover .notice-ticker-track {
    animation-play-state: paused;
}
.notice-ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 48px;
}
.notice-ticker-item {
    display: inline-block;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.notice-ticker-sep {
    opacity: 0.55;
    padding: 0 18px;
    font-size: 10px;
}
@keyframes notice-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-1 * var(--notice-shift, 50%))); }
}

/* Top USP */
.top-usp-bar {
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
    letter-spacing: 0.03em;
}
.top-usp-bar i { color: var(--ga-orange); margin-right: 6px; }
.usp-track {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* Main header */
.main-header { padding: 10px 0 8px; background: #fff; }
.header-row {
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 24px;
}
.nav-toggle {
    display: none;
    border: 1px solid #ddd;
    background: #fff;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--ga-black);
}
.site-logo { display: inline-flex; align-items: center; }
.logo-img {
    max-height: 108px;
    width: auto;
    background: transparent !important;
    padding: 0;
    display: block;
}
.search-form { position: relative; width: 100%; }
.search-input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 48px 12px 16px;
    background: #fafafa;
    font-size: 14px;
}
.search-input:focus { border-color: var(--ga-orange); box-shadow: none; background: #fff; }
.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #888;
    font-size: 18px;
    padding: 8px 12px;
}
.header-icons {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: flex-end;
}
.header-icon {
    position: relative;
    color: var(--ga-black);
    font-size: 22px;
}
.header-icon:hover { color: var(--ga-orange); }
.icon-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--ga-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-divider { border-bottom: 1px solid var(--ga-border); }

/* Category nav */
.category-nav {
    background: #fff;
    border-bottom: 1px solid var(--ga-border);
    position: relative;
    z-index: 100;
}
.mobile-nav-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.nav-close {
    border: none;
    background: transparent;
    font-size: 20px;
    color: var(--ga-black);
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}
.nav-list .nav-link {
    display: block;
    padding: 14px 16px;
    color: var(--ga-black);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.nav-list .nav-link:hover,
.nav-list .nav-link.active { color: var(--ga-orange); }
.nav-list .caret { color: var(--ga-orange); font-size: 10px; }
.nav-link-row {
    display: flex;
    align-items: center;
}
.nav-link-row .nav-link { flex: 1; }
.submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    padding: 10px 12px 10px 0;
    color: var(--ga-orange);
}
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 998;
}
.nav-backdrop.is-open { display: block; }

.has-dropdown { position: relative; }
.mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #1a1a1a;
    border-top: 3px solid var(--ga-orange);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.has-dropdown:hover .mega-dropdown { display: block; }
.mega-dropdown a {
    display: block;
    padding: 12px 24px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.mega-dropdown a:hover {
    background: rgba(227, 30, 36, 0.15);
    color: var(--ga-orange);
}

/* Shop sidebar */
.shop-sidebar { margin-bottom: 24px; }
.mobile-category-select { display: none; margin-bottom: 20px; }
.desktop-category-list { display: block; }

body.nav-open { overflow: hidden; }

/* Page title band + shared page banner (non-home) */
.page-title-band,
.page-hero-banner {
    position: relative;
    overflow: hidden;
    min-height: clamp(160px, 22vh, 240px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 0 40px;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.88) 0%, rgba(40, 8, 10, 0.82) 45%, rgba(227, 30, 36, 0.42) 100%),
        linear-gradient(90deg, #0a0a0a 0%, #1a0506 55%, #3a0c0e 100%);
}
.page-title-band h1,
.page-hero-banner h1 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
.page-hero-banner-content {
    position: relative;
    z-index: 1;
}
.page-title-band .breadcrumb-custom,
.page-hero-banner .breadcrumb-custom {
    color: rgba(255, 255, 255, 0.7);
}
.page-title-band .breadcrumb-custom a,
.page-hero-banner .breadcrumb-custom a {
    color: #fff;
}
.page-title-band .breadcrumb-custom a:hover,
.page-hero-banner .breadcrumb-custom a:hover {
    color: #ffd0d2;
}
.about-side-image {
    overflow: hidden;
    border: 1px solid #eee;
    background: #f5f5f5;
    min-height: 360px;
}
.about-side-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center right;
    display: block;
}

.breadcrumb-custom {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--ga-muted);
}
.breadcrumb-custom a {
    font-family: inherit;
    font-size: inherit;
    color: var(--ga-orange);
}
.breadcrumb-custom .sep { margin: 0 8px; color: #aaa; }

/* Buttons */
.btn-ga {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background .2s;
}
.btn-ga:hover { background: #333; color: #fff; }
.btn-ga-orange {
    background: var(--ga-orange);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.btn-ga-orange:hover { background: var(--ga-orange-dark); color: #fff; }
.btn-ga-outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 0;
    padding: 11px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.btn-ga-outline:hover { background: #000; color: #fff; }

/* Product cards */
.row:has(> [class*="col-"] > .product-card) {
    --bs-gutter-x: 1.75rem;
    --bs-gutter-y: 2rem;
}
.row > [class*="col-"]:has(> .product-card) {
    display: flex;
    padding-bottom: 0.35rem;
}
.product-card {
    text-align: center;
    margin-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0 4px 8px;
}
.product-card .img-wrap {
    position: relative;
    background: #fafafa;
    margin-bottom: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    flex-shrink: 0;
}
.product-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 16px;
    transition: transform .3s;
}
.product-card:hover .img-wrap img { transform: scale(1.04); }
.product-card .wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.product-card .wishlist-btn:hover,
.product-card .wishlist-btn.active { color: var(--ga-orange); border-color: var(--ga-orange); }
.product-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    padding: 0 6px;
}
.product-card .name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ga-black);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
    min-height: calc(1.4em * 2);
}
.product-card .name:hover { color: var(--ga-orange); }
.product-card .price {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
    min-height: 1.4em;
    line-height: 1.4;
}
.product-card .price .old {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    margin-right: 8px;
    font-size: 13px;
}
.product-card .price .sale { color: var(--ga-orange); }
.product-card .rating { color: #f5a623; font-size: 12px; margin-bottom: 8px; }
.product-card .rating-count { color: #999; font-size: 11px; margin-left: 4px; }
.product-card-action {
    margin-top: auto;
    padding-top: 6px;
    padding-bottom: 4px;
}
.product-card-action .btn {
    min-width: 132px;
}

@media (max-width: 767.98px) {
    .row:has(> [class*="col-"] > .product-card) {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.35rem;
    }
    .product-card {
        padding: 0 2px 4px;
    }
    .product-card-body {
        padding: 0 2px;
    }
}

@media (min-width: 1200px) {
    .row:has(> [class*="col-"] > .product-card) {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 2.35rem;
    }
}

.product-stock-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    background: #111;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    pointer-events: none;
}
.product-card.is-out-of-stock .img-wrap img {
    opacity: 0.55;
    filter: grayscale(0.35);
}
.btn-out-of-stock {
    background: #e8e8e8;
    color: #777;
    border: 1px solid #ddd;
    border-radius: 0;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    cursor: not-allowed;
    opacity: 1;
}
.btn-out-of-stock:disabled {
    opacity: 1;
    color: #777;
    background: #e8e8e8;
}

.product-rating-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.product-rating-summary .rating { color: #f5a623; font-size: 14px; }
.product-rating-summary .rating-meta { font-size: 13px; color: #666; }
.product-rating-summary .rating-link { font-size: 13px; font-weight: 600; }

.product-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.product-share-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #666;
    margin-right: 4px;
}
.share-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background: #fff;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
}
.share-btn:hover { color: #fff; border-color: transparent; }
.share-fb:hover { background: #1877f2; }
.share-wa:hover { background: #25d366; }
.share-ig:hover { background: #e4405f; }
.share-tw:hover { background: #111; }
.share-pin:hover { background: #bd081c; }
.share-google:hover { background: #ea4335; }

.product-reviews-layout {
    align-items: flex-start;
}
.reviews-list {
    border: 1px solid #eee;
    background: #fff;
    padding: 0 18px;
}
.reviews-list--scroll {
    max-height: min(520px, 60vh);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}
.reviews-list--scroll::-webkit-scrollbar {
    width: 8px;
}
.reviews-list--scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}
.reviews-list--scroll::-webkit-scrollbar-track {
    background: #f3f3f3;
}
.reviews-scroll-hint {
    font-size: 12px;
}
.product-reviews .review-item {
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}
.product-reviews .review-item:last-child { border-bottom: none; }
.product-reviews .rating { color: #f5a623; font-size: 13px; }
.review-form-card {
    background: #f7f7f7;
    border: 1px solid #eee;
    padding: 24px;
}
@media (min-width: 992px) {
    .review-form-card {
        position: sticky;
        top: 24px;
    }
}
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
.rating-input input { display: none; }
.rating-input label {
    color: #ddd;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}
.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #f5a623;
}

.store-pagination {
    display: flex;
    justify-content: center;
    width: 100%;
}
.store-pager {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
}
.store-pager-summary {
    margin: 0;
    font-size: 13px;
    color: #777;
    text-align: center;
}
.store-pager-summary strong {
    color: #333;
    font-weight: 600;
}
.store-pager-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.store-pager-list li a,
.store-pager-list li span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}
.store-pager-list li a:hover {
    border-color: var(--ga-orange);
    color: var(--ga-orange);
}
.store-pager-list li.is-active span {
    background: var(--ga-orange);
    border-color: var(--ga-orange);
    color: #fff;
}
.store-pager-list li.is-disabled span {
    color: #bbb;
    background: #f7f7f7;
    cursor: default;
}

/* Sections */
.section-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}
.section-subtitle {
    text-align: center;
    color: var(--ga-muted);
    margin-bottom: 36px;
    font-size: 14px;
}
.section-pad { padding: 60px 0; }

/* Hero slider — capped height for laptop + 2K (full-bleed cover) */
.hero-slider {
    position: relative;
    background: #111;
}
.hero-slider .carousel-item {
    transition: transform .6s ease-in-out;
}
.hero-slide {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    /* ~42vh keeps hero under half the screen; hard caps stop 2K from ballooning */
    height: clamp(320px, 42vh, 520px);
}
.hero-slide-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center right;
}
.hero-slide-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-slide--light .hero-slide-shade {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.28) 32%,
        rgba(255, 255, 255, 0.05) 55%,
        rgba(255, 255, 255, 0) 70%
    );
}
.hero-slide--dark .hero-slide-shade {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.28) 34%,
        rgba(0, 0, 0, 0.06) 58%,
        rgba(0, 0, 0, 0) 72%
    );
}
.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    line-height: 1.6;
}
.hero-copy {
    max-width: 480px;
}
.hero-copy .eyebrow {
    color: var(--ga-orange);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}
.hero-copy h1 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero-copy p {
    max-width: 420px;
    margin-bottom: 28px;
}
.hero-slide--light .hero-copy { color: #1a1a1a; }
.hero-slide--light .hero-copy h1 { color: #141414; }
.hero-slide--light .hero-copy p { color: #555; }

.hero-slide--dark .hero-copy { color: #fff; }
.hero-slide--dark .hero-copy h1 { color: #fff; }
.hero-slide--dark .hero-copy p { color: rgba(255, 255, 255, 0.78); }

.hero-slider .carousel-indicators {
    margin-bottom: 18px;
}
.hero-slider .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background-color: rgba(255, 255, 255, 0.45);
    opacity: 1;
}
.hero-slider .carousel-indicators .active {
    background-color: var(--ga-orange);
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 52px;
    opacity: 0.9;
    z-index: 3;
}
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    background-size: 100% 100%;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

@media (min-width: 1600px) {
    .hero-slide {
        height: clamp(420px, 38vh, 560px);
    }
}

@media (min-width: 2200px) {
    .hero-slide {
        height: clamp(460px, 36vh, 600px);
    }
    .hero-copy {
        max-width: 540px;
    }
}

/* Value props */
.value-props {
    border-bottom: 1px solid var(--ga-border);
    padding: 32px 0;
}
.value-prop {
    text-align: center;
    padding: 12px;
}
.value-prop i {
    font-size: 28px;
    color: var(--ga-orange);
    margin-bottom: 10px;
    display: block;
}
.value-prop h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.value-prop p { font-size: 12px; color: var(--ga-muted); margin: 0; }

/* Category circles */
.cat-circle {
    text-align: center;
    margin-bottom: 20px;
}
.cat-circle .circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--ga-gray);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: border-color .2s;
    font-size: 32px;
    color: var(--ga-orange);
}
.cat-circle:hover .circle { border-color: var(--ga-orange); }
.cat-circle span {
    font-size: 13px;
    font-weight: 600;
    color: var(--ga-black);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Newsletter */
.newsletter-band {
    background: var(--ga-navy);
    color: #fff;
    padding: 50px 0;
}
.newsletter-band h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 8px;
}
.newsletter-form { display: flex; max-width: 480px; margin: 20px auto 0; }
.newsletter-form input {
    flex: 1;
    border: none;
    border-radius: 0;
    padding: 14px 16px;
}
.newsletter-form button { border-radius: 0; white-space: nowrap; }

/* Cart table */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table thead th {
    background: #000;
    color: #fff;
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cart-table tbody td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--ga-border);
    vertical-align: middle;
}
.cart-table .product-cell { display: flex; align-items: center; gap: 16px; }
.cart-table .product-cell img { width: 70px; height: 70px; object-fit: contain; background: #fafafa; }
.cart-remove {
    color: #999;
    font-size: 22px;
    line-height: 1;
    border: none;
    background: none;
    padding: 0 8px 0 0;
}
.cart-remove:hover { color: #c00; }
.qty-stepper {
    display: inline-flex;
    border: 1px solid #ddd;
}
.qty-stepper button {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
}
.qty-stepper input {
    width: 48px;
    height: 36px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
}
.cart-totals {
    border: 1px solid var(--ga-border);
    padding: 24px;
    background: #fafafa;
}
.cart-totals h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}
.cart-totals .row-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--ga-border);
}
.cart-totals .row-line.total {
    font-weight: 700;
    font-size: 16px;
    border-bottom: none;
    padding-top: 16px;
}

/* Forms */
.form-control, .form-select {
    border-radius: 0;
    border-color: #ddd;
    padding: 12px 14px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--ga-orange);
    box-shadow: 0 0 0 0.15rem rgba(247,148,29,.2);
}
.form-label { font-weight: 600; font-size: 13px; }

/* Footer */
.site-footer {
    background: #111;
    color: #bbb;
    padding: 60px 0 0;
    margin-top: 60px;
}
.footer-logo {
    max-height: 88px;
    width: auto;
    background: transparent;
    padding: 0;
    display: block;
}
.footer-tagline { font-size: 13px; line-height: 1.7; }
.footer-heading {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #aaa; font-size: 13px; }
.footer-links a:hover { color: var(--ga-orange); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: 12px; font-size: 13px; display: flex; gap: 10px; }
.footer-contact i { color: var(--ga-orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #aaa; }
.footer-contact a:hover { color: var(--ga-orange); }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.social-links a {
    width: 36px; height: 36px;
    border: 1px solid #333;
    display: flex; align-items: center; justify-content: center;
    color: #fff; border-radius: 50%;
}
.social-links a:hover { border-color: var(--ga-orange); color: var(--ga-orange); }
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding: 18px 0;
    font-size: 12px;
}
.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #222;
    color: #fff;
    padding: 6px 12px;
    margin-left: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.pay-badge-cod i {
    color: var(--ga-orange);
    font-size: 14px;
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    background: var(--ga-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--ga-orange-dark); color: #fff; }

/* Auth pages */
.auth-wrap {
    max-width: 480px;
    margin: 40px auto;
    padding: 40px;
    border: 1px solid var(--ga-border);
}
.auth-wrap h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    text-align: center;
    margin-bottom: 24px;
}

/* Guarantee badges */
.guarantee-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}
.guarantee-badge {
    text-align: center;
    font-size: 11px;
    color: var(--ga-muted);
}
.guarantee-badge i {
    display: block;
    font-size: 24px;
    color: var(--ga-orange);
    margin-bottom: 6px;
}

/* About */
.about-feature {
    text-align: center;
    padding: 20px;
}
.about-feature i {
    font-size: 36px;
    color: var(--ga-orange);
    margin-bottom: 12px;
}

.what-we-do {
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.9) 0%, rgba(40, 8, 10, 0.86) 50%, rgba(227, 30, 36, 0.35) 100%),
        #0d0d0d;
    color: #fff;
    padding: 72px 0;
}
.what-we-do-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
}
.what-we-do-subtitle {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
.what-we-do-divider {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}
.what-we-do-divider span {
    width: 70px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    position: relative;
}
.what-we-do-divider span::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    background: var(--ga-orange);
    transform: translate(-50%, -50%) rotate(45deg);
}
.what-we-do-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #fff;
}
.what-we-do-text {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 20px;
}
.what-we-do-sign {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
}
.what-we-do-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 12px;
    max-width: 280px;
    width: 100%;
}
.what-we-do-logo {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    background: transparent;
}
.what-we-do-quotes {
    list-style: none;
    padding: 0;
    margin: 0;
}
.what-we-do-quotes li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 14px;
    line-height: 1.5;
}
.what-we-do-quotes i {
    color: #f5a623;
    flex-shrink: 0;
    margin-top: 2px;
}

.brands-section {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(227, 30, 36, 0.06), transparent 55%),
        linear-gradient(180deg, #f7f7f7 0%, #f0f0f0 48%, #ffffff 100%);
    overflow: hidden;
}
.brands-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 85%);
    pointer-events: none;
}
.brands-header {
    position: relative;
    z-index: 1;
    margin-bottom: 2.25rem;
}
.brands-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ga-orange);
    margin: 0 0 0.5rem;
}
.brands-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 180px));
    justify-content: center;
    gap: 14px 16px;
    max-width: 980px;
    margin: 0 auto;
}
.brands-marquee-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 0.25rem;
}
.brands-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands-marquee-track {
    display: flex;
    width: max-content;
    gap: 14px;
    will-change: transform;
}
.brands-marquee--left .brands-marquee-track {
    animation: brands-marquee-left var(--brands-duration, 40s) linear infinite;
}
.brands-marquee--right .brands-marquee-track {
    animation: brands-marquee-right var(--brands-duration, 44s) linear infinite;
}
.brands-marquee-stack:hover .brands-marquee-track,
.brands-marquee-stack:focus-within .brands-marquee-track {
    animation-play-state: paused;
}
@keyframes brands-marquee-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes brands-marquee-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
.brand-tile {
    flex: 0 0 auto;
    width: 168px;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 16px 14px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.04);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.brands-grid .brand-tile {
    width: auto;
}
.brand-tile:hover,
.brand-tile:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(227, 30, 36, 0.35);
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
    color: inherit;
}
.brand-tile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
}
.brand-tile-logo img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(0.35) contrast(1.05);
    opacity: 0.88;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.brand-tile:hover .brand-tile-logo img,
.brand-tile:focus-visible .brand-tile-logo img {
    filter: none;
    opacity: 1;
    transform: scale(1.04);
}
.brand-tile-name {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ga-muted);
    text-align: center;
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.brand-tile:hover .brand-tile-name {
    color: var(--ga-black);
}

@media (max-width: 575.98px) {
    .brand-tile {
        width: 140px;
        min-height: 104px;
        padding: 14px 12px 12px;
    }
    .brand-tile-logo {
        height: 44px;
    }
    .brand-tile-logo img {
        max-height: 44px;
    }
    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brands-marquee--left .brands-marquee-track,
    .brands-marquee--right .brands-marquee-track {
        animation: none;
        transform: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }
    .brands-marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.map-embed {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Contact page */
.contact-info-band {
    padding-top: 40px;
    padding-bottom: 20px;
}
.contact-info-card {
    display: flex;
    align-items: stretch;
    min-height: 96px;
    border: 1px solid var(--ga-border);
    background: #fff;
    overflow: hidden;
}
.contact-info-icon {
    width: 72px;
    flex-shrink: 0;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.contact-info-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.contact-info-body h6 {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
}
.contact-info-body a,
.contact-info-body p {
    color: var(--ga-orange);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    text-decoration: none;
}
.contact-info-body a:hover { color: var(--ga-orange-dark); }
.contact-info-body p { color: #333; }
.contact-form-band {
    background: #f6f6f6;
    padding-top: 48px;
    padding-bottom: 56px;
}
.contact-intro-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
}
.contact-intro-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
    max-width: 420px;
}
.contact-social-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}
.contact-social a {
    border-color: #ccc;
    color: #111;
    background: #fff;
}
.contact-social a:hover {
    border-color: var(--ga-orange);
    color: var(--ga-orange);
}

@media (max-width: 767.98px) {
    .contact-intro-title { font-size: 28px; }
    .map-embed { height: 280px; }
}

@media (max-width: 991.98px) {
    .usp-track {
        justify-content: center;
        text-align: center;
        font-size: 11px;
    }
    .usp-track span { width: 100%; }

    .header-row {
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "toggle logo icons"
            "search search search";
        gap: 12px;
    }
    .nav-toggle { display: inline-flex; grid-area: toggle; }
    .site-logo { grid-area: logo; text-align: center; justify-self: center; }
    .logo-img { max-height: 68px; }
    .footer-logo { max-height: 64px; }
    .site-shell { padding-left: 16px; padding-right: 16px; }
    .search-form { grid-area: search; }
    .header-icons { grid-area: icons; gap: 14px; }

    .category-nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(320px, 86vw);
        background: #fff;
        border: none;
        box-shadow: 8px 0 24px rgba(0,0,0,.15);
        z-index: 999;
        transform: translateX(-105%);
        transition: transform .25s ease;
        overflow-y: auto;
        padding: 0 16px 24px;
    }
    .category-nav.is-open { transform: translateX(0); }
    .mobile-nav-header { display: flex; }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-list .nav-item { width: 100%; border-bottom: 1px solid #eee; }
    .nav-list .nav-link {
        padding: 14px 4px;
        font-size: 13px;
    }
    .nav-link-row { width: 100%; }
    .submenu-toggle {
        width: 44px;
        padding: 14px 8px;
    }

    .has-dropdown:hover .mega-dropdown { display: none; }
    .has-dropdown .mega-dropdown {
        position: static;
        display: none;
        min-width: 0;
        box-shadow: none;
        border-top: none;
        background: #111;
        margin: 0 0 8px;
    }
    .has-dropdown.is-open .mega-dropdown { display: block; }
    .has-dropdown.is-open .submenu-toggle .caret { transform: rotate(180deg); display: inline-block; }

    .desktop-category-list { display: none; }
    .mobile-category-select { display: block; }

    .hero-copy h1 { font-size: 28px; }
    .hero-copy p {
        font-size: 13px;
        margin-bottom: 18px;
    }
    .hero-slide {
        height: clamp(280px, 48vh, 400px);
    }
    .hero-slide-image {
        object-position: 72% center;
    }
    .hero-slide-content {
        align-items: flex-end;
        padding-bottom: 36px;
    }
    .hero-slide--light .hero-slide-shade {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.55) 48%,
            rgba(255, 255, 255, 0.82) 100%
        );
    }
    .hero-slide--dark .hero-slide-shade {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.45) 48%,
            rgba(0, 0, 0, 0.72) 100%
        );
    }
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }
    .page-title-band h1,
    .page-hero-banner h1 { font-size: 32px; }
    .page-title-band,
    .page-hero-banner {
        min-height: 150px;
        padding: 36px 0 28px;
    }
    .section-pad { padding: 36px 0; }
}

@media (min-width: 992px) {
    .submenu-toggle { pointer-events: none; }
    .has-dropdown.is-open .mega-dropdown { display: block; }
}

/* Coming soon */
.coming-soon-page {
    margin: 0;
    min-height: 100vh;
    background: #0e0e0e;
    color: #fff;
}
.coming-soon {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    overflow: hidden;
}
.coming-soon-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.coming-soon-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: coming-soon- ken 18s ease-in-out infinite alternate;
}
.coming-soon-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 70% 55% at 50% 40%, rgba(227, 30, 36, 0.28), transparent 65%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.72) 45%, rgba(8, 8, 8, 0.92) 100%);
}
.coming-soon-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    text-align: center;
}
.coming-soon-brand {
    display: inline-block;
    margin-bottom: 1.75rem;
    animation: coming-soon-rise 0.9s ease both;
}
.coming-soon-logo {
    height: 88px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}
.coming-soon-cta {
    min-width: 240px;
    padding: 0.9rem 1.7rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}
.coming-soon-cta .bi {
    font-size: 1.15rem;
    line-height: 1;
}
.coming-soon-script {
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin: 0 0 0.35rem;
    line-height: 1;
    animation: coming-soon-rise 0.9s ease 0.12s both;
}
.coming-soon-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(2.35rem, 6vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 1.1rem;
    animation: coming-soon-rise 0.9s ease 0.2s both;
}
.coming-soon-lead {
    font-family: var(--font-sans);
    font-size: clamp(0.98rem, 2vw, 1.12rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 34rem;
    margin: 0 auto 0.85rem;
    animation: coming-soon-rise 0.9s ease 0.3s both;
}
.coming-soon-note {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 1.85rem;
    animation: coming-soon-rise 0.9s ease 0.38s both;
}
.coming-soon-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 22px;
    margin-bottom: 2rem;
    animation: coming-soon-rise 0.9s ease 0.46s both;
}
.coming-soon-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    font-family: var(--font-sans);
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.35rem;
    animation: coming-soon-rise 0.9s ease 0.54s both;
}
.coming-soon-meta a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease;
}
.coming-soon-meta a:hover {
    color: #fff;
}
.coming-soon-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}
.coming-soon-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    animation: coming-soon-rise 0.9s ease 0.62s both;
}
.coming-soon-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.coming-soon-social a:hover {
    background: var(--ga-orange);
    border-color: var(--ga-orange);
    color: #fff;
    transform: translateY(-2px);
}

@keyframes coming-soon-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes coming-soon-ken {
    from { transform: scale(1.04) translate3d(0, 0, 0); }
    to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@media (max-width: 575.98px) {
    .coming-soon {
        padding: 36px 18px;
        align-items: flex-end;
        padding-bottom: 48px;
    }
    .coming-soon-logo {
        height: 72px;
    }
    .coming-soon-actions {
        flex-direction: column;
    }
    .coming-soon-cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon-media img,
    .coming-soon-brand,
    .coming-soon-script,
    .coming-soon-title,
    .coming-soon-lead,
    .coming-soon-note,
    .coming-soon-actions,
    .coming-soon-meta,
    .coming-soon-social {
        animation: none;
    }
}

/* Toast notifications */
.ga-toast-stack {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(360px, calc(100vw - 28px));
    pointer-events: none;
}
.ga-toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px 14px 16px;
    background: #111;
    color: #fff;
    border-left: 3px solid var(--ga-orange);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(-10px) translateX(8px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.ga-toast.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
.ga-toast.is-leaving {
    opacity: 0;
    transform: translateY(-6px) translateX(10px);
}
.ga-toast--success { border-left-color: #1f9d55; }
.ga-toast--error { border-left-color: #e31e24; }
.ga-toast--warning { border-left-color: #d97706; }
.ga-toast--info { border-left-color: #2563eb; }
.ga-toast-icon {
    font-size: 1.05rem;
    line-height: 1;
    margin-top: 1px;
    flex-shrink: 0;
}
.ga-toast--success .ga-toast-icon { color: #4ade80; }
.ga-toast--error .ga-toast-icon { color: #fb7185; }
.ga-toast--warning .ga-toast-icon { color: #fbbf24; }
.ga-toast--info .ga-toast-icon { color: #93c5fd; }
.ga-toast-message {
    flex: 1;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.94);
}
.ga-toast-close {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.25rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.ga-toast-close:hover { color: #fff; }

@media (max-width: 575.98px) {
    .ga-toast-stack {
        top: auto;
        bottom: 18px;
        right: 14px;
        left: 14px;
        width: auto;
    }
}

/* Admin login */
.admin-login-page {
    margin: 0;
    min-height: 100vh;
    background: #0f0f0f;
    color: #111;
}
.admin-login {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}
.admin-login-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 20%, rgba(227, 30, 36, 0.22), transparent 60%),
        linear-gradient(160deg, #1a1a1a 0%, #0c0c0c 55%, #141414 100%);
}
.admin-login-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 42px 36px 36px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.admin-login-brand {
    text-align: center;
    margin-bottom: 1.35rem;
}
.admin-login-logo {
    height: 48px;
    width: auto;
    display: inline-block;
}
.admin-login-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ga-orange);
    text-align: center;
    margin: 0 0 0.4rem;
}
.admin-login-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 0.35rem;
    color: #111;
    line-height: 1.15;
}
.admin-login-lead {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #6c6c6c;
    text-align: center;
    margin: 0 0 1.5rem;
}
.admin-login-alert {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.45;
}
.admin-login-alert--ok {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}
.admin-login-alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.admin-login-field {
    margin-bottom: 1rem;
}
.admin-login-field label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 0.4rem;
}
.admin-login-field input {
    width: 100%;
    border: 1px solid #ddd;
    background: #fafafa;
    padding: 0.8rem 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: #111;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.admin-login-field input:focus {
    border-color: #111;
    background: #fff;
}
.admin-login-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.9rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}
@media (max-width: 575.98px) {
    .admin-login-panel {
        padding: 32px 22px 28px;
    }
    .admin-login-title {
        font-size: 1.7rem;
    }
}
