/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&family=Lexend:wght@300&family=Luckiest+Guy&family=Montserrat:wght@600&family=Poppins:wght@400;500;600;700&family=Roboto+Mono:wght@300;400;500;600;700&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

@font-face {
  font-family: 'Fat Molly Local';
  src: url('../Homepage/assets/fonts/Fat Molly/FatMolly-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cooper Light';
  src: url('../Homepage/assets/fonts/Cooper/cooperl.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Trolleybus Trial';
    src: url('../Homepage/assets/Trolleybus/CopyrightBolditalicStudio-TrolleybusTrial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Even Mono Trial';
    src: url('../Homepage/assets/CopyrightBolditalicStudio-EvenMonoRegularTrial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'NType82';
    src: url('../Assets/NType82-Regular.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
  font-display: swap;
}

:root {
    --text-primary: #070707;
    --text-copy: rgba(7, 7, 7, 0.76);
    --background-primary: #ffffff;
        --font-family: 'Cutive Mono', monospace;
        --font-family-body: var(--font-family);
        --font-family-display: 'Trolleybus Trial', 'Cutive Mono', monospace;
        --font-family-subheading: 'NType82', 'Cutive Mono', monospace;
}

/* Header & Navigation Styles */
.top-banner {
  text-align: center;
  line-height: 40px;
  height: 40px;
    font-size: 0.98rem;
    font-weight: 300;
    color: #f9f2e6;
  background-color: #070707;
  border-bottom: 1px solid #E2E8F0;
    letter-spacing: 0;
    font-family: var(--font-family-subheading);
    font-variant-caps: normal;
}

/* Override to match pricing.html */
.top-banner {
    font-family: var(--font-family-subheading);
    background: #070707 !important;
    color: #fff !important;
}

header {
  background: #ffffff;
  width: 100%;
  border-bottom: 1px solid #E2E8F0;
    position: sticky;
  top: 0;
  z-index: 1000;
}

.secondary-header {
    display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
    padding: 0 40px;
}

.header-title {
  justify-self: start;
    font-family: var(--font-family-display);
  font-size: 2.1rem;
  color: #070707;
    text-decoration: none;
  transition: all 0.3s ease;
    position: relative;
}

.header-title:hover {
  background-image: url('../Homepage/assets/39c7ce68ca5edd7c2caff6038d529c2a.gif');
  background-size: 200% 200%;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  color: #718096;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
    font-family: var(--font-family);
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #070707;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav a:hover {
  color: #070707;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.cart-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}

.cart-nav:hover svg {
  stroke: #070707;
}

.cart-nav:hover .cart-count {
  color: #070707;
}

.cart-nav svg {
  width: 22px;
  height: 22px;
  stroke: #2D3748;
  stroke-width: 2;
  transition: stroke 0.2s ease;
}

/* Cart count font styling to match FAQ page */
.cart-nav .cart-count {
    font-family: var(--font-family-body) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
}

.cart-nav .cart-count {
  color: #2D3748;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  min-width: auto;
  height: auto;
  padding: 0;
  transition: color 0.2s ease;
}

/* General Body Styles */
body {
    font-family: var(--font-family-body);
    background-color: var(--background-primary);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Main Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 2rem 88px 2rem;
}

.about-page {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.about-intro {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about-kicker {
    font-family: var(--font-family-subheading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 14px;
}

.about-intro h1 {
    font-family: var(--font-family-display);
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
    color: #070707;
}

.about-lead {
    font-family: var(--font-family-body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-copy);
}

.about-grid {
    display: grid;
    gap: 28px;
}

.about-panel {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 32px;
    align-items: center;
    padding: 26px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    background: #ffffff;
}

.about-panel img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.about-panel-copy {
    max-width: 560px;
}

.about-label {
    font-family: var(--font-family-subheading);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}

.about-panel-copy h2 {
    font-family: var(--font-family-display);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: #070707;
}

.about-panel-copy p:last-child {
    font-family: var(--font-family-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-copy);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #070707 0%, #1a1a1a 50%, #2d3748 100%);
    border-radius: 32px;
    padding: 100px 60px;
    margin-bottom: 120px;
    overflow: hidden;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="0.3" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    margin-bottom: 120px;
}

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

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #070707;
    margin-bottom: 16px;
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.3rem;
    color: #6b7280;
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    position: relative;
}

.card-header {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-icon {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(7, 7, 7, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
}

.card-body {
    padding: 32px;
}

.card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #070707;
    margin-bottom: 16px;
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
}

.card-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
}

.card-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f8fafc;
    color: #475569;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
    border: 1px solid #e2e8f0;
}

/* Stats Section */
.stats-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 50px;
    border: 1px solid #f1f5f9;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

.stat-card:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: #070707;
    margin-bottom: 4px;
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-family: 'Cooper Light', 'Cooper Lt BT', 'DM Serif Display', serif;
    font-weight: 400;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1100px) {
    .container {
        margin: 0 auto;
        padding: 24px 16px 60px 16px;
    }

    .about-page {
        gap: 36px;
    }

    .about-intro {
        text-align: left;
        margin: 0;
    }

    .about-intro h1 {
        font-size: 2.4rem;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-grid {
        gap: 20px;
    }

    .about-panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 18px;
        border-radius: 0;
    }

    .about-panel-copy h2 {
        font-size: 1.55rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 60px 24px;
        margin-bottom: 80px;
        border-radius: 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        margin-top: 32px;
    }

    .feature-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* About Section Mobile */
    .about-section {
        margin-bottom: 80px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 1.1rem;
        padding: 0 16px;
    }

    /* Cards Container Mobile */
    .cards-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-card {
        border-radius: 16px;
    }

    .card-header {
        height: 200px;
    }

    .card-body {
        padding: 24px;
    }

    .card-body h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .card-body p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    /* Stats Section Mobile */
    .stats-section {
        padding: 30px 50px;
        border-radius: 12px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-card::after {
        display: none;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 3px;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Footer mobile optimization */
    .footer-content {
        gap: 60px !important;
    }
}

/* Footer Styling */
.footer {
    background: #070707;
    color: #ffffff;
    padding: 40px 0 20px 0;
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    margin-top: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 120px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-col {
    min-width: 180px;
    text-align: center;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 16px;
    font-family: 'Lexend', Arial, sans-serif;
    color: #ffffff;
    text-decoration: underline;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
}

.footer-col a:hover {
    font-weight: bold;
}

.footer-col p {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
    font-weight: 400;
}

.footer-title {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
}

/* ============================================
   MOBILE NAVIGATION STYLES
   ============================================ */

/* Burger menu styles - hidden by default */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: #070707;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile navigation overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 80px 40px 40px 40px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #070707;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10000;
    padding: 5px;
    user-select: none;
}

.mobile-nav-close:hover {
    color: #333;
}

.mobile-nav a {
    display: block;
    color: #070707;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: var(--font-family);
    letter-spacing: -0.05em;
    line-height: 1.1;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #333;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile - Tablet (768px and below) */
@media (max-width: 1100px) {
    /* Remove header blur/shadow on mobile - match pricing.html */
    header {
        box-shadow: none !important;
        border-bottom: none !important;
    }
    
    /* Header optimizations - Mobile layout - match pricing.html */
    .secondary-header {
        padding: 0 15px;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        position: relative;
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: none;
    }
    
    .cart-nav {
        position: absolute;
        left: 15px;
        align-self: center;
    }
    
    .header-title {
        font-size: 1.8rem !important;
        align-self: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav {
        display: none; /* Hide desktop nav */
    }
    
    .burger-menu {
        display: flex;
        position: absolute;
        right: 15px;
        align-self: center;
    }
    
    .mobile-nav {
        display: block;
    }

    /* Footer mobile optimization - Grid layout for precise positioning */
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-gap: 20px !important;
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        align-items: start !important;
    }

    /* Footer column styling */
    .footer-col {
        text-align: center;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    /* Position first column (Navigation) on the left */
    .footer-col:first-child {
        grid-column: 1;
        justify-self: start;
    }

    /* Position second column (Contact) on the right */
    .footer-col:nth-child(2) {
        grid-column: 2;
        justify-self: end;
    }

    /* Hide Social column in mobile view */
    .footer-col:last-child {
        display: none !important;
    }

    /* Show regular footer headings */
    .footer-col > h3 {
        font-size: 0.8rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        text-decoration: none !important;
    }

    /* Show regular footer content */
    .footer-col > ul,
    .footer-col > p {
        display: block !important;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col li {
        padding: 3px 0;
    }

    .footer-col p {
        padding: 3px 0;
        margin: 0;
    }

    .footer-col a,
    .footer-col p {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
        font-size: 0.7rem;
        line-height: 1.3;
        font-weight: 300;
    }

    .footer-col a:hover {
        color: #ddd;
        font-weight: 400;
    }

    /* Hide all dropdown elements */
    .footer-dropdown-header,
    .footer-dropdown-content,
    .footer-dropdown-arrow {
        display: none !important;
    }
}

/* Mobile - Small Screen (600px and below) */
@media (max-width: 600px) {
    .container {
        padding: 16px 12px 50px 12px;
    }

    .about-intro h1 {
        font-size: 2rem;
    }

    .about-panel {
        padding: 14px;
    }

    .about-panel-copy h2 {
        font-size: 1.35rem;
    }

    .about-panel-copy p:last-child {
        font-size: 0.95rem;
    }

    .hero-section {
        padding: 40px 16px;
        margin-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .about-section {
        margin-bottom: 60px;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .cards-container {
        gap: 24px;
    }

    .card-header {
        height: 180px;
    }

    .card-body {
        padding: 20px;
    }

    .card-body h3 {
        font-size: 1.2rem;
    }

    .card-body p {
        font-size: 0.9rem;
    }

    .stats-section {
        padding: 40px 16px;
    }

    .stats-container {
        gap: 32px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .mobile-nav {
        width: 280px;
        padding: 70px 30px 30px 30px;
    }
    
    .mobile-nav a {
        font-size: 1rem;
        padding: 12px 0;
    }

    /* Footer mobile optimization */
    .footer-content {
        gap: 40px !important;
    }
}

/* Mobile - Very Small Screen (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 12px 8px 40px 8px;
    }

    .hero-section {
        padding: 32px 12px;
        margin-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

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

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

    .section-header p {
        font-size: 0.95rem;
    }

    .cards-container {
        gap: 20px;
    }

    .card-header {
        height: 160px;
    }

    .card-body {
        padding: 16px;
    }

    .card-body h3 {
        font-size: 1.1rem;
    }

    .card-body p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .stats-section {
        padding: 32px 12px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .burger-menu {
        width: 22px;
        height: 16px;
    }

    .mobile-nav {
        width: 250px;
        padding: 65px 25px 25px 25px;
    }
    
    .mobile-nav a {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    /* Footer mobile optimization */
    .footer-content {
        gap: 25px !important;
    }
}

/* Mobile - Extra Small Screen (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 10px 6px 35px 6px;
    }

    .hero-section {
        padding: 28px 10px;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

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

    .hero-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

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

    .section-header p {
        font-size: 0.9rem;
    }

    .card-header {
        height: 140px;
    }

    .card-body {
        padding: 14px;
    }

    .card-body h3 {
        font-size: 1rem;
    }

    .card-body p {
        font-size: 0.8rem;
        margin-bottom: 14px;
    }

    .feature-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .stats-section {
        padding: 28px 10px;
    }

    .stats-container {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .burger-menu {
        width: 20px;
        height: 14px;
    }

    .mobile-nav {
        width: 220px;
        padding: 60px 20px 20px 20px;
    }
    
    .mobile-nav a {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    /* Footer mobile optimization */
    .footer-content {
        gap: 20px !important;
    }
}

/* Exact homepage header match */
header {
    background: var(--background-secondary) !important;
    width: 100% !important;
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.top-banner {
    text-align: center !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-variant-caps: normal !important;
    color: #f9f2e6 !important;
    background-color: #070707 !important;
    border-bottom: 1px solid var(--border-color) !important;
    letter-spacing: 0.05em !important;
    line-height: 1.1 !important;
}

.secondary-header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    height: 72px !important;
    padding: 0 40px !important;
}

.header-title {
    justify-self: start !important;
    font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-size: 2.35rem !important;
    letter-spacing: 0.05em !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    font-variant-caps: normal !important;
    text-transform: none !important;
    color: #070707 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: currentColor !important;
}

.header-title:hover {
    color: #070707 !important;
    text-decoration: none !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: currentColor !important;
}

.nav {
    display: flex !important;
    gap: 40px !important;
    justify-self: center !important;
}

.nav a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    font-size: 1.08rem !important;
    font-weight: 400 !important;
    font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-variant-caps: normal !important;
    text-transform: none !important;
    letter-spacing: -0.05em !important;
    line-height: 1 !important;
    position: relative !important;
    padding: 8px 4px !important;
    transition: color 0.3s ease !important;
}

.mobile-nav a {
    font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-weight: 400 !important;
    font-variant-caps: normal !important;
    text-transform: none !important;
    letter-spacing: -0.05em !important;
    line-height: 1.1 !important;
}

.nav a::after {
    background: var(--accent-color) !important;
}

.nav a:hover {
    color: var(--text-primary) !important;
}

.cart-nav {
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.cart-nav svg {
    width: 22px !important;
    height: 22px !important;
    stroke: var(--text-primary) !important;
    stroke-width: 2 !important;
    transition: stroke 0.2s ease !important;
}

.cart-nav .cart-count {
    font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.05em !important;
    line-height: 1.1 !important;
    font-variant-caps: normal !important;
    color: var(--text-primary) !important;
    background: transparent !important;
    min-width: auto !important;
    height: auto !important;
    padding: 0 !important;
    transition: color 0.2s ease !important;
}

.cart-nav:hover svg {
    stroke: var(--accent-color) !important;
}

.cart-nav:hover .cart-count {
    color: var(--accent-color) !important;
}

@media (max-width: 1100px) {
    header {
        box-shadow: none !important;
        border-bottom: none !important;
    }

    .secondary-header {
        padding: 0 15px !important;
        height: 65px !important;
        min-height: 65px !important;
        max-height: 65px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: none !important;
        grid-template-columns: none !important;
        grid-template-areas: none !important;
        grid-template-rows: none !important;
        grid: none !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .cart-nav {
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
    }

    .cart-nav svg {
        width: 1.4rem !important;
        height: 1.4rem !important;
    }

    .cart-nav .cart-count {
        font-family: 'Calibri', 'Arial', sans-serif !important;
        font-size: 0.9rem !important;
        font-weight: 400 !important;
        letter-spacing: -0.025em !important;
    }

    .header-title {
        font-size: 1.8rem !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    .nav {
        display: none !important;
        grid-area: unset !important;
    }

    .burger-menu {
        display: flex !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        width: 24px !important;
        height: 18px !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .mobile-nav {
        display: block !important;
    }
}

@media (max-width: 600px) {
    .mobile-nav {
        width: 280px !important;
        padding: 70px 30px 30px 30px !important;
    }

    .mobile-nav a {
        font-size: 1.08rem !important;
        padding: 12px 0 !important;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 250px !important;
        padding: 65px 25px 25px 25px !important;
    }

    .mobile-nav a {
        font-size: 1rem !important;
    }
}

/* Homepage footer match */
.footer {
    background: #070707 !important;
    color: #fcfcfa !important;
    padding: 40px 28px !important;
    font-family: 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-size: 16px !important;
    margin-top: 0 !important;
    width: 100% !important;
}

.footer,
.footer * {
    color: #fcfcfa !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
    align-items: flex-start !important;
    gap: 32px 72px !important;
    max-width: 980px !important;
    margin: 0 auto !important;
}

.footer-col {
    min-width: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.footer-col h3,
.footer-title {
    font-size: 18px !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    letter-spacing: 0.05em !important;
    line-height: 1.1 !important;
    color: #fcfcfa !important;
    text-decoration: none !important;
}

.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.footer-col ul li {
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.footer-col a,
.footer-col p {
    color: #fcfcfa !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-weight: 400 !important;
    letter-spacing: -0.05em !important;
    line-height: 1.35 !important;
}

.footer-col p {
    margin: 0 !important;
}

@media (max-width: 1100px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-gap: 20px !important;
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        align-items: start !important;
    }

    .footer-col {
        text-align: center !important;
        margin-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    .footer-col:first-child {
        grid-column: 1 !important;
        justify-self: start !important;
    }

    .footer-col:nth-child(2) {
        grid-column: 2 !important;
        justify-self: end !important;
    }

    .footer-col:last-child {
        display: none !important;
    }

    .footer-col > h3 {
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: rgba(249, 242, 230, 0.95) !important;
        margin-bottom: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0 !important;
        line-height: 1.1 !important;
        text-decoration: none !important;
    }

    .footer-col > ul,
    .footer-col > p {
        display: block !important;
    }

    .footer-col ul {
        display: block !important;
    }

    .footer-col li {
        padding: 3px 0 !important;
    }

    .footer-col p {
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .footer-col a,
    .footer-col p {
        color: rgba(249, 242, 230, 0.8) !important;
        display: block !important;
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        font-weight: 300 !important;
    }

    .footer-dropdown-header,
    .footer-dropdown-content,
    .footer-dropdown-arrow {
        display: none !important;
    }
}

/* Exact homepage footer */
.footer {
    background: #070707 !important;
    color: #f9f2e6 !important;
    padding: 40px 28px !important;
    font-family: 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-size: 16px !important;
    margin-top: 0 !important;
    width: 100% !important;
}

.footer,
.footer * {
    color: #f9f2e6 !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
    align-items: flex-start !important;
    gap: 32px 72px !important;
    max-width: 980px !important;
    margin: 0 auto !important;
}

.footer-col {
    min-width: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.footer-col h3,
.footer h3,
.footer-title {
    font-size: 18px !important;
    font-weight: 300 !important;
    margin-bottom: 0 !important;
    font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    letter-spacing: 0.05em !important;
    line-height: 1.1 !important;
    color: #f9f2e6 !important;
    text-decoration: none !important;
}

.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.footer-col ul li {
    margin-bottom: 0 !important;
}

.footer a,
.footer p,
.footer li,
.footer-col a,
.footer-col p {
    color: #f9f2e6 !important;
    text-decoration: none !important;
    font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-weight: 400 !important;
    letter-spacing: -0.05em !important;
    line-height: 1.1 !important;
}

.footer-col p {
    margin: 0 !important;
}

@media (max-width: 1100px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-gap: 20px !important;
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        align-items: start !important;
    }

    .footer-col {
        text-align: center !important;
        margin-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    .footer-col:first-child {
        grid-column: 1 !important;
        justify-self: start !important;
    }

    .footer-col:nth-child(2) {
        grid-column: 2 !important;
        justify-self: end !important;
    }

    .footer-col:last-child {
        display: none !important;
    }

    .footer-col > h3 {
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: rgba(249, 242, 230, 0.95) !important;
        margin-bottom: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0 !important;
        line-height: 1.1 !important;
        text-decoration: none !important;
    }

    .footer-col > ul,
    .footer-col > p {
        display: block !important;
    }

    .footer-col ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }

    .footer-col li {
        padding: 3px 0 !important;
    }

    .footer-col p {
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .footer-col a,
    .footer-col p {
        color: rgba(249, 242, 230, 0.8) !important;
        text-decoration: none !important;
        display: block !important;
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        font-weight: 300 !important;
        letter-spacing: -0.05em !important;
    }

    .footer-dropdown-header,
    .footer-dropdown-content,
    .footer-dropdown-arrow {
        display: none !important;
    }
}

/* Migrated from page head styles */

@font-face { font-family: 'Trolleybus Trial'; src: url('../Homepage/assets/Trolleybus/CopyrightBolditalicStudio-TrolleybusTrial.otf') format('opentype');   font-display: swap;
}
            @font-face { font-family: 'Even Mono Trial'; src: url('../Homepage/assets/CopyrightBolditalicStudio-EvenMonoRegularTrial.otf') format('opentype');   font-display: swap;
}
            .top-banner { text-align: center !important; height: 40px !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 1rem !important; font-weight: 300 !important; font-family: 'Even Mono Trial', 'Roboto Mono', monospace !important; font-variant-caps: small-caps !important; color: #f9f2e6 !important; background-color: #070707 !important; border-bottom: 1px solid rgba(0,0,0,0.08) !important; letter-spacing: 0 !important; line-height: 1.1 !important; }
            header { background: #ffffff !important; width: 100% !important; border-bottom: 1px solid rgba(0,0,0,0.08) !important; box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important; position: sticky !important; top: 0 !important; z-index: 1000 !important; }
            .secondary-header { display: grid !important; grid-template-columns: 1fr auto 1fr !important; align-items: center !important; height: 72px !important; padding: 0 40px !important; background: #ffffff !important; }
            .header-title { justify-self: start !important; font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important; font-size: 2.35rem !important; letter-spacing: 0.05em !important; line-height: 1 !important; font-weight: 400 !important; color: #070707 !important; text-decoration: none !important; }
            .nav { display: flex !important; gap: 40px !important; justify-self: center !important; }
            .nav a { color: #3b3b3b !important; text-decoration: none !important; font-size: 1.08rem !important; font-weight: 400 !important; font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important; letter-spacing: -0.05em !important; line-height: 1 !important; position: relative !important; padding: 8px 4px !important; transition: color 0.3s ease !important; }
            .nav a::after { content: '' !important; position: absolute !important; bottom: 0 !important; left: 0 !important; width: 100% !important; height: 2px !important; background: #070707 !important; transform: scaleX(0) !important; transform-origin: center !important; transition: transform 0.3s cubic-bezier(0.19,1,0.22,1) !important; }
            .nav a:hover { color: #070707 !important; } .nav a:hover::after { transform: scaleX(1) !important; }
            .cart-nav { justify-self: end !important; display: flex !important; align-items: center !important; gap: 6px !important; text-decoration: none !important; }
            .cart-nav svg { width: 22px !important; height: 22px !important; stroke: #070707 !important; stroke-width: 2 !important; }
            .cart-nav .cart-count { color: #070707 !important; background: transparent !important; font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important; font-size: 0.9rem !important; font-weight: 400 !important; letter-spacing: -0.05em !important; line-height: 1.1 !important; min-width: auto !important; height: auto !important; padding: 0 !important; }
            .burger-menu { display: none !important; flex-direction: column !important; cursor: pointer !important; width: 24px !important; height: 18px !important; justify-content: space-between !important; }
            .burger-line { width: 100% !important; height: 2px !important; background-color: #070707 !important; transition: all 0.3s ease !important; }
            .burger-menu.active .burger-line:nth-child(1) { transform: rotate(45deg) translate(5px,5px) !important; } .burger-menu.active .burger-line:nth-child(2) { opacity: 0 !important; } .burger-menu.active .burger-line:nth-child(3) { transform: rotate(-45deg) translate(7px,-6px) !important; }
            .mobile-nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 9998; }
            .mobile-nav { display: none; position: fixed; top: 0; right: -300px; width: 300px; height: 100%; background: #ffffff; z-index: 9999; transition: right 0.3s ease; padding: 80px 40px 40px 40px; box-shadow: -2px 0 10px rgba(0,0,0,0.1); }
            .mobile-nav.active { right: 0; }
            .mobile-nav-close { position: absolute; top: 20px; right: 20px; font-size: 2rem; color: #070707; cursor: pointer; font-weight: 300; line-height: 1; transition: color 0.3s ease; z-index: 10000; padding: 5px; user-select: none; }
            .mobile-nav a { display: block; color: #070707; text-decoration: none; font-size: 1.1rem; font-weight: 300; font-family: 'Even Mono Trial', 'Roboto Mono', monospace; letter-spacing: 0; padding: 15px 0; border-bottom: 1px solid #f0f0f0; transition: color 0.3s ease; }
            @media (max-width: 1100px) { .secondary-header { padding: 0 15px !important; grid-template-columns: auto 1fr auto !important; gap: 15px !important; background: #ffffff !important; } .header-title { font-size: 52px !important; } .cart-nav { justify-self: start !important; } .nav { display: none !important; } .burger-menu { display: flex !important; order: 1 !important; justify-self: end !important; } .mobile-nav { display: block; } }
            @media (max-width: 480px) { .secondary-header { padding: 0 10px !important; height: 60px !important; gap: 10px !important; } .header-title { font-size: 52px !important; } .burger-menu { width: 22px !important; height: 16px !important; } .mobile-nav { width: 250px; padding: 65px 25px 25px 25px; } }

.footer {
                background: #070707 !important;
                color: #f9f2e6 !important;
                padding: 40px 28px !important;
                font-family: 'Even Mono Trial', 'Roboto Mono', monospace !important;
                font-size: 16px !important;
                margin-top: 0 !important;
                width: 100% !important;
            }

            .footer,
            .footer * {
                color: #f9f2e6 !important;
            }

            .footer-content {
                display: grid !important;
                grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
                align-items: flex-start !important;
                gap: 32px 72px !important;
                max-width: 980px !important;
                margin: 0 auto !important;
            }

            .footer-col {
                min-width: 0 !important;
                text-align: center !important;
                display: flex !important;
                flex-direction: column !important;
                gap: 14px !important;
            }

            .footer-col h3,
            .footer-title {
                font-size: 18px !important;
                font-weight: 400 !important;
                margin-bottom: 0 !important;
                font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
                letter-spacing: 0.05em !important;
                line-height: 1.1 !important;
                color: #f9f2e6 !important;
                text-decoration: none !important;
            }

            .footer-col ul {
                list-style: none !important;
                padding: 0 !important;
                margin: 0 !important;
                display: flex !important;
                flex-direction: column !important;
                gap: 10px !important;
            }

            .footer-col ul li {
                margin-bottom: 0 !important;
            }

            .footer a,
            .footer p,
            .footer li,
            .footer-col a,
            .footer-col p {
                font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
                font-weight: 400 !important;
                letter-spacing: -0.05em !important;
                line-height: 1.1 !important;
                text-decoration: none !important;
                color: #f9f2e6 !important;
            }

            .footer-col p {
                margin: 0 !important;
            }

            .footer-dropdown-header,
            .footer-dropdown-content,
            .footer-dropdown-arrow {
                display: none !important;
            }

            @media (max-width: 1100px) {
                .footer-content {
                    grid-template-columns: 1fr 1fr !important;
                    grid-gap: 20px !important;
                    padding: 20px 15px !important;
                    width: 100% !important;
                    box-sizing: border-box !important;
                    align-items: start !important;
                }

                .footer-col {
                    margin-bottom: 0 !important;
                    align-items: center !important;
                    justify-content: flex-start !important;
                    gap: 0 !important;
                }

                .footer-col:first-child {
                    grid-column: 1 !important;
                    justify-self: start !important;
                }

                .footer-col:nth-child(2) {
                    grid-column: 2 !important;
                    justify-self: end !important;
                }

                .footer-col:last-child {
                    display: none !important;
                }

                .footer-col > h3 {
                    font-size: 0.8rem !important;
                    font-weight: 500 !important;
                    color: rgba(249, 242, 230, 0.95) !important;
                    margin-bottom: 12px !important;
                    text-transform: uppercase !important;
                    letter-spacing: 0 !important;
                    line-height: 1.1 !important;
                }

                .footer-col > ul,
                .footer-col > p {
                    display: block !important;
                }

                .footer-col ul {
                    display: block !important;
                }

                .footer-col li,
                .footer-col p {
                    padding: 3px 0 !important;
                }

                .footer-col a,
                .footer-col p {
                    color: rgba(249, 242, 230, 0.8) !important;
                    display: block !important;
                    font-size: 0.7rem !important;
                    line-height: 1.3 !important;
                    font-weight: 300 !important;
                }
            }

.top-banner {
                font-family: var(--font-family-subheading) !important;
                font-weight: 400 !important;
                letter-spacing: 0.05em !important;
                line-height: 1.1 !important;
                font-variant-caps: normal !important;
            }

            .secondary-header {
                height: 72px !important;
                padding: 0 40px !important;
                margin-top: 0 !important;
                margin-bottom: 0 !important;
            }

            .header-title,
            .nav,
            .cart-nav,
            .burger-menu {
                margin-top: 0 !important;
                margin-bottom: 0 !important;
            }

            @media (max-width: 1100px) {
                .secondary-header {
                    padding: 0 15px !important;
                    gap: 15px !important;
                }
            }

            @media (max-width: 480px) {
                .secondary-header {
                    padding: 0 10px !important;
                    height: 60px !important;
                    gap: 10px !important;
                }
            }

            .nav a,
            .mobile-nav a,
            .legacy-nav a,
            .legacy-mobile-nav a {
                font-family: var(--font-family-subheading) !important;
            }

/* About page spacing */
html {
  min-height: 100%;
}

body {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}

.about-page {
  flex: 0 0 auto;
  padding-bottom: 64px !important;
}

.footer {
  margin-top: auto !important;
  flex-shrink: 0;
}
/* Shared mobile header and pricing-style drawer */
@media (max-width: 1100px) {
  header {
    background: #ffffff !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }

  .top-banner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 40px !important;
    height: auto !important;
    padding: 8px 16px !important;
    background: #070707 !important;
    color: #f9f2e6 !important;
    border: 0 !important;
    text-align: center !important;
    font-family: var(--homepage-font-subheading, var(--font-family-subheading, 'NType82')) !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-variant-caps: normal !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
  }

  .secondary-header {
    box-sizing: border-box !important;
    position: relative !important;
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) 72px !important;
    align-items: center !important;
    width: 100% !important;
    height: 65px !important;
    min-height: 65px !important;
    max-height: 65px !important;
    padding: 0 15px !important;
    gap: 0 !important;
    background: #ffffff !important;
    color: #070707 !important;
    border: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  .secondary-header .cart-nav {
    position: static !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    transform: none !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #2d3748 !important;
    text-decoration: none !important;
  }

  .secondary-header .cart-nav svg {
    width: 1.35rem !important;
    height: 1.35rem !important;
    stroke: #2d3748 !important;
    stroke-width: 2 !important;
  }

  .secondary-header .cart-nav .cart-count,
  .secondary-header .cart-count {
    color: #2d3748 !important;
    background: transparent !important;
    font-family: var(--homepage-font-body, var(--font-family, 'Cutive Mono')) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.05em !important;
    line-height: 1.1 !important;
  }

  .secondary-header .header-title {
    position: static !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    transform: translateY(4px) !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 65px !important;
    color: #070707 !important;
    text-decoration: none !important;
    font-family: var(--homepage-font-title, var(--font-family-display, 'Trolleybus Trial')) !important;
    font-size: clamp(2.25rem, 10vw, 3.25rem) !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-variant-caps: normal !important;
    text-transform: none !important;
    letter-spacing: 0.05em !important;
    line-height: 0.95 !important;
    white-space: nowrap !important;
  }

  .secondary-header .nav {
    display: none !important;
  }

  .secondary-header .burger-menu {
    position: static !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    transform: none !important;
    margin: 0 !important;
    display: flex !important;
    width: 24px !important;
    height: 18px !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    cursor: pointer !important;
  }

  .secondary-header .burger-line,
  .burger-menu .burger-line {
    width: 100% !important;
    height: 2px !important;
    background: #070707 !important;
    transition: all 0.3s ease !important;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0 !important;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px) !important;
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 9998 !important;
  }

  .mobile-nav-overlay.active {
    display: block !important;
  }

  .mobile-nav {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: -300px !important;
    width: min(300px, 82vw) !important;
    height: 100vh !important;
    padding: 78px 28px 28px !important;
    background: #ffffff !important;
    box-shadow: -2px 0 14px rgba(0, 0, 0, 0.08) !important;
    transition: right 0.3s ease !important;
    z-index: 9999 !important;
  }

  .mobile-nav.active {
    right: 0 !important;
  }

  .mobile-nav-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    padding: 4px !important;
    color: #070707 !important;
    font-family: var(--homepage-font-body, var(--font-family, 'Cutive Mono')) !important;
    font-size: 2rem !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    cursor: pointer !important;
  }

  .mobile-nav a {
    display: block !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(7, 7, 7, 0.08) !important;
    color: #070707 !important;
    text-decoration: none !important;
    font-family: var(--homepage-font-body, var(--font-family, 'Cutive Mono')) !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.05em !important;
    line-height: 1.1 !important;
  }

  .mobile-nav a:last-child {
    border-bottom: 0 !important;
  }
}
/* Exact Pricing mobile footer */
.footer,
footer.footer {
  box-sizing: border-box !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 32px 20px 36px !important;
  background: #070707 !important;
  color: #f9f2e6 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer,
.footer * {
  color: #f9f2e6 !important;
}

.footer .footer-content,
footer.footer .footer-content,
.footer-content {
  box-sizing: border-box !important;
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  align-items: start !important;
  justify-items: stretch !important;
}

.footer .footer-content .footer-col,
.footer .footer-content .footer-col:first-child,
.footer .footer-content .footer-col:nth-child(2),
.footer .footer-content .footer-col:nth-child(3),
.footer .footer-content .footer-col:last-child,
.footer-col,
.footer-col:first-child,
.footer-col:nth-child(2),
.footer-col:nth-child(3),
.footer-col:last-child {
  box-sizing: border-box !important;
  display: flex !important;
  flex: initial !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  grid-column: auto !important;
  grid-row: auto !important;
  order: initial !important;
  text-align: left !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer .footer-content .footer-col > h3,
.footer .footer-content .footer-col h3,
.footer-col h3,
.footer h3,
.footer-title {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Trolleybus Trial', 'Cutive Mono', monospace !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.1 !important;
  text-align: left !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.footer .footer-content .footer-col > ul,
.footer .footer-content .footer-col ul,
.footer-col ul,
.footer-col > ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer .footer-content .footer-col ul li,
.footer-col ul li,
.footer-col li,
.footer li {
  display: list-item !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer .footer-content .footer-col > p,
.footer .footer-content .footer-col p,
.footer .footer-content .footer-col a,
.footer-col a,
.footer-col p,
.footer-col > p,
.footer li,
.footer p,
.footer a,
.footer-col p a {
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  text-decoration: none !important;
  font-family: 'Cutive Mono', monospace !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  letter-spacing: -0.05em !important;
  line-height: 1.35 !important;
  text-transform: none !important;
}

.footer .footer-content .footer-col > p,
.footer .footer-content .footer-col p,
.footer-col p,
.footer-col > p,
.footer p {
  display: block !important;
}

.footer .footer-content .footer-col a,
.footer-col a,
.footer a,
.footer-col p a {
  display: inline !important;
}

.footer-dropdown-header,
.footer-dropdown-content,
.footer-dropdown-arrow {
  display: none !important;
}

@media (max-width: 1100px) {
  .about-panel {
    border: 0 !important;
    box-shadow: none !important;
  }

  .about-panel:nth-child(1) {
    order: 3;
  }

  .about-panel:nth-child(2) {
    order: 1;
  }

  .about-panel:nth-child(3) {
    order: 2;
  }

  .about-panel img {
    border-radius: 6px !important;
  }
}
