/* ============================================================================
   UNDERBEAN.COM - SHARED DESIGN SYSTEM (styles.css)
   Premium Bean Bags | E-commerce Multi-Page Website
   ============================================================================ */

/* ── IMPORTS ── */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800;900&family=Fira+Code:wght@400;500;700&display=swap');

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}

html {
    scroll-behavior: smooth;
}

/* Prevent horizontal overflow that can cause the mobile menu to clip off-screen */
html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--ink-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    scroll-margin-top: 100px;
}

main {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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


/* ── CSS VARIABLES (Design Tokens) ── */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F5F5F5;
    --ink-primary: #111111;
    --ink-secondary: #555555;
    --ink-tertiary: #888888;
    --accent: #00E5FF;
    --accent-dark: #00B8D4;
    --accent-on: #111111;
    --border-light: #E5E5E5;
    --border-dark: #111111;

    /* Aliases for backward compatibility with secondary page elements */
    --text-primary: var(--ink-primary);
    --text-secondary: var(--ink-secondary);
    --bg-card: var(--bg-secondary);
    --bg-card-hover: var(--bg-tertiary);
    --border-glow: var(--border-light);
    --border-glow-hover: var(--border-dark);
    --accent-cyan: var(--accent);

    --font-display: 'Orbitron', 'Segoe UI', sans-serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-mono: 'Fira Code', 'Courier New', monospace;
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --header-height: 64px;

    /* Type Scale — Fluid via clamp() */
    --fs-hero: clamp(2.5rem, 6vw + 1rem, 6rem);
    --fs-h1: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    --fs-h2: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
    --fs-h3: clamp(1.2rem, 2vw + 0.3rem, 1.8rem);
    --fs-body: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
    --fs-small: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
    --fs-label: 0.75rem;

    /* Spacing & layout */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-xxl: 120px;
    --container-max: 1440px;
    --gutter: 24px;
    --margin-desktop: 64px;
    --margin-mobile: 20px;
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── ANIMATIONS ── */
@keyframes cyberpunkRGB {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes rgbGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    }
}

@keyframes shimmerSlide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ── HEADER ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 32px;
    border-bottom: 1px solid var(--border-light);
    z-index: 50;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    transition: transform 0.8s var(--transition-bounce), opacity 0.8s ease, background 0.3s ease;
}

header:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.ub-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Scroll shadow state — added by JS on scroll */
.ub-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.98);
}

.ub-header__logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--ink-primary);
    line-height: 1;
    white-space: nowrap;
}

.ub-header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

/* Ensure the header layout is stable: logo at left, nav centered, hamburger at right.
   Use grid placement so layout is identical across pages. */
.ub-header__logo {
    justify-self: start;
    grid-column: 1;
    margin-left: 0 !important;
    /* Keep logo flush with the page gutter; uses desktop/mobile vars */
    padding-left: var(--margin-desktop);
}

.ub-header__nav {
    justify-self: end;
    margin: 0;
    grid-column: 3;
    margin-right: 0 !important;
    /* Keep nav flush with the page gutter */
    padding-right: var(--margin-desktop);
}

.ub-hamburger {
    justify-self: end;
    grid-column: 3;
    margin-right: 0 !important;
    padding-right: var(--margin-desktop);
}

/* .ub-mobile-menu is position:fixed; grid-column does not apply */

.ub-header__logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.ub-header__logo-text {
    font-size: 1.25rem;
    letter-spacing: 1.8px;
}

.ub-header__nav a {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-secondary);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.ub-header__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ink-primary);
    transition: width 0.3s var(--ease-out);
}

.ub-header__nav a:hover,
.ub-header__nav a.active {
    color: var(--ink-primary);
}

.ub-header__nav a:hover::after,
.ub-header__nav a.active::after {
    width: 100%;
}

.ub-hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 230;
}

.ub-hamburger span {
    width: 28px;
    height: 2px;
    background: var(--ink-primary);
    transition: transform 0.4s var(--ease-bounce), opacity 0.3s ease;
    transform-origin: center;
}

.ub-hamburger.active span:nth-child(2) {
    opacity: 0;
}

/* Hamburger stays as 3 lines when menu is open — close button inside menu handles closing */

.ub-mobile-menu {
    display: none;
    position: fixed;
    /* anchor to top of viewport directly below header */
    top: calc(var(--header-height));
    left: 0;
    right: 0;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0 24px 0;
    flex-direction: column;
    align-items: flex-start;
    z-index: 9999;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.ub-mobile-menu.active {
    display: flex;
}

/* Responsive tweaks: mobile gutters, show hamburger, hide desktop nav */
@media (max-width: 800px) {
    header.ub-header, .ub-header {
        padding: 0 var(--margin-mobile) !important;
    }

    .ub-header__logo {
        padding-left: var(--margin-mobile) !important;
    }

    .ub-header__nav {
        display: none;
    }

    .ub-hamburger {
        display: flex;
        padding-right: var(--margin-mobile) !important;
    }

    .ub-mobile-menu {
        align-items: flex-start;
    }

    .ub-mobile-menu a {
        text-align: left;
        padding: 12px 0;
        width: 100%;
        padding-left: 8px;
    }
}

/* Absolute gutter anchoring for pixel-perfect edges
   Logo (left) and controls (nav / hamburger) anchored to gutters. */
.ub-header {
    /* keep as positioned container for absolute children */
    position: fixed;
}

.ub-header__logo {
    position: absolute !important;
    left: var(--margin-desktop) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.ub-header__nav {
    position: absolute !important;
    right: var(--margin-desktop) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-right: 0 !important;
}

.ub-hamburger {
    position: absolute !important;
    right: var(--margin-desktop) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

@media (max-width: 800px) {
    .ub-header__logo {
        left: var(--margin-mobile) !important;
    }

    .ub-header__nav,
    .ub-header__nav a {
        right: var(--margin-mobile) !important;
    }

    .ub-hamburger {
        right: var(--margin-mobile) !important;
    }
}

.ub-mobile-menu a {
    display: block;
    align-items: center;
    padding: 14px 0;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-secondary);
    transition: color 0.3s ease, background 0.3s ease;
    min-height: 44px;
}

/* Close button inside mobile menu */
.ub-mobile-close {
    position: absolute;
    top: 8px;
    right: var(--margin-mobile);
    background: transparent;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    padding: 6px;
    cursor: pointer;
    color: var(--ink-primary);
    z-index: 10000;
}

/* Add top padding so menu items don't overlap the close button */
.ub-mobile-menu {
    padding-top: 44px;
    display: none;
}

/* Inner container to inset menu content by mobile gutter */
.ub-mobile-menu .ub-mobile-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--margin-mobile);
    box-sizing: border-box;
}

.ub-mobile-menu a:hover,
.ub-mobile-menu a.active {
    color: var(--ink-primary);
    background: var(--bg-tertiary);
}

/* ============================================================================
   Force uniform header appearance (homepage values) across all pages.
   These high-specificity rules override any remaining inline or page-level styles.
   ============================================================================ */
header.ub-header, .ub-header {
    height: 64px !important;
    padding: 0 var(--margin-desktop) !important;
    background: rgba(255,255,255,0.95) !important;
}

.ub-header__logo, header.ub-header .ub-header__logo {
    justify-self: start !important;
    display: flex !important;
    align-items: center !important;
}

.ub-header__logo-img, header.ub-header .ub-header__logo-img {
    height: 40px !important;
    width: auto !important;
}

.ub-header__logo-text, header.ub-header .ub-header__logo-text {
    font-size: 1.25rem !important;
    letter-spacing: 2.6px !important;
    font-family: 'Orbitron', var(--font-display) !important;
}

.ub-header__nav, header.ub-header .ub-header__nav {
    justify-self: center !important;
    gap: 28px !important;
}

.ub-header__nav a {
    font-size: 0.95rem !important;
    padding: 10px 0 !important;
}

.ub-hamburger, header.ub-header .ub-hamburger {
    justify-self: end !important;
}

/* Ensure mobile hamburger is visible when nav is hidden */
@media (max-width: 768px) {
    header.ub-header, .ub-header {
        padding: 0 var(--margin-mobile) !important;
    }
    .ub-header__nav { display: none !important; }
    .ub-hamburger { display: flex !important; }
    .ub-mobile-menu { display: none !important; }
    .ub-mobile-menu.active { display: flex !important; }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}

.header-left:hover {
    text-decoration: none;
}

.logo-header {
    height: 34px;
    width: auto;
    flex-shrink: 0;
    display: block;
    transition: transform 0.4s var(--transition-bounce);
}

.header-left:hover .logo-header {
    transform: scale(1.05);
}

.header-title {
    color: var(--ink-primary);
    -webkit-text-fill-color: var(--ink-primary);
    background: none;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2.4px;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 1;
}

/* ── NAVIGATION ── */
nav {
    display: flex;
    gap: 25px;
}

nav a {
    background: none;
    border: none;
    color: var(--ink-secondary);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s var(--transition-smooth);
    padding: 8px 0;
    position: relative;
    text-decoration: none;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: var(--ink-primary);
    transition: all 0.4s var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 0;
}

/* Prevent duplicate underlines and layout conflicts when using the
   `ub-header` header variant: hide the generic nav pseudo-element inside
   header elements so the header-specific rules take precedence. */
header nav a::after {
    display: none;
}

/* Ensure header nav links have the intended padding when using the
   unified header classes (overrides earlier generic `nav a` rules). */
header nav a {
    padding: 8px 0;
}

nav a:hover {
    color: var(--ink-primary);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--ink-primary);
}

nav a.active::after {
    width: 100%;
}

/* ── HAMBURGER MENU ── */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--ink-primary);
    border-radius: 0;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        opacity 0.3s ease, background 0.4s ease;
    transform-origin: center;
}

.hamburger:hover span {
    background: var(--ink-primary);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 15px 0;
    min-width: 200px;
    flex-direction: column;
    z-index: 100;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    background: none;
    border: none;
    color: var(--ink-secondary);
    cursor: pointer;
    padding: 12px 20px;
    text-align: left;
    font-size: 0.95rem;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    text-decoration: none;
    display: block;
}

.mobile-menu a:hover {
    background: var(--bg-tertiary);
    color: var(--ink-primary);
    border-left-color: var(--border-dark);
}

.mobile-menu a.active {
    background: var(--bg-tertiary);
    color: var(--ink-primary);
    border-left-color: var(--border-dark);
}

/* ── SECTION TITLES ── */
.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ink-primary);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--ink-secondary);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ── PAGE HERO BANNER ── */
.page-hero {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.page-hero .section-title {
    font-size: 3.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease forwards;
}

.page-hero .section-subtitle {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ── CTA BUTTONS ── */
.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-on);
    padding: 14px 32px;
    border-radius: 0;
    font-weight: 800;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s;
}

.cta-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.35);
    transform: translateY(-2px);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--ink-primary);
    color: var(--ink-primary);
    padding: 12px 28px;
    border-radius: 0;
    font-weight: 800;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
}

.cta-secondary:hover {
    background: var(--ink-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* ── CARDS ── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 0;
    padding: 30px 25px;
    cursor: default;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: var(--bg-card-hover);
}

/* ── CONTENT SECTIONS ── */
.content-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-section+.content-section {
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================================
   HOMEPAGE-SPECIFIC COMPONENTS (ub-hero, ub-products, ub-story, etc.)
   ============================================================================ */

/* ── HERO ANIMATIONS ── */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(0deg); }
    25%      { transform: translateY(-12px) rotateY(2deg) rotateX(1deg); }
    50%      { transform: translateY(-6px) rotateY(-1deg) rotateX(-0.5deg); }
    75%      { transform: translateY(-15px) rotateY(1.5deg) rotateX(0.5deg); }
}

@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.15; }
    50%      { transform: translateX(-50%) scale(0.92); opacity: 0.1; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-product { transform: none !important; }
    .hero-shadow  { animation: none !important; }
}

/* ── HERO SECTION ── */
/* ── HERO SECTION ── */
.ub-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--header-height) 0 0; /* Header spacing */
    background: var(--bg-primary);
    overflow: hidden;
}

.ub-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ub-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center; /* Anchor bean bag to the right */
    will-change: transform;
    transition: transform 0.15s var(--ease-out);
}

/* Legibility white-gradient overlay */
.ub-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 35%, rgba(255,255,255,0) 60%);
    z-index: 2;
    pointer-events: none;
}

.ub-hero__inner {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-xl) var(--margin-desktop);
    z-index: 3;
    display: flex;
    justify-content: flex-start;
}

.ub-hero__content {
    max-width: 580px; /* Fits comfortably in the left 2/5 of the screen */
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    will-change: transform, opacity;
    transition: transform 0.15s var(--ease-out), opacity 0.15s var(--ease-out);
}

/* Wordmark styling */
.ub-hero__wordmark-container {
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s var(--ease-out) 0.15s, transform 0.8s var(--ease-out) 0.15s;
}

.ub-hero__wordmark {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--ink-primary);
    text-transform: uppercase;
}

.ub-hero__wordmark-line {
    width: 32px;
    height: 2px;
    background-color: var(--accent);
    margin-top: 6px;
}

/* Headline styling */
.ub-hero__headline {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--ink-primary);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out) 0.3s, transform 0.8s var(--ease-out) 0.3s;
}

/* Subheadlines styling */
.ub-hero__subheadlines {
    margin-bottom: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s var(--ease-out) 0.45s, transform 0.8s var(--ease-out) 0.45s;
}

.ub-hero__sub1 {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    color: var(--ink-secondary);
    line-height: 1.5;
}

.ub-hero__sub2 {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 700;
    color: var(--accent-dark); /* emotive line in readable cyan */
    line-height: 1.5;
}

/* CTAs styling */
.ub-hero__ctas {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s var(--ease-out) 0.6s, transform 0.8s var(--ease-out) 0.6s;
}

.ub-hero__ctas .ub-btn {
    padding: 16px 36px;
    letter-spacing: 2px;
}

/* Trust line styling */
.ub-hero__trust-line {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--ink-secondary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s var(--ease-out) 0.75s, transform 0.8s var(--ease-out) 0.75s;
}

/* Trust badges styling */
.ub-hero__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s var(--ease-out) 0.9s, transform 0.8s var(--ease-out) 0.9s;
}

.ub-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ub-trust-badge__icon {
    width: 20px;
    height: 20px;
    stroke: var(--accent-dark);
    flex-shrink: 0;
}

.ub-trust-badge__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Divider styling using pseudo-elements */
.ub-trust-badge:not(:first-child) {
    position: relative;
    padding-left: 24px;
}

.ub-trust-badge:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: var(--border-light);
}

/* Hero entrance: reveal on .loaded */
.ub-hero.loaded .ub-hero__wordmark-container,
.ub-hero.loaded .ub-hero__headline,
.ub-hero.loaded .ub-hero__subheadlines,
.ub-hero.loaded .ub-hero__ctas,
.ub-hero.loaded .ub-hero__trust-line,
.ub-hero.loaded .ub-hero__badges {
    opacity: 1;
    transform: translateY(0);
}

/* ── UNIFIED BUTTON SYSTEM ── */
.ub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--fs-label);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 48px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    text-decoration: none;
}

.ub-btn--primary {
    background: var(--accent);
    color: var(--accent-on);
}

.ub-btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.ub-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.35);
}

.ub-btn--primary:hover::before {
    left: 100%;
}

.ub-btn--secondary {
    background: transparent;
    color: var(--ink-primary);
    border: 2px solid var(--ink-primary);
}

.ub-btn--secondary:hover {
    background: var(--ink-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* Focus-visible for keyboard navigation */
.ub-btn:focus-visible,
.cta-primary:focus-visible,
.cta-secondary:focus-visible,
.faq-question:focus-visible,
.ub-header__nav a:focus-visible,
.ub-footer__link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ── REUSABLE GRID ── */
.ub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gutter);
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .ub-grid { grid-template-columns: repeat(2, 1fr); gap: calc(var(--gutter) * 0.75); }
}

@media (max-width: 767px) {
    .ub-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
}

/* ── SECTION CONTAINER ── */
.ub-section {
    padding: var(--space-xxl) var(--margin-desktop);
    max-width: calc(var(--container-max) + var(--margin-desktop) * 2);
    margin: 0 auto;
}

.ub-section__title {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

/* ── FEATURED PRODUCTS ── */
.ub-featured {
    background: var(--bg-secondary);
}

.ub-product-card {
    background: var(--bg-primary);
    cursor: pointer;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
}

.ub-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Dual-carousel */
.product-media-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.carousel-track {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.5s var(--ease-out);
}

.carousel-slide {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-3d-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-dots {
    position: absolute;
    bottom: var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.8);
}

.dot {
    width: 8px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.dot.active {
    background: var(--accent);
    width: 20px;
}

.ub-product-card__body {
    padding: var(--space-md);
}

.ub-product-card__name {
    font-family: var(--font-display);
    font-size: var(--fs-small);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-primary);
    margin-bottom: var(--space-xs);
}

.ub-product-card__price {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--ink-primary);
}

.ub-product-card__tag {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--ink-primary);
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    z-index: 30;
}

/* ── BRAND STORY ── */
.ub-story { background: var(--bg-primary); }

.ub-story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.ub-story__img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.ub-story__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.ub-story__img-wrap:hover .ub-story__img { transform: scale(1.03); }

.ub-story__content { max-width: 500px; }

.ub-story__headline {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--ink-primary);
    margin-bottom: var(--space-md);
}

.ub-story__text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    color: var(--ink-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* ── SEO CONTENT ── */
.ub-seo {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.ub-seo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: var(--container-max);
    margin: 0 auto;
}

.ub-seo h2 {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-primary);
    margin-bottom: var(--space-md);
}

.ub-seo h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-primary);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-md);
}

.ub-seo p {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--ink-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.ub-seo a { color: var(--accent-dark); text-decoration: none; font-weight: 500; }
.ub-seo a:hover { text-decoration: underline; }

/* Size guide */
.ub-size-guide {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    padding: var(--space-md);
}

.ub-size-guide li {
    list-style: none;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
    font-size: var(--fs-small);
    color: var(--ink-secondary);
    line-height: 1.6;
}

.ub-size-guide li:last-child { border-bottom: none; }
.ub-size-guide strong { color: var(--ink-primary); display: block; margin-bottom: 4px; }

/* Trust badges */
.ub-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.ub-trust-badge {
    text-align: center;
    padding: var(--space-md);
    border: 1px solid var(--border-light);
    background: var(--bg-primary);
}

.ub-trust-badge__icon { font-size: 1.5rem; margin-bottom: var(--space-xs); }
.ub-trust-badge__title {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-primary);
    margin-bottom: 4px;
}
.ub-trust-badge__desc { font-size: 0.75rem; color: var(--ink-tertiary); line-height: 1.4; }

/* ── ABOUT SECTION (HOMEPAGE) ── */
.ub-about {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
}

.ub-about__inner { max-width: 800px; margin: 0 auto; text-align: center; }

.ub-about__brand {
    font-family: var(--font-display);
    font-size: var(--fs-h1);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--ink-primary);
    margin-bottom: var(--space-xs);
}

.ub-about__since {
    font-family: var(--font-mono);
    font-size: var(--fs-small);
    color: var(--ink-tertiary);
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.ub-about__desc {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--ink-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Executive board */
.ub-exec { display: none; max-width: var(--container-max); margin: var(--space-xl) auto 0; }

.ub-exec__grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: var(--space-xl);
}

.ub-exec__divider { width: 1px; background: var(--border-light); }
.ub-exec__person { text-align: left; }

.ub-exec__role {
    font-family: var(--font-display);
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: var(--space-xs);
}

.ub-exec__name {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 900;
    color: var(--ink-primary);
    margin-bottom: var(--space-sm);
}

.ub-exec__details {
    list-style: none;
    padding: 0;
    font-size: var(--fs-small);
    color: var(--ink-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.ub-exec__details li { padding-left: 16px; position: relative; }
.ub-exec__details li::before { content: '\2192'; position: absolute; left: 0; color: var(--ink-tertiary); }

.ub-exec__icons { display: flex; gap: var(--space-sm); }

.ub-exec__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-light);
    background: var(--bg-primary);
    color: var(--ink-primary);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-bounce);
}

.ub-exec__icon-btn:hover {
    background: var(--ink-primary);
    color: var(--bg-primary);
    border-color: var(--ink-primary);
    transform: translateY(-3px);
}

/* ── SCROLL REVEAL (ub- variant) ── */
.ub-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.ub-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── WhatsApp Floating CTA ── */
.ub-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    z-index: 998;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease;
    text-decoration: none;
}

.ub-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Delivery modal */
#deliveryModal {
    overflow-y: auto !important;
    padding: 10px;
}

/* ── FOOTER (shared component — ub-footer) ── */
.ub-footer {
    background: #ffffff;
    border-top: 1px solid #e6e6e6;
    padding: 42px 32px 26px;
}

.ub-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.ub-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 1.1fr;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 18px;
    align-items: start;
}

.ub-footer__grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ub-footer__link {
    display: block;
    font-size: 0.95rem;
    color: #111111;
    padding: 6px 0;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    position: relative;
}

.ub-footer__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--ink-primary);
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.ub-footer__link:hover {
    color: var(--ink-primary);
    transform: translateX(4px);
}

.ub-footer__link:hover::after {
    width: 100%;
}

.ub-footer p {
    font-size: 0.95rem;
    color: #111111;
    line-height: 1.7;
    margin: 0;
}

.ub-footer h4 {
    font-family: var(--font-display);
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: #111111;
    margin: 0 0 12px;
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.ub-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ink-primary);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ub-footer h4:hover {
    color: var(--accent-dark, #00B8D4);
}

.ub-footer h4:hover::after {
    width: 100%;
}

.ub-footer__contact-row {
    display: grid;
    grid-template-columns: minmax(86px, auto) 1fr;
    gap: 4px 10px;
    align-items: start;
    margin: 0 0 10px;
    color: #111111;
    font-size: 0.95rem;
}

.ub-footer__contact-row strong {
    color: #111111;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.3;
    min-width: 0;
}

.ub-footer__contact-row a,
.ub-footer__contact-row span {
    color: #111111;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.ub-footer__contact-row a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ink-primary);
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.ub-footer__contact-row a:hover {
    color: var(--ink-primary);
}

.ub-footer__contact-row a:hover::after {
    width: 100%;
}

.ub-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.ub-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-light);
    color: var(--ink-secondary);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-bounce);
    text-decoration: none;
}

.ub-footer__social a:hover {
    color: var(--ink-primary);
    border-color: var(--ink-primary);
    transform: translateY(-2px);
}

.ub-footer__bottom {
    font-size: 0.74rem;
    color: var(--ink-tertiary);
    letter-spacing: 0.8px;
    text-align: left;
}

.ub-footer__logo {
    height: 36px;
    width: auto;
    margin-bottom: 10px;
    display: block;
    object-fit: contain;
    filter: none;
}

/* ── CONTACT CARDS ── */
.contact-grid {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--border-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-emoji {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: block;
}

.contact-card-title {
    color: var(--ink-primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.contact-card-info {
    color: var(--ink-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-card-info a {
    color: var(--ink-primary);
    text-decoration: none;
    font-weight: bold;
}

.contact-card .cta-primary,
.contact-card .cta-secondary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.8rem;
}

/* ── STATUS INDICATOR ── */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

.status-open {
    background: rgba(0, 200, 80, 0.1);
    border: 1px solid rgba(0, 200, 80, 0.3);
    color: #00A854;
}

.status-closed {
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    color: #E50054;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-open .status-dot {
    background: #00A854;
}

.status-closed .status-dot {
    background: #E50054;
}

/* ── FORMS ── */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: var(--ink-primary);
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 0;
    color: var(--ink-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--border-dark);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--ink-tertiary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23111111'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--bg-primary);
    color: var(--ink-primary);
}

.form-message {
    padding: 15px 20px;
    border-radius: 0;
    font-size: 0.95rem;
    margin-top: 15px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 200, 80, 0.1);
    border: 1px solid rgba(0, 200, 80, 0.3);
    color: #00A854;
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    color: #E50054;
}

/* ── FAQ ACCORDION ── */
.faq-search {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 0;
    color: var(--ink-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.faq-search input:focus {
    border-color: var(--border-dark);
    box-shadow: none;
}

.faq-search::before {
    content: '🔍';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
}

.faq-category {
    margin-bottom: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 35px;
    border-radius: 0;
    transition: all 0.4s var(--transition-smooth);
}

.faq-category:hover {
    border-color: var(--border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-category-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--ink-primary);
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 900;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--ink-primary);
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 0;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-dark);
}

.faq-item.active {
    border-color: var(--border-dark);
    box-shadow: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--ink-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    font-family: var(--font-body);
}

.faq-question:hover {
    color: var(--ink-primary);
}

.faq-question .faq-icon {
    font-size: 1.3rem;
    color: var(--ink-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── PRODUCT CARDS (Products Page) ── */
.products-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-page-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
}

.product-page-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: var(--bg-tertiary);
}

.product-page-card .product-img-wrap {
    height: 220px;
    overflow: hidden;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-page-card .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    mix-blend-mode: normal;
    opacity: 1;
}

.product-page-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-page-card .product-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-page-card .product-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-primary);
    margin-bottom: 10px;
}

.product-page-card .product-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-page-card .product-price {
    font-size: 1.4rem;
    color: var(--ink-primary);
    font-weight: bold;
    margin-top: auto;
    margin-bottom: 20px;
}

.product-page-card .product-actions {
    display: flex;
    gap: 12px;
}

.product-page-card .product-actions a,
.product-page-card .product-actions button {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    padding: 0;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* ── SPEC TABLE ── */
.spec-table-wrap {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 0;
    border: 1px solid var(--border-light);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.spec-table th {
    background: var(--bg-secondary);
    color: var(--ink-primary);
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--border-dark);
}

.spec-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}

.spec-table tr:hover td {
    background: var(--bg-tertiary);
}

.spec-table td:first-child {
    color: var(--ink-primary);
    font-weight: 600;
}

/* ── REVIEW CARDS ── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.review-section-header {
    text-align: center;
    margin-bottom: 24px;
}

.review-section-title {
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    margin-bottom: 8px;
}

.review-section-subtitle {
    margin: 0;
}

.review-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 20px;
    max-width: 620px;
    margin: 0 auto 28px;
    border: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.review-summary__g-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
}

.review-summary__g-mark svg {
    display: block;
    width: 100%;
    height: 100%;
}

.review-summary__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.review-summary__stars {
    display: flex;
    gap: 3px;
    color: var(--ink-primary);
    font-size: 1rem;
    letter-spacing: 0;
}

.review-summary__score {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink-primary);
}

.review-summary__meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.review-section .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
}

.review-card__name {
    margin: 0;
    color: var(--ink-primary);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
}

.review-card__stars {
    display: flex;
    flex-wrap: nowrap;
    gap: 3px;
    color: var(--ink-primary);
    font-size: 1rem;
    letter-spacing: 0;
}

.review-card__timestamp {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: -2px;
}

.review-card__body {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.review-card__body--truncated {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card__toggle {
    background: none;
    border: 0;
    padding: 0;
    color: var(--ink-primary);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
}

.review-card__disclaimer {
    margin-top: auto;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── TIMELINE (About Page) ── */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-dark);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ink-primary);
    border: 2px solid var(--bg-primary);
}

.timeline-year {
    font-family: var(--font-display);
    color: var(--ink-primary);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.timeline-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ── MAP SECTION ── */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-light);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2);
}

.map-overlay-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

/* ── HOURS TABLE ── */
.hours-table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
}

.hours-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--ink-primary);
}

.hours-table tr.closed td {
    color: #ff0055;
    opacity: 0.7;
}

/* ── UTILITY CLASSES ── */
.text-gradient {
    color: var(--ink-primary);
    -webkit-text-fill-color: var(--ink-primary);
    background: none;
}

.text-cyan {
    color: var(--ink-primary);
}

.text-gold {
    color: var(--ink-primary);
}

.text-muted {
    color: var(--text-secondary);
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

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

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
    .page-hero {
        padding: 120px 30px 50px;
    }

    .page-hero .section-title {
        font-size: 2.4rem;
    }

    .content-section {
        padding: 60px 30px;
    }

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

    .products-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .map-container {
        height: 400px;
    }

    /* Homepage tablet */
    .ub-hero {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }

    .ub-section {
        padding: var(--space-xl) var(--space-lg);
    }

    .ub-story__inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .ub-story__content { max-width: 100%; }
    .ub-seo__grid { grid-template-columns: 1fr; }

    .ub-exec__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .ub-exec__divider { display: none; }
    .ub-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 768px) {
    header {
        padding: 8px 20px;
        height: 60px;
    }

    .header-left {
        gap: 8px;
    }

    .logo-header {
        height: 35px;
    }

    .header-title {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        width: 100%;
        min-width: unset;
    }

    /* Ensure the `ub-header` variant hides desktop nav on mobile */
    .ub-header__nav {
        display: none;
    }

    .ub-hamburger {
        display: flex;
    }

    .ub-mobile-menu {
        width: 100%;
        min-width: unset;
        display: none; /* shown when .active via JS */
    }

    .page-hero {
        padding: 100px 20px 40px;
        min-height: 220px;
    }

    .page-hero .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .content-section {
        padding: 40px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .products-page-grid {
        grid-template-columns: 1fr;
    }

    .ub-footer {
        padding: 32px 20px 20px;
    }

    .ub-footer__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ub-footer__bottom {
        text-align: left;
    }

    .review-section .reviews-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        display: block;
    }

    /* Homepage mobile */
    .ub-hero {
        display: flex;
        flex-direction: column;
        padding: 60px 0 0 0; /* Align with header height */
        min-height: auto;
    }

    .ub-hero__bg {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1.2 / 1;
        order: 1;
        z-index: 1;
    }

    .ub-hero__bg img {
        object-position: center;
    }

    .ub-hero__overlay {
        display: none; /* No gradient overlay on mobile (solid white panel instead) */
    }

    .ub-hero__inner {
        order: 2;
        width: 100%;
        padding: var(--space-lg) var(--margin-mobile) var(--space-xl);
        background: var(--bg-primary);
        z-index: 2;
    }

    .ub-hero__content {
        max-width: 100%;
    }

    .ub-hero__ctas {
        flex-direction: column;
        width: 100%;
        gap: var(--space-xs);
    }

    .ub-hero__ctas .ub-btn {
        width: 100%;
    }

    .ub-hero__badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        width: 100%;
    }

    .ub-trust-badge:not(:first-child) {
        padding-left: 0;
    }

    .ub-trust-badge:not(:first-child)::before {
        display: none;
    }
    .ub-section { padding: var(--space-xl) var(--margin-mobile); }

    .cart-panel {
        width: 100%;
        top: auto;
        bottom: 0;
        height: 85vh;
        border-left: none;
        border-top: 1px solid var(--border-light);
        border-radius: 0;
        transform: translateY(100%);
    }

    .cart-overlay.active .cart-panel {
        transform: translateY(0);
    }

    .ub-product-card:hover {
        transform: none;
        box-shadow: none;
    }

    .ub-whatsapp-btn {
        width: 48px;
        height: 48px;
        right: 80px;
        bottom: 20px;
        font-size: 1.2rem;
    }
}

/* ── RESPONSIVE: SMALL PHONES ── */
@media (max-width: 480px) {
    .ub-header__logo-img, header.ub-header .ub-header__logo-img {
        height: 30px !important;
    }

    .ub-header__logo-text, header.ub-header .ub-header__logo-text {
        font-size: 1rem !important;
        letter-spacing: 2px !important;
    }

    .page-hero .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .content-section {
        padding: 30px 15px;
    }

    .contact-card {
        padding: 20px 15px;
    }

    .contact-emoji {
        width: 36px;
        height: 36px;
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 0.9rem;
    }

}

@media (max-width: 380px) {
    .ub-header__logo-img, header.ub-header .ub-header__logo-img {
        height: 26px !important;
    }

    .ub-header__logo-text, header.ub-header .ub-header__logo-text {
        font-size: 0.85rem !important;
        letter-spacing: 1.5px !important;
    }

    .page-hero .section-title {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }
}

/* ============================================================================
   SHARED CART & MODAL STYLES
   ============================================================================ */

/* ── MODAL WINDOW ── */
#modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
    will-change: opacity, visibility;
}

#modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    position: relative;
    transform: scale(0.85) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    will-change: transform, opacity;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

#modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    color: var(--ink-primary);
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--ink-primary);
    color: var(--bg-primary);
    transform: scale(1.1) rotate(90deg);
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.modal-left {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.modal-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: left;
}

#modal-image {
    width: 100%;
    border-radius: 0;
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    max-height: 250px;
    object-fit: cover;
}

#modal-3d-canvas {
    width: 100%;
    height: 300px;
    margin-bottom: 25px;
    border-radius: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    position: relative;
    cursor: grab;
    overflow: hidden;
}

#modal-3d-canvas:active {
    cursor: grabbing;
}

#modalName {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ink-primary);
    margin-bottom: 12px;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.color-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    color: var(--ink-secondary);
    padding: 8px 20px;
    margin: 5px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.color-btn:hover {
    border-color: var(--border-dark);
    color: var(--ink-primary);
}

.color-btn.active {
    background: var(--ink-primary);
    border-color: var(--border-dark);
    color: var(--bg-primary);
}

.btn-add-cart {
    width: 100%;
    background: var(--accent);
    color: var(--accent-on);
    padding: 15px;
    border-radius: 0;
    border: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-add-cart:hover {
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

.btn-add-cart:active {
    transform: scale(0.96);
}

.btn-add-cart.secondary {
    background: transparent;
    border: 2px solid var(--border-dark);
    color: var(--ink-primary);
}

.btn-add-cart.secondary:hover {
    background: var(--ink-primary);
    color: var(--bg-primary);
    box-shadow: none;
}

/* ── PREMIUM CART OVERLAY & PANEL ── */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-light);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.2, 1);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.cart-overlay.active .cart-panel {
    transform: translateX(0);
}

.cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: var(--accent);
    color: var(--accent-on);
    border: none;
    cursor: pointer;
    z-index: 998;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn.pulsing {
    animation: cartPulse 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--ink-primary);
    color: var(--bg-primary);
    width: 25px;
    height: 25px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: bold;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.bump {
    transform: scale(1.4);
}

.cart-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-family: var(--font-display);
    color: var(--ink-primary);
    font-size: 1.6rem;
    margin: 0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-weight: 900;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-footer {
    padding: 25px 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.cart-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    animation: slideInItem 0.4s ease forwards;
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item.removing {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
}

.cart-item-title {
    font-family: var(--font-display);
    color: var(--ink-primary);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 0;
    border: 1px solid var(--border-light);
    background: var(--bg-tertiary);
    color: var(--ink-primary);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover {
    background: var(--ink-primary);
    color: var(--bg-primary);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--accent-on);
    border: none;
    border-radius: 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.checkout-btn:hover {
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

/* ── RESPONSIVE CART OVERRIDES ── */
@media (max-width: 768px) {
    .cart-panel {
        width: 100%;
        top: auto;
        bottom: 0;
        height: 90vh;
        border-left: none;
        border-top: 1px solid var(--border-light);
        border-radius: 0;
        transform: translateY(100%);
    }

    .cart-overlay.active .cart-panel {
        transform: translateY(0);
    }

    .modal-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #modal-3d-canvas {
        height: 200px;
    }

    .modal-content {
        padding: 30px 20px;
        border-radius: 0;
    }

    .cart-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
        border-radius: 0;
    }

    .cart-badge {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
        border-radius: 0;
    }
}

/* Breadcrumbs Styling */
.breadcrumbs-container {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 20px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.breadcrumbs-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs-inner a {
    color: var(--ink-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs-inner a:hover {
    color: var(--ink-primary);
}

.breadcrumbs-separator {
    color: var(--ink-tertiary);
}

.breadcrumbs-current {
    color: var(--ink-primary);
}