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

:root {
    /* Psychological Color Theory Palette */
    --bg-clinical: #ffffff;
    /* Cleanliness, Precision, Modern Luxury */
    --surface-grey: #f8f9fa;
    /* subtle depth, technical feel */
    --text-authority: #1a202c;
    /* Engineering, Trust, Serious (Not harsh black) */
    --text-secondary: #4a5568;
    /* Supporting details */
    --signal-action: #c92a2a;
    /* Porsche DNA, Urgency, Desire (Use sparingly) */
    --signal-hover: #9b1c1c;
    /* Darker red for interaction feedback */

    --nav-height: 80px;
    --font-ui: 'Inter', sans-serif;
    --font-display: 'Inter', sans-serif;

    /* Animation Timing */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

body {
    font-family: var(--font-ui);
    background-color: var(--bg-clinical);
    color: var(--text-authority);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Button & CTA System */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 9999px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--signal-action);
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(201, 42, 42, 0.2);
}

.btn-primary:hover {
    background-color: var(--signal-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(201, 42, 42, 0.3);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-authority);
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Default for dark bg usage */
    transition: all var(--transition-fast);
}

.btn-ghost:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.98);
    /* Clinical white, almost solid */
    /* Removed blur for cleaner, sharper look, or keep subtle if preferred */
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-authority);
    text-decoration: none;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    opacity: 0;
    animation: scaleIn var(--transition-slow) forwards;
    display: flex;
    /* Align logo and text */
    align-items: center;
}

.brand-text {
    /* Animation: Option 2 (Tracking Expand) - Selected by User */
    animation: trackingExpand 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
    opacity: 0;
    display: inline-block;
    white-space: nowrap;
    animation-delay: 0.2s;
    /* Sync with logo */
}

@keyframes trackingExpand {
    0% {
        opacity: 0;
        letter-spacing: -0.1em;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
        letter-spacing: normal;
    }
}

.nav-logo {
    height: 60px;
    /* Increased size as requested */
    width: auto;
    margin-right: 15px;
    /* Slightly more space for larger logo */
    opacity: 0;

    /* Active Animation: Option C (Glossy Shimmer) */
    animation: logoShimmer 1.5s ease-out forwards;
    animation-delay: 0.2s;
}

/* Option A: Fade Slide */
@keyframes logoFadeSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

/* Option B: Spin Reveal */
@keyframes logoSpinReveal {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Option C: Glossy Shimmer Effect (requires container or pseudo-element usually, simplied here as a flash) */
@keyframes logoShimmer {
    0% {
        opacity: 0;
        filter: brightness(1);
    }

    50% {
        opacity: 1;
        filter: brightness(2);
    }

    100% {
        opacity: 1;
        filter: brightness(1);
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    opacity: 0;
    animation: slideUpFade var(--transition-normal) forwards;
}

/* Stagger delays for nav items */
.nav-links li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-links li:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-links a {
    position: relative;
    color: var(--text-authority);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Underline animation using pseudo-element */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--signal-action);
    transition: width var(--transition-fast), left var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--signal-action);
}

/* Nav Separators */
.nav-separator {
    color: var(--text-authority);
    opacity: 0.3;
    font-weight: 300;
    user-select: none;
    pointer-events: none;
}

/* Shopping Cart Icon */
.cart-icon {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-fast);
}

.cart-icon:hover svg {
    transform: scale(1.1);
}

.cart-icon::after {
    display: none;
    /* Remove underline from cart icon */
}

/* Special CTA in Nav (if needed) */
.nav-cta {
    padding: 0.6rem 1.4rem !important;
    background-color: var(--text-authority);
    color: #ffffff !important;
    border-radius: 2px;
}

.nav-cta:hover {
    background-color: #000;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    top: -10vh;
    left: 0;
    width: 100%;
    height: 120vh;
    z-index: 0;
    will-change: transform;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 20s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient to ensure text pop but keep image moody */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1.1;
    /* Fix huge gap between lines */
    margin-bottom: 0.5rem;
    color: #ffffff;

    /* Fade in "WE FEEL" */
    opacity: 0;
    animation: pureFadeIn 1.5s ease-out forwards;
    animation-delay: 0.3s;
    /* Smooth entry */
}

/* New SVG Drawing Animation */
.hero-drawing-text {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    height: auto;
    overflow: visible;
}

.drawing-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    /* Bold for impact */
    font-size: 80px;
    /* Base size for viewBox */
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 2px;
    stroke-dasharray: 400;
    /* Enough to cover letter path */
    stroke-dashoffset: 400;
    /* Start hidden */
    animation: drawStroke 3s ease-out forwards, fadeInFill 1s ease-out 2.5s forwards;
    /* Draw for 3s, then fill after 2.5s overlap */
    letter-spacing: 0.1em;
}

@keyframes drawStroke {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInFill {
    to {
        fill: #ffffff;
        stroke-width: 0;
        /* Optional: remove stroke after fill */
    }
}

@keyframes pureFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes drawFillClip {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
        border-right-color: transparent;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.7s;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.9s;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--bg-clinical);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--transition-normal), transform var(--transition-normal);
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li {
        opacity: 0;
        animation: slideUpFade 0.5s ease forwards;
    }

    .nav-links.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        /* Larger touch target */
        font-size: 1.1rem;
        /* Slightly larger text */
    }

    /* Change pipe to horizontal line on mobile */
    .nav-separator {
        color: transparent;
        font-size: 0;
        height: 1px;
        width: 60%;
        background-color: var(--text-authority);
        opacity: 0.2;
        margin: 0.5rem auto;
        display: block;
    }

    .hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-authority);
        position: absolute;
        transition: all var(--transition-fast);
        transform-origin: center;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 9px;
    }

    .hamburger span:nth-child(3) {
        top: 18px;
    }

    /* Hamburger Animation States */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

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

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 2rem;
    }

    .btn {
        width: 100%;
    }

    .brand-text {
        font-size: 1.2rem;
        white-space: normal;
        /* Allow wrapping if needed */
        line-height: 1.2;
    }

    .logo {
        max-width: 70%;
        /* Prevent pushing hamburger off */
    }

    .hero-bg-img {

        background-image: url('../assets/images/mobile-hero.png');
        background-size: contain;
        /* Show full width */
        background-repeat: no-repeat;
        background-position: center bottom;
        background-color: #000;
        /* Fill rest with black */
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%);
        /* Soft fade at top edge if needed, or just let black blend */
    }

    /* Footer Mobile Centering */
    .footer-container {
        text-align: center;
    }

    .footer-brand,
    .social-links {
        justify-content: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-line,
    .footer-tagline,
    .social-text {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand-text {
        font-size: 1.1rem;
        white-space: nowrap;
        /* Prevent stacking */
    }

    .footer-watermark {
        font-size: 5rem !important;
        /* Large to fill footer height */
        line-height: 1 !important;
        writing-mode: vertical-rl !important;
        text-orientation: upright !important;
        letter-spacing: -0.3rem !important;
        /* Tight spacing */
        width: auto !important;
        left: 50% !important;
        /* Center horizontally */
        right: auto !important;
        top: 50% !important;
        /* Center vertically */
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        /* Center both axes */
        text-align: center !important;
        opacity: 1 !important;
        color: rgba(255, 255, 255, 0.08) !important;
        /* Subtle */
        pointer-events: none !important;
        z-index: 0 !important;
    }

    .site-footer {
        overflow: visible;
        /* Allow vertical text to show */
        min-height: 400px;
    }

    /* Footer: 2-column at tablet (fills 769–900px gap where it was still 4-col) */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    /* Section padding reduction — 6–8rem is too much on tablet/mobile */
    .audience-section           { padding: 4rem 0; }
    .split-section              { padding: 4rem 0; }
    .products-section           { padding: 4rem 0; }
    .values-section             { padding: 3rem 0; }
    .services-accordion-section { padding: 5rem 0; }
    .passion-split-section      { padding: 4rem 0; }

    /* Headings that are too large at tablet */
    .split-col h3      { font-size: 1.8rem; }
    .section-header h2 { font-size: 2rem; }
}

/* Values Section - Technical Blueprint Design */
.values-section {
    padding: 6rem 0;
    min-height: 80vh;
    /* Ensure tall enough area */
    background-color: var(--surface-grey);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    z-index: 10;
}

.blueprint-header {
    margin-bottom: 4rem;
    border-bottom: 2px solid var(--text-authority);
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    color: var(--text-authority);
}

.blueprint-header .serial-no {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--signal-action);
    font-weight: 700;
}

/* Technical Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 300px 300px;
    gap: 2rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Grid Positioning */
.card-1 {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
}

.card-2 {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.card-3 {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .tech-grid {
        display: flex;
        flex-direction: column;
    }

    .tech-card {
        min-height: 250px;
    }

    .blueprint-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 1.2rem;
    }
}

/* Content Styling */
.tech-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    border-left: 2px solid var(--signal-action);
    padding-left: 10px;
}

/* Wrapper controls size and layout */
.tech-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: auto 0;
    flex-shrink: 0;
    /* Prevent squishing */
}

/* SVG fills the wrapper */
.tech-icon {
    width: 100%;
    height: 100%;
    stroke: var(--text-authority);
    stroke-width: 1;
    fill: none;
    transition: all 0.5s ease;
    display: block;
}

/* Ensure SVG content scales correctly */
.tech-icon svg,
svg.tech-icon {
    width: 100% !important;
    height: 100% !important;
}

.tech-card:hover .tech-icon {
    stroke: var(--signal-action);
    transform: scale(1.05);
}

.tech-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    color: var(--text-authority);
}

.tech-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Decorative Technical Lines */
.tech-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--text-secondary);
    border-right: 1px solid var(--text-secondary);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid var(--text-secondary);
    border-left: 1px solid var(--text-secondary);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-card:hover::before,
.tech-card:hover::after,
.tech-card.card-active::before,
.tech-card.card-active::after {
    opacity: 0.3;
}

/* Drawing Animation */
.tech-icon path,
.tech-icon circle {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    /* Animation waits for .is-visible class */
}

/* Trigger animation when section is revealed */
.tech-grid.is-visible .tech-icon path,
.tech-grid.is-visible .tech-icon circle {
    animation: drawLines 2.5s ease-out forwards;
}

@keyframes drawLines {
    to {
        stroke-dashoffset: 0;
    }
}

/* Stagger animations */
.card-1 .tech-icon * {
    animation-delay: 0.2s;
}

.card-2 .tech-icon * {
    animation-delay: 0.5s;
}

.card-3 .tech-icon * {
    animation-delay: 0.8s;
}

/* =========================================
   SWISS ANIMATION SECTION (Audience)
   ========================================= */

.audience-section {
    padding: 8rem 0;
    min-height: auto;
    background-color: var(--bg-color);
}

.swiss-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 4px solid var(--text-authority);
    margin-top: 4rem;
}

.swiss-col {
    padding: 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* Subtle divider */
    position: relative;
    transition: background 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.swiss-col:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.swiss-col:hover {
    background: #fff;
    /* Slight lift */
}

/* Number Typography/Wrapper */
.number-wrapper {
    width: 150px;
    height: 120px;
    margin-bottom: 2rem;
    position: relative;
}

.anim-number {
    width: 100%;
    height: 100%;
    fill: none;
    overflow: visible;
}

.swiss-col h3 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--text-authority);
}

.swiss-col p {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    max-width: 350px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- SVG ANIMATION --- */

/* The Static Base (Track) */
.track {
    stroke: rgba(0, 0, 0, 0.1);
    /* Subtle track */
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* The Moving Line (Racer) */
.racer {
    stroke: var(--signal-action);
    /* Signal Red */
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;

    /* 
       Dasharray: 20px line, 600px gap.
       Total cycle: 620px.
    */
    stroke-dasharray: 20 600;
    stroke-dashoffset: 620;
    /* Start fully offset */

    /* Slower: 6s loop */
    animation: raceLoop 6s linear infinite;
    animation-play-state: paused;
    /* Wait for hover */
    filter: drop-shadow(0 0 4px var(--signal-action));

    /* Hidden by default so it doesn't look "stuck" */
    opacity: 0;
    transition: opacity 0.5s ease;
}

@keyframes raceLoop {
    to {
        stroke-dashoffset: 0;
        /* Move exactly one cycle */
    }
}

/* Trigger on Hover */
.swiss-col:hover .racer {
    animation-play-state: running;
    opacity: 1;
    /* Fade in */
}

/* Mobile Responsiveness for Swiss Grid */
@media (max-width: 768px) {
    .swiss-grid {
        grid-template-columns: 1fr;
    }

    .swiss-col {
        padding: 2rem;
        border-right: none;
    }

    .swiss-col:first-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* SVG Optimization */
path,
circle {
    vector-effect: non-scaling-stroke;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* Split Section (Collectors & Drivers) */
.split-section {
    padding: 8rem 0;
    background-color: #ffffff;
    /* Clean white background for architectural feel */
}

.split-title {
    margin-bottom: 6rem;
    color: var(--text-authority);
    font-weight: 300;
}

.split-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.split-col {
    flex: 1;
    text-align: center;
    padding: 0 4rem;
}

.split-col h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    /* Large architectural heading */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-authority);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.split-col p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 300px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    /* Clean sans for body */
}

.split-divider {
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    /* Very subtle architectural line */
    height: 150px;
    margin-top: 10px;
}

/* Specific alignments for architectural balance */
.col-left {
    text-align: right;
}

.col-right {
    text-align: left;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    .split-divider {
        width: 60px;
        height: 1px;
        /* Horizontal line on mobile */
        margin: 0;
    }

    .col-left,
    .col-right {
        text-align: center;
        padding: 0;
    }
}

/* Option 1: Animated Axis (Living Divider) */
.animated-divider {
    position: relative;
    background-color: rgba(0, 0, 0, 0.05);
    /* Slightly lighter base */
    overflow: hidden;
}

.animated-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, #000, transparent);
    animation: drop 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes drop {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(400%);
    }
}

/* Product Showcase (Levitating Hero) */
.products-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    /* Slight contrast from white split section */
}

.levitate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.levitate-card-wrap {
    height: 420px;
    position: relative;
    cursor: default;
    /* Removed perspective/3D tilt container styles */
}

.levitate-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}



@media (hover: hover) {
    .levitate-card:hover {
        transform: translateY(-10px);
    }
}

.lev-glass {
    position: absolute;
    top: 80px;
    /* Moved down slightly to give more air at top */
    left: 0;
    width: 100%;
    height: 340px;
    /* Adjusted height */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
    transition: box-shadow 0.4s ease;
}

.levitate-card:hover .lev-glass {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.lev-img-wrapper {
    position: absolute;
    top: -20px;
    /* Moves image UP out of the card to reveal text below */
    left: 10%;
    right: 10%;
    height: 240px;
    z-index: 10;
    /* Above glass */
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.levitate-card:hover .lev-img-wrapper {
    transform: translateY(-15px) scale(1.02);
    /* Pop up slightly on hover */
}

.lev-img {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #e0e0e0, #f8f8f8); Removed for transparent PNG look */
    /* border-radius: 12px; Removed */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
}

/* REVEAL ON SCROLL ANIMATION */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* PREMIUM FOOTER */
.site-footer {
    background-color: #111;
    color: #fff;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer-watermark {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    /* Barely visible texture */
    white-space: nowrap;
    pointer-events: none;
    font-family: var(--font-display);
    z-index: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Brand Column */
.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
    /* Add space between shield and text */
    margin-bottom: 0;
    /* Remove bottom margin as flex handles layout */
    /* filter: brightness(0) invert(1); Removed to show original logo colors */
    opacity: 1;
    /* RESTORE full opacity */
}

.footer-brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 250px;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Navigation Links */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--signal-action);
    transition: width 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.footer-nav a:hover {
    color: var(--signal-action);
}

.footer-nav a:hover::after {
    width: 100%;
}

/* Contact Column */
.contact-line {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-line a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-line a:hover {
    color: var(--signal-action);
}

/* Social Column */
.social-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-watermark {
        font-size: 8rem;
        bottom: -20px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.lev-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 5;
}

.lev-cat {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

.lev-content h3 {
    margin: 0 0 10px 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-authority);
}

.lev-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.lev-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-authority);
    text-decoration: none;
    border-bottom: 1px solid var(--text-authority);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s;
}

.lev-link:hover {
    color: var(--signal-action);
    border-color: var(--signal-action);
}

/* Details Expansion */
.lev-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
}

.lev-content.active .lev-details {
    max-height: 100px;
    opacity: 1;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-label {
    font-weight: 600;
    font-size: 0.75rem;
    color: #999;
    margin-right: 5px;
}

/* =========================================
   STORE / SHOP STYLES
   ========================================= */

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    min-height: 200px;
}

.shop-loading,
.shop-empty,
.shop-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-secondary);
    font-family: 'Space Mono', monospace;
}

/* Card Design (Dual-Flow Porcelain) */
.shop-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease;
    /* CSS Variables for Spotlight */
    --spot-x: 50%;
    --spot-y: 50%;
}

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

/* Inner masking wrapper */
.shop-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
    background: #fff;
}

/* SVG Outline */
.shop-outline-svg {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

.shop-path-line {
    fill: none;
    stroke: var(--text-authority);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 0.8s ease-in-out;
    opacity: 0.8;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
}

.shop-card:hover .shop-path-line {
    stroke-dashoffset: 0;
    animation: breathe-stroke 3s infinite ease-in-out 0.8s;
}

@keyframes breathe-stroke {

    0%,
    100% {
        stroke-opacity: 0.8;
        stroke-width: 2.5;
        filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
    }

    50% {
        stroke-opacity: 0.4;
        stroke-width: 2;
        filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
    }
}

/* Image Stage */
.shop-img-stage {
    height: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbfbfd;
    position: relative;
    overflow: hidden;
}

/* Spotlight Effect */
.shop-img-stage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(0, 0, 0, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.shop-card:hover .shop-img-stage::after {
    opacity: 1;
}

.shop-img-stage img {
    width: 75%;
    height: auto;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
    transition: transform 0.1s linear;
    /* Physics handled by JS */
    will-change: transform;
}

/* Info Deck */
.shop-info-deck {
    padding: 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.shop-ref {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.05em;
}

.shop-stock-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    background: #f0f0f2;
    border-radius: 4px;
    color: #555;
    text-transform: uppercase;
    font-family: var(--font-ui);
}

.shop-stock-pill.low {
    background: #fff4e5;
    color: #f39c12;
}

.shop-stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34c759;
}

.shop-stock-pill.low .shop-stock-dot {
    background: #f39c12;
}

.shop-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0.5rem 0 0.25rem;
    color: var(--text-authority);
    line-height: 1.2;
}

.shop-price-wrapper {
    font-family: var(--font-ui);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-authority);
}

.shop-price-old {
    font-size: 0.9rem;
    color: #bbb;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

/* Actions */
.shop-actions-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.shop-card:hover .shop-actions-grid {
    opacity: 1;
}

.btn-shop-action {
    border: none;
    padding: 12px 0;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-shop-cart {
    background: transparent;
    border: 1px solid #e5e5e5;
    color: var(--text-authority);
}

.btn-shop-cart:hover {
    border-color: var(--text-authority);
    background: #fff;
}

.btn-shop-buy {
    background: var(--text-authority);
    color: #fff;
}

.btn-shop-buy:hover {
    background: var(--signal-action);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 42, 42, 0.3);
}

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

    .shop-card {
        min-height: 350px;
    }

    .shop-img-stage {
        height: 200px;
    }
}

/* New Shop Features */
.shop-psycho-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--signal-action);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 10;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.shop-price-sale {
    color: var(--signal-action);
}

/* animate-pulse for stock dot */
@keyframes shop-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.4);
    }

    70% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 6px rgba(52, 199, 89, 0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(52, 199, 89, 0);
    }
}

.animate-pulse {
    animation: shop-pulse 2s infinite;
}

.shop-stock-pill.low .animate-pulse {
    animation-name: shop-pulse-low;
}

@keyframes shop-pulse-low {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(243, 156, 18, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

.shop-stock-pill.out {
    background: #f8f9fa;
    color: #999;
}

.shop-stock-pill.out .shop-stock-dot {
    background: #ccc;
    animation: none;
}

.btn-disabled {
    background: #eee;
    color: #aaa;
    border: none;
}

/* Cart Badge */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--signal-action);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    height: 18px;
    min-width: 18px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4px;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    transform: scale(0.5);
    pointer-events: none;
}

.cart-badge.active {
    opacity: 1;
    transform: scale(1);
}

/* Toast */
.shop-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #111;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.shop-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Stock Colors */
.shop-stock-pill.in {
    background: #e6f9eb;
    color: #34c759;
}

.shop-stock-pill.in .shop-stock-dot {
    background: #34c759;
}

.shop-stock-pill.out {
    background: #ffe5e5;
    color: #ff3b30;
}

.shop-stock-pill.out .shop-stock-dot {
    background: #ff3b30;
}

/* Discount Tag */
.shop-discount-tag {
    display: inline-flex;
    align-items: center;
    background: #fff0f0;
    color: #e02b2b;
    border: 1px solid rgba(224, 43, 43, 0.15);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 8px;
    vertical-align: middle;
}

/* Gallery Nav */
.shop-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-authority);
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shop-gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.shop-gallery-nav.prev {
    left: 12px;
}

.shop-gallery-nav.next {
    right: 12px;
}

.shop-card:hover .shop-gallery-nav {
    opacity: 1;
}

/* Ensure image fade animation works */
.shop-img-stage img {
    /* Transition handled by JS LiquidCard engine to prevent conflict */
    transition: none;
}

/* =========================================
   Shop Controls (Search & Filters)
   ========================================= */
.shop-controls-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    animation: slideUpFade 0.6s ease-out forwards;
}

/* Search Bar */
.shop-search-bar {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.shop-search-bar input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    font-family: var(--font-ui);
    color: var(--text-authority);
    background: var(--surface-grey);
    border: 1px solid transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.shop-search-bar input:focus {
    outline: none;
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.shop-search-bar svg {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    transition: color 0.3s ease;
}

.shop-search-bar input:focus+svg {
    color: var(--text-authority);
}

/* Shop Filters Container */
.shop-filters {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Select Styling */
.shop-select {
    appearance: none;
    padding: 0.8rem 2.5rem 0.8rem 1.2rem;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-authority);
    background-color: var(--surface-grey);
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: all 0.2s ease;
}

.shop-select:hover,
.shop-select:focus {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Filter Toggles */
.filter-toggles {
    display: flex;
    gap: 0.5rem;
    background: var(--surface-grey);
    padding: 0.3rem;
    border-radius: 50px;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: var(--text-authority);
}

.filter-btn.active {
    background: #ffffff;
    color: var(--text-authority);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .shop-controls-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }

    .shop-search-bar {
        max-width: 100%;
        min-width: 0;
    }

    .shop-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filter-toggles {
        justify-content: space-between;
        overflow-x: auto;
        padding: 0.5rem;
    }

    .filter-btn {
        flex: 1;
        white-space: nowrap;
        text-align: center;
    }
}

/* =========================================
   LIQUID SEARCH BAR
   ========================================= */

.shop-search-liquid {
    position: relative;
    overflow: hidden;
    height: 54px;
    /* Explicit height */
    background: rgba(255, 255, 255, 0.6);
    /* Glassy start */
    border-radius: 50px;
    /* Restore Pill Shape */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Subtle border */
    backdrop-filter: blur(10px);
    /* Frosted glass effect */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-search-liquid:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.shop-search-liquid:focus-within {
    background: #ffffff;
    border-color: var(--text-authority);
    box-shadow:
        0 0 0 4px rgba(26, 32, 44, 0.05),
        /* Cool outline ring */
        0 8px 24px rgba(0, 0, 0, 0.06);
    /* TRANSFORM REMOVED to prevent icon jump */
}

/* Base SVG Layer */
.search-liquid-svg {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: 1;
    pointer-events: none;
    fill: none;
    /* stroke handling delegated to .shop-path-line */
}

/* Trigger Drawing Animation on Hover/Focus of Container */
.shop-search-liquid:hover .shop-path-line,
.shop-search-liquid:focus-within .shop-path-line {
    stroke-dashoffset: 0;
    animation: breathe-stroke 3s infinite ease-in-out 0.8s;
}

/* Content Layer (Input + Icon) */
.search-content-layer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.shop-search-liquid input {
    background: transparent;
    padding: 1rem 1rem 1rem 5rem;
    /* Increased to 5rem for generous spacing */
    width: 100%;
    height: 100%;
    font-size: 1rem;
    color: var(--text-authority);
    font-family: var(--font-ui);
    border: none;
    outline: none;
    box-shadow: none !important;
}

/* Icon Morphing */
.search-icon-wrapper {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-icon-base {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Active State (Class added via JS) */
.shop-search-liquid.is-typing .search-icon-base {
    color: var(--signal-action);
    /* Just highlight the loop */
}

/* Liquid Physics Variables */
.shop-search-liquid {
    --spot-x: 50%;
    --spot-y: 50%;
    --spot-opacity: 0;
}

.shop-search-liquid {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    /* Glassy start */
    border-radius: 50px;
    height: 54px;
    /* Explicit height to prevent focus jump */
    display: flex;
    align-items: center;
    /* Restore Pill Shape */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Subtle border */
    backdrop-filter: blur(10px);
    /* Frosted glass effect */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-search-liquid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at var(--spot-x) var(--spot-y),
            rgba(0, 0, 0, 0.04) 0%,
            transparent 50%);
    opacity: var(--spot-opacity);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* =========================================
   CUSTOM DROPDOWN
   ========================================= */
.custom-dropdown {
    position: relative;
    min-width: 180px;
    z-index: 100;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-authority);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Matches search bar */
    border-radius: 50px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dropdown-trigger:hover,
.custom-dropdown.open .dropdown-trigger {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: #4a5568;
}

.custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    /* Animation state: closed */
}

.custom-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-item {
    padding: 0.7rem 1rem;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: var(--text-authority);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-authority);
}


/* ----------------------------------------------------
   SHOPPING CART SIDEBAR
   ---------------------------------------------------- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 450px;
    max-width: 90vw;
    background: #f9f9f9;
    z-index: 9999;
    transform: translateX(100%);
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-sidebar.open {
    transform: translateX(0);
}

/* Header */
.cart-header {
    height: 80px;
    /* Match nav height roughly */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #f9f9f9;
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-authority);
}

.cart-count-header {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.cart-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-authority);
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Items Container */
.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.cart-empty-msg {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 3rem;
}

/* Single Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    /* Image | details | remove */
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: start;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    background: #f0f0f0;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-authority);
    line-height: 1.2;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Qty Controls */
.cart-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    width: fit-content;
    padding: 2px;
}

.qty-btn {
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-authority);
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.qty-display {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 1.2rem;
    text-align: center;
}

.cart-remove-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #cbd5e0;
    transition: color 0.2s;
    padding: 0.25rem;
}

.cart-remove-btn:hover {
    color: var(--signal-action);
}

/* Footer */
.cart-footer {
    background: #f0f0f0;
    padding: 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-authority);
}

.btn-checkout {
    width: 100%;
}

/* Promo Section Premium */
.cart-promo-section {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

#cart-promo-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-authority);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

#cart-promo-input:focus {
    outline: none;
    border-color: var(--text-authority);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

#cart-promo-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.btn-promo-apply {
    padding: 0 1.2rem;
    background: var(--text-authority);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-promo-apply:hover {
    background: var(--signal-action);
    /* Porsche Red on hover */
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(201, 42, 42, 0.25);
}

.btn-promo-apply:active {
    transform: scale(0.96);
}

.promo-msg {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    min-height: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding-left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-msg.success,
.promo-msg.error {
    max-height: 40px;
    /* Expand */
    opacity: 1;
    margin-top: 0.5rem;
}

.promo-msg.success {
    color: #276749;
    /* Deep Green */
    font-weight: 500;
}

.promo-msg.success::before {
    content: '✓';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #c6f6d5;
    color: #276749;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
}

.promo-msg.error {
    color: var(--signal-action);
    font-weight: 500;
}

.promo-msg.error::before {
    content: '!';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fed7d7;
    color: #c53030;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}


/* Shop Hero (Premium Redesign) */
.shop-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    margin-bottom: 2rem;
}

.shop-hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* For parallax */
    z-index: 1;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.shop-hero-img {
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/shop_hero_bg.png');
    /* Reuse main hero BG for continuity */
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(0.7);
    /* Slightly darker/blurred for distinction */
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(255, 255, 255, 1) 100%);
    /* Fade to white at bottom matches shop bg */
    z-index: 2;
}

/* Alternate Overlay for Dark Theme or just depth */
.shop-hero-overlay {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}


.shop-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.shop-hero-label {
    font-family: 'Space Mono', monospace;
    color: var(--signal-action);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.shop-hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.shop-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.shop-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .shop-hero-title {
        font-size: 2.5rem;
    }

    .shop-hero {
        height: 50vh;
    }
}

/* =========================================
   O NAS / ABOUT PAGE STYLES
   ========================================= */

/* Hero Section */
.about-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.about-hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/onas_hero.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) contrast(1.1);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 80%, #000 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-label-top {
    font-family: 'Space Mono', monospace;
    color: var(--signal-action);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

.hero-title-split {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 0.9;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-title-split .line-1 {
    font-size: 6rem;
    letter-spacing: -0.02em;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.2, 1, 0.3, 1) forwards 0.6s;
}

.hero-title-split .line-2 {
    font-size: 6rem;
    letter-spacing: 0.05em;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    transform: translateX(50px);
    opacity: 0;
    animation: slideInRight 1s cubic-bezier(0.2, 1, 0.3, 1) forwards 0.8s;
}

.hero-quote {
    margin-top: 3rem;
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.2s;
}

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

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

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

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


.scroll-prompt {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.scroll-txt {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: #fff;
    animation: growLine 2s infinite;
    transform-origin: top;
}

@keyframes growLine {
    0% {
        transform: scaleY(0);
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Passion Split Section */
.passion-split-section {
    background: #fff;
    padding: 6rem 0;
    overflow: hidden;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.split-txt-col h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-authority);
}

.split-txt-col p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blueprint-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--signal-action);
    margin-bottom: 1rem;
    display: block;
}

.parallax-img-wrapper {
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.parallax-img-inner {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transform: translateY(-10%);
    /* Starting pos */
    transition: transform 0.5s ease-out;
}

/* Services Accordion */
.services-accordion-section {
    background: #000;
    color: #fff;
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
}

.accordion-wrapper {
    display: flex;
    height: 500px;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-item {
    flex: 1;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.accordion-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion-item.active {
    flex: 3;
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.acc-num {
    font-family: 'Space Mono';
    opacity: 0.5;
    font-size: 0.9rem;
}

.acc-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.acc-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-item.active .acc-icon {
    transform: rotate(45deg);
    color: var(--signal-action);
}

.acc-body {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    position: relative;
    z-index: 2;
    display: none;
    /* Hide when closed to prevent reflow issues or just opacity */
}

.accordion-item.active .acc-body {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.acc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    filter: brightness(0.4);
}

.accordion-item.active .acc-bg {
    opacity: 1;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.03);
}


/* Info Grid */
.info-grid-section {
    padding: 6rem 0;
    background: var(--bg-clinical);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-box {
    padding: 3rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-authority);
}

.box-dark {
    background: #1a202c;
    color: #fff;
}

.box-dark h3 {
    color: #fff;
}

.box-dark p {
    opacity: 0.9;
}

@media (max-width: 900px) {
    .split-container {
        grid-template-columns: 1fr;
    }

    .hero-title-split .line-1,
    .hero-title-split .line-2 {
        font-size: 3.5rem;
    }

    .accordion-wrapper {
        flex-direction: column;
        height: auto;
    }

    .accordion-item.active {
        flex: none;
        height: 300px;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }
}
/* Language Toggle */
.lang-toggle-wrapper {
    margin-left: 0.5rem;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-ui);
}

.lang-option {
    color: var(--text-authority);
    text-decoration: none;
    opacity: 0.5;
    transition: all var(--transition-fast);
    cursor: pointer;
    font-weight: 500;
}

.lang-option:hover {
    opacity: 0.8;
}

.lang-option.active {
    opacity: 1;
    font-weight: 700;
    color: var(--signal-action);
}

.lang-separator {
    opacity: 0.3;
}

/* Mobile Adjustments for Lang Toggle */
@media (max-width: 768px) {
    .lang-toggle-wrapper {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .lang-toggle {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        background: rgba(0,0,0,0.03);
        border-radius: 20px;
    }
}

/* Levitate cards — fixed heights cause overflow/gaps on small phones */
@media (max-width: 600px) {
    .levitate-card-wrap { height: auto; min-height: 320px; }
    .lev-glass          { height: 250px; top: 50px; }
    .lev-img-wrapper    { height: 170px; }
    .lev-content        { padding: 20px; }
}

/* Small phones (iPhone SE, narrow Android) */
@media (max-width: 480px) {
    /* About/shop hero split title: 6rem → 3.5rem at 900px → 2.2rem at 480px */
    .hero-title-split .line-1,
    .hero-title-split .line-2 { font-size: 2.2rem; }

    /* Shop hero: min-height:500px takes 75% of an iPhone SE screen height */
    .shop-hero  { min-height: 300px; }

    /* About hero */
    .about-hero { min-height: 450px; }

    .hero-quote { font-size: 1rem; }
}

