/* ===== CSS Reset & Variables ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    /* New Lovable Colors */
    --primary-green: #10b981;
    --primary-green-light: #34d399;
    --primary-dark: #1e3a4c;
    --primary-dark-deep: #15303d;
    --accent-blue: #0ea5e9;
    --secondary: #64748b;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --success: #10b981;
    --gray-light: #f8fafc;
    --gray-medium: #e2e8f0;
    --border-color: #e2e8f0;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1e3a4c 0%, #2d5a6e 50%, #1e4a5c 100%);
    --gradient-dark: linear-gradient(135deg, #1e3a4c 0%, #15303d 100%);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-size-base: 16px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Layout */
    --max-width: 1280px;
    --header-height: 72px;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Utility Classes ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
    background-color: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

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

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--white);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    height: 60px;
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    font-size: 1rem;
}

.logo img {
    height: 52px;
    width: auto;
    max-width: none;
    transition: height var(--transition-normal);
}

.header.scrolled .logo img {
    height: 44px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link.active {
    color: var(--primary-green);
    font-weight: var(--font-weight-semibold);
}

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

/* Dropdown arrows removed per user request */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 1001;
    border: 1px solid var(--border-color);
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.header-btn-outline,
.header-btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--primary-green);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    line-height: 1.2;
    white-space: nowrap;
}

.header-btn-outline {
    background-color: transparent;
    color: var(--primary-green);
}

.header-btn-outline:hover {
    border-color: var(--primary-green);
    background-color: rgba(16, 185, 129, 0.1);
}

.header-btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.header-btn-primary:hover {
    background-color: var(--primary-green-light);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Quote Buttons - Responsive */
.nav-quote-mobile {
    display: none;
}

.nav-phone-mobile {
    white-space: nowrap;
}

.nav-phone-mobile a {
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
}

.btn-nav-desktop {
    display: inline-flex;
}

/* ===== Mobile Navigation ===== */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px var(--spacing-lg) var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        gap: var(--spacing-sm);
    }

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

    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .nav-link:hover {
        color: var(--primary-green);
    }

    /* Mobile dropdown styles */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > .nav-link::after {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 0;
        margin-top: 0.5rem;
        padding: 0.5rem 0 0.5rem 1rem;
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.8);
        padding: 0.5rem 0;
    }

    .dropdown-menu li a:hover {
        background-color: transparent;
        color: var(--primary-green);
    }

    .btn-nav-desktop {
        display: none;
    }

    .nav-quote-mobile {
        display: block;
        margin-top: var(--spacing-md);
    }

    .nav-quote-mobile .btn {
        width: 100%;
    }

    .header-actions {
        gap: var(--spacing-xs);
    }

    .header-btn-outline {
        display: none;
    }

    .nav-phone-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: var(--spacing-md) 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: var(--spacing-sm);
    }

    .nav-phone-mobile a {
        color: var(--primary-green);
        font-weight: var(--font-weight-bold);
        font-size: 1.1rem;
    }
}

/* ===== Hero Section ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a4c 40%, #134e4a 70%, #0f172a 100%);
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.6;
    pointer-events: none;
}

.hero .container {
    display: flex;
    justify-content: flex-start;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: left;
}

.hero-pills {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(30, 58, 76, 0.8);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary-green);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
    color: var(--white);
    background-color: rgba(30, 58, 76, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 2.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.hero-title .highlight {
    color: var(--primary-green);
    display: block;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    max-width: 560px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: var(--spacing-md);
}

.hero-buttons .btn-primary {
    padding: 0.875rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-buttons .btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.hero-buttons .btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-buttons .btn-outline-light {
    padding: 0.875rem 1.75rem;
    background-color: rgba(30, 58, 76, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

/* Site Search */
.site-search {
    position: relative;
    max-width: 560px;
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.site-search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(4px);
    transition: border-color 0.2s, background 0.2s;
}

.site-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.site-search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.15);
}

.site-search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.site-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.site-search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.15s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item.highlighted {
    background: var(--gray-light);
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-sku {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.search-result-price {
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    font-size: 0.9rem;
    white-space: nowrap;
}

.search-result-quote {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.search-no-results {
    padding: 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.search-view-all {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    color: var(--primary-green);
    font-weight: var(--font-weight-semibold);
    font-size: 0.85rem;
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    background: var(--gray-light);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.search-view-all:hover {
    background: var(--border-color);
}

/* Category page search (light background variant) */
.category-search {
    position: relative;
    max-width: 480px;
    margin-bottom: var(--spacing-md);
}

.category-search .site-search-input {
    background: var(--white);
    border-color: var(--border-color);
    color: var(--text-color);
}

.category-search .site-search-input::placeholder {
    color: var(--text-muted);
}

.category-search .site-search-input:focus {
    border-color: var(--primary-green);
    background: var(--white);
}

.category-search .site-search-icon {
    color: var(--text-muted);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
}

.hero-feature-text {
    color: var(--white);
    text-align: left;
}

.hero-feature-title {
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
}

.hero-feature-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Categories Section ===== */
.categories-section {
    background-color: var(--gray-light);
    padding: var(--spacing-3xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

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

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

.category-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.category-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.category-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.category-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
    flex-grow: 1;
}

.category-brands {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.brand-tag {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-muted);
    background-color: var(--gray-light);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
    transition: gap var(--transition-fast);
}

.category-link:hover {
    gap: 0.75rem;
}

.category-link svg {
    width: 16px;
    height: 16px;
}

/* ===== Purpose Section ===== */
.purpose-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--white);
}

.purpose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

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

.purpose-card {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--gray-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.purpose-card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.purpose-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.purpose-card h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.purpose-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===== Why Us Section ===== */
.why-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--gray-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

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

.why-content {
    max-width: 500px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    padding: var(--spacing-md);
    background-color: var(--white);
    border-radius: var(--radius-md);
}

.stat-value {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.feature-card-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.feature-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-dark);
}

.feature-list-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary-green);
    flex-shrink: 0;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

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

.contact-info {
    max-width: 450px;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

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

.contact-item {
    display: flex;
    gap: 0.75rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
}

.contact-item-title {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    font-size: 0.875rem;
}

.contact-item-value {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.contact-form {
    background-color: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

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

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--spacing-sm);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: var(--spacing-md);
    }
}

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

.footer-brand .logo {
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    max-width: 280px;
}

.footer-contact-info {
    margin-top: var(--spacing-sm);
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary-green);
}

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

.footer-column h4 {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Reseller Disclaimer Section */
.reseller-disclaimer {
    background: #f8f9fa;
    border-top: 1px solid #e2e6ea;
    padding: 24px 0;
    text-align: center;
}
.reseller-disclaimer p {
    font-size: 0.82rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}
.reseller-disclaimer strong {
    color: #495057;
}

.footer-disclaimer {
    width: 100%;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin-top: 4px;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===== Overlay for mobile menu ===== */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* ===== About Page ===== */
.about-stats {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    line-height: 1.2;
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.about-story-content h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.about-story-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.about-story-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding-top: var(--spacing-xs);
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--gray-light);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-green);
}

.about-highlight svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary-green);
    margin-top: 2px;
}

.about-highlight div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-highlight strong {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
}

.about-highlight span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Values Section */
.about-values-section {
    background: var(--gray-light);
    padding: var(--spacing-3xl) 0;
}

.about-section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.0625rem;
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-xl);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.about-value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.about-value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-green);
}

.about-value-card h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.about-value-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.about-feature:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
}

.about-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary-green);
}

.about-feature h3 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Brands Section */
.about-brands-section {
    background: var(--gradient-dark);
    padding: var(--spacing-3xl) 0;
}

.about-brands-section h2 {
    color: var(--white);
}

.about-brands-section .about-section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.about-brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.about-brand-pill {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-normal);
}

.about-brand-pill:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--primary-green);
    color: var(--primary-green-light);
    transform: translateY(-2px);
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .about-stat-number {
        font-size: 1.5rem;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Contact Page ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--spacing-xxl);
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.contact-form-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contact-form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9375rem;
    font-family: var(--font-family);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--secondary);
}

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

.contact-form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--spacing-sm);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-lg));
}

.contact-info-card {
    background: var(--gray-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
}

.contact-info-card-highlight {
    background: var(--gradient-dark);
    color: var(--white);
}

.contact-info-card-highlight h3 {
    color: var(--white);
}

.contact-info-card-highlight p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xs);
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary-green);
}

.contact-info-card h3 {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    display: block;
    margin-bottom: 2px;
}

a.contact-info-value:hover {
    color: var(--primary-green-light);
}

.contact-info-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

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

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

    .contact-info {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1;
        min-width: 200px;
    }
}

/* ===== CTA Banner ===== */
/* Brand Disclaimer */
.brand-disclaimer {
    padding: 24px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.brand-disclaimer p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 900px;
    margin: 0;
}
.brand-disclaimer strong {
    color: #475569;
}

.cta-banner {
    background: var(--gradient-dark);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-subtitle {
    color: var(--primary-green);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

/* ===== Page Hero ===== */
.page-hero {
    background: var(--gradient-hero);
    padding: calc(var(--header-height) + var(--spacing-xl)) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0v100M0 50h100' stroke='%2310b981' stroke-width='0.5' opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='3' fill='%2310b981' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.4;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    max-width: 700px;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(30, 58, 76, 0.8);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--primary-green);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-md);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.breadcrumb span {
    color: var(--white);
}

.page-hero h1 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.page-hero h1 .highlight {
    color: var(--primary-green);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.125rem;
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.page-hero-features {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.page-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.page-hero-feature svg {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
}

/* ===== Products Grid ===== */
.brand-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.brand-filter {
    padding: 0.5rem 1.25rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-weight: var(--font-weight-medium);
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.brand-filter:hover,
.brand-filter.active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.product-image {
    height: 140px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image svg {
    width: 60px;
    height: 60px;
    color: var(--primary-dark);
    opacity: 0.3;
}

.product-stock-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: var(--font-weight-semibold);
    color: var(--success);
    background-color: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
}

.product-stock-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
}

.product-info {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.product-sku-badge {
    display: block;
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.product-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
}

.product-stock::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
}

.product-card {
    display: flex;
    flex-direction: column;
}

a.product-card {
    text-decoration: none;
    color: inherit;
}

.product-info h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.product-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.product-card .btn {
    margin-top: auto;
}

/* ===== Modal ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gray-light);
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--gray-medium);
    color: var(--text-dark);
}

.modal-header {
    padding: var(--spacing-lg);
    padding-bottom: 0;
    text-align: center;
}

.modal-header h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-xs);
}

.modal-tagline {
    color: var(--primary-green);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
}

.quote-form {
    padding: var(--spacing-lg);
}

.quote-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    font-size: 0.875rem;
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text-dark);
    transition: border-color var(--transition-fast);
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.quote-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.condition-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.condition-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background-color: var(--gray-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: var(--font-weight-normal);
    font-size: 0.875rem;
}

.condition-options label:hover {
    border-color: var(--primary-green);
}

.condition-options input[type="radio"] {
    width: auto;
    margin: 0;
}

.condition-options label:has(input:checked) {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: var(--primary-green);
}

.btn-full {
    width: 100%;
}

.trust-line {
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
}

.quote-form .form-group input[readonly] {
    background-color: var(--gray-light);
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
}

/* ===== Breadcrumbs ===== */

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    color: var(--text-muted);
}

.breadcrumb-list a {
    color: var(--primary-green);
    transition: color var(--transition-fast);
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list li:last-child {
    color: var(--text-muted);
}

/* ===== Product Detail Page ===== */
.product-detail {
    padding: var(--spacing-xl) 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

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

.product-detail-image {
    background-color: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.product-detail-info h1 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.product-sku {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-family: monospace;
    letter-spacing: 1px;
}

.product-sku-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.product-sku-copy:hover {
    background-color: var(--gray-light);
}

.product-sku-copy::after {
    content: 'Copy';
    font-size: 0.75rem;
    color: var(--primary-green);
    font-weight: var(--font-weight-semibold);
}

.product-pricing {
    font-size: 1.25rem;
    color: var(--primary-green);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
}

.stock-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-condition-select {
    display: flex;
    gap: var(--spacing-sm);
}

.product-condition-select label {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: var(--gray-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: var(--font-weight-medium);
}

.product-condition-select label:hover {
    border-color: var(--primary-green);
}

.product-condition-select input[type="radio"] {
    display: none;
}

.product-condition-select label:has(input:checked) {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.quantity-input label {
    font-weight: var(--font-weight-medium);
}

.quantity-input input {
    width: 80px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    text-align: center;
}

.btn-quote-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
    margin-top: var(--spacing-lg);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-badge-item::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

/* Product Specs Section */
.product-specs {
    background-color: var(--gray-light);
    padding: var(--spacing-xl) 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.specs-table th,
.specs-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    width: 35%;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) td {
    background-color: var(--gray-light);
}

/* Product FAQ Section */
.product-faq {
    padding: var(--spacing-xl) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
}

.faq-question {
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Responsive Typography ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

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

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

    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

/* Legacy compatibility styles */
.header-phone {
    display: none;
}

.header-search {
    display: none;
}

.open-quote-modal {
    cursor: pointer;
}

/* ===== Brand Slider ===== */
.brand-slider {
    background-color: var(--gray-light);
    padding: var(--spacing-lg) 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.brand-slider-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.brand-slider-track {
    overflow: hidden;
    position: relative;
}

.brand-slider-logos {
    display: flex;
    gap: var(--spacing-xxl);
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-logo img {
    height: 32px;
    max-height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.brand-logo-text {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.brand-logo-text:hover {
    color: var(--primary-green);
}

/* ===== Why Choose Us Section (Dark) ===== */
.why-choose-section {
    background: var(--gradient-hero);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.section-label-light {
    color: var(--primary-green);
    background-color: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.7);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
}

.stat-item-dark {
    text-align: center;
    padding: var(--spacing-sm);
}

.stat-value-light {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-light {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 1024px) {
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card-dark {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.feature-card-dark:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
}

.feature-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    background-color: rgba(16, 185, 129, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
}

.feature-card-dark h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.feature-card-dark p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.feature-list-dark {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list-dark li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.25rem;
    position: relative;
}

.feature-list-dark li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

/* ===== Mission Statement Section ===== */
.mission-section {
    background-color: var(--white);
    padding: var(--spacing-3xl) 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

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

.mission-intro {
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-lg));
}

@media (max-width: 992px) {
    .mission-intro {
        position: static;
    }
}

.mission-intro .section-subtitle {
    margin-bottom: var(--spacing-lg);
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mission-card {
    background-color: var(--gray-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.mission-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.mission-card-primary {
    background-color: var(--gray-light);
    border: 1px solid var(--border-color);
}

.mission-card-primary .mission-label {
    color: var(--primary-green);
    background-color: rgba(16, 185, 129, 0.1);
}

.mission-card-primary h3 {
    color: var(--text-dark);
}

.mission-card-primary p {
    color: var(--text-muted);
}

.mission-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(16, 185, 129, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    margin-bottom: var(--spacing-sm);
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.mission-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.mission-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

@media (max-width: 576px) {
    .mission-card-row {
        grid-template-columns: 1fr;
    }
}

/* ===== 404 Error Page ===== */
.error-page {
    padding: calc(var(--header-height) + 60px) 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.error-code {
    font-size: 8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    opacity: 0.15;
}

.error-content h1 {
    font-size: 2rem;
    margin-top: -1.5rem;
    margin-bottom: var(--spacing-sm);
}

.error-content > p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.error-search-form input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.error-search-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.error-search {
    margin-bottom: var(--spacing-xl);
}

.error-categories {
    margin-bottom: var(--spacing-xl);
}

.error-categories h3 {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-weight-medium);
}

.error-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-sm);
}

.error-category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.error-category-link:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.error-category-link svg {
    color: var(--primary-green);
}

.error-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* ===== Warranty Page Styles ===== */
.section-heading {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.section-subheading {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
}

.warranty-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.warranty-step {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
}

.warranty-step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
}

.warranty-step-icon {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.warranty-step h3 {
    margin-bottom: var(--spacing-xs);
}

.warranty-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.warranty-coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.warranty-covered,
.warranty-not-covered {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--white);
}

.warranty-coverage-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.warranty-covered .warranty-coverage-header svg {
    color: var(--primary-green);
}

.warranty-not-covered .warranty-coverage-header svg {
    color: #ef4444;
}

.warranty-covered ul,
.warranty-not-covered ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warranty-covered ul li,
.warranty-not-covered ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.warranty-covered ul li:last-child,
.warranty-not-covered ul li:last-child {
    border-bottom: none;
}

.warranty-covered ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
}

.warranty-not-covered ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
}

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

.warranty-reseller h2 {
    margin-bottom: var(--spacing-md);
}

.warranty-reseller p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

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

/* ===== Policy Page Styles (Reusable) ===== */
.policy-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.policy-step {
    text-align: center;
    padding: var(--spacing-lg);
    padding-top: calc(var(--spacing-lg) + 8px);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
}

.policy-step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
}

.policy-step-icon {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.policy-step h3 {
    margin-bottom: var(--spacing-xs);
}

.policy-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.policy-card {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--white);
}

.policy-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.policy-card-header.green svg { color: var(--primary-green); }
.policy-card-header.red svg { color: #ef4444; }

.policy-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-card ul li:last-child { border-bottom: none; }

.policy-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.policy-card.green ul li::before { background: var(--primary-green); }
.policy-card.red ul li::before { background: #ef4444; }

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

.policy-highlight h2 {
    margin-bottom: var(--spacing-md);
}

.policy-highlight p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.policy-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.policy-detail-card {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--white);
}

.policy-detail-card h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.policy-detail-card h3 svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.policy-detail-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.policy-legal {
    max-width: 840px;
    margin: 0 auto;
}

.policy-legal-section {
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--white);
}

.policy-legal-section:last-child {
    margin-bottom: 0;
}

.policy-legal-section h2 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.15rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.policy-legal-section h2 .section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
}

.policy-legal-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xs);
}

.policy-legal-section p:last-child {
    margin-bottom: 0;
}

.policy-legal-section ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0;
}

.policy-legal-section ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.policy-legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
}

.policy-step .price-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
    border-radius: 999px;
    font-weight: var(--font-weight-semibold);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-xs);
}

.policy-contact {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--gray-light);
    border: 1px solid var(--border-color);
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.policy-contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-color);
    font-size: 0.9rem;
}

.policy-contact-method svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

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

/* ===== Product Detail Page Styles ===== */
.breadcrumb-section {
    background-color: var(--gray-light);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-section .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-section .breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-section .breadcrumb a:hover {
    color: var(--primary-green);
}

.breadcrumb-section .breadcrumb .separator {
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumb-section .breadcrumb .current {
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

.product-detail-section {
    padding: var(--spacing-xxl) 0;
}

.product-detail-section .product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

@media (max-width: 900px) {
    .product-detail-section .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

.product-detail-section .product-detail-image {
    position: relative;
    background-color: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder svg {
    width: 120px;
    height: 120px;
    color: var(--text-muted);
    opacity: 0.3;
}

.product-detail-img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 2px;
}

.product-image img.brand-fallback-img {
    padding: 10px;
    opacity: 0.85;
}

.product-detail-img.brand-fallback-img {
    padding: 40px;
    opacity: 0.85;
}

.product-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
}

.badge-brand {
    background-color: var(--primary-dark);
    color: var(--white);
}

.badge-condition {
    background-color: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.badge-stock {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.product-detail-info .product-sku {
    display: block;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-family: monospace;
    font-weight: var(--font-weight-bold);
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.product-detail-info .product-sku span {
    font-family: var(--font-body);
    font-weight: var(--font-weight-normal);
    color: var(--text-muted);
    letter-spacing: 0;
    font-size: 0.9rem;
}

.product-detail-info .product-title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.product-detail-info .product-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.product-specs-summary {
    background-color: var(--gray-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.product-specs-summary h3 {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.product-specs-summary .specs-table {
    width: 100%;
}

.product-specs-summary .specs-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.5);
}

.product-specs-summary .specs-table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.product-specs-summary .specs-table td:first-child {
    color: var(--text-muted);
    width: 40%;
}

.product-specs-summary .specs-table td:last-child {
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

/* Trust Badges - Single row with small icons */
.product-trust-badges {
    display: flex !important;
    flex-wrap: nowrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.product-trust-badges .trust-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-trust-badges .trust-badge svg,
.product-detail-info .trust-badge svg,
.trust-badge svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    min-width: 16px;
    min-height: 16px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.product-trust-badges .trust-badge span {
    white-space: nowrap;
}

/* Product CTA Buttons */
.product-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.product-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-cta .btn svg {
    width: 18px;
    height: 18px;
}

.product-cta .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

.product-cta .btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.product-cta .btn-outline:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* Product Tabs/Specs Section */
.product-tabs-section {
    background-color: var(--gray-light);
    padding: var(--spacing-xxl) 0;
}

.product-full-specs h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.product-full-specs .specs-table.full {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-full-specs .specs-table.full tr:nth-child(even) {
    background-color: var(--gray-light);
}

.product-full-specs .specs-table.full td {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-color);
}

.product-full-specs .specs-table.full td:first-child {
    color: var(--text-muted);
    width: 35%;
    font-weight: var(--font-weight-medium);
}

.product-full-specs .specs-table.full td:last-child {
    color: var(--text-dark);
}

.product-full-specs .specs-table.full tr:last-child td {
    border-bottom: none;
}

/* ===== Related Products ===== */
.related-products {
    padding: var(--spacing-xxl) 0;
    border-top: 1px solid var(--border);
}

.related-products h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.related-product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.related-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-green);
}

.related-product-image {
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.related-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-product-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
}

.related-product-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: var(--font-weight-semibold);
}

.related-product-name {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    line-height: 1.3;
}

.related-product-price {
    margin-top: 4px;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
}

.related-product-price-quote {
    color: var(--text-muted);
    font-weight: var(--font-weight-semibold);
}

@media (max-width: 900px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
}

/* ===== Product FAQs ===== */
.product-faqs {
    padding: var(--spacing-xxl) 0;
    border-top: 1px solid var(--border);
}

.product-faqs h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.product-faqs-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 820px;
}

.product-faq-item {
    border-left: 3px solid var(--primary-green);
    padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-md);
}

.product-faq-question {
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-faq-answer {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

/* Product CTA Section at bottom */
.product-cta-section {
    padding: var(--spacing-xxl) 0;
}

.product-cta-section .cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #134e4a 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    text-align: center;
    color: var(--white);
}

.product-cta-section .cta-box h2 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.product-cta-section .cta-box p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Footer Support Column ===== */
.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
}

/* ===== Cart Toggle Icon ===== */
.cart-toggle {
    position: relative;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.cart-toggle:hover {
    opacity: 0.8;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 0;
    background: var(--primary-green);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== Side Cart Panel ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

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

.side-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: var(--white);
    z-index: 2501;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 4px;
    transition: color 0.2s;
}

.cart-close:hover {
    color: var(--text-primary);
}

.side-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px 0;
    color: var(--text-secondary);
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.cart-item-name:hover {
    color: var(--primary-green);
}

.cart-item-price {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: background 0.2s;
}

.qty-btn:hover {
    background: var(--bg-secondary);
}

.cart-item-remove {
    position: absolute;
    top: 16px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-secondary);
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #ef4444;
}

.side-cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cart-checkout-btn {
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 8px;
}

.cart-continue {
    width: 100%;
    text-align: center;
}

/* ===== Product Card Footer (Ecommerce) ===== */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-link:hover .product-info h3 {
    color: var(--primary-green);
}

.product-card-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: auto;
}

.product-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
}

.product-card-shipping {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.product-card-buttons {
    display: flex;
    gap: 8px;
}

.product-card-buttons .btn {
    flex: 1;
    margin-top: 0;
    text-align: center;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 8px 10px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.btn-outline:hover {
    background: rgba(16, 185, 129, 0.1);
}

/* ===== Product Detail Price Display ===== */
.product-price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
}

.price-shipping {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===== Checkout Page ===== */
.checkout-section {
    padding: calc(var(--header-height) + 24px) 0 80px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 0 20px;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.checkout-step.active {
    color: var(--primary-green);
}

.checkout-step.completed {
    color: var(--primary-green);
}

.checkout-step-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid var(--border);
    color: var(--text-light);
    flex-shrink: 0;
}

.checkout-step.active .checkout-step-icon {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

.checkout-step.completed .checkout-step-icon {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

.checkout-step-line {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin: 0 12px;
}

.checkout-step-line.completed {
    background: var(--primary-green);
}

/* Checkout Grid */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* Section Cards */
.checkout-section-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.checkout-section-card:nth-child(even) {
    background: #f8fffe;
}

.checkout-section-card h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-section-card h2 svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

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

.form-row:has(.form-group:nth-child(3)) {
    grid-template-columns: 1fr 80px 120px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    background: var(--white);
}

.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    background: var(--white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    background-color: #f0fdf8;
}

.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    background: var(--white);
    resize: vertical;
    min-height: 80px;
}

.form-group textarea::placeholder {
    color: #b0b8c4;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    background: #f0fdf8;
}

.form-group input::placeholder {
    color: #b0b8c4;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    background: #f0fdf8;
}

.billing-same-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 0.925rem;
    color: var(--text-primary);
}

.billing-same-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.billing-fields {
    display: none;
}

.billing-fields.visible {
    display: block;
}

.stripe-card-element {
    padding: 12px 14px;
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.stripe-card-element:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    background: #f0fdf8;
}

.stripe-card-errors {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 6px;
    min-height: 20px;
}

.checkout-secure-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
}

.checkout-secure-label svg {
    color: var(--primary-green);
}

/* Submit Button */
.checkout-submit-btn {
    width: 100%;
    margin-top: 8px;
    font-size: 1.1rem;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-submit-btn svg {
    flex-shrink: 0;
}

.checkout-spinner {
    animation: checkoutSpin 1s linear infinite;
}

@keyframes checkoutSpin {
    100% { transform: rotate(360deg); }
}

.checkout-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 12px;
    padding: 12px;
    background: #fef2f2;
    border-radius: var(--radius-sm);
    border: 1px solid #fecaca;
}

/* Trust Strip */
.checkout-trust-strip {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.checkout-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.checkout-trust-badge svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

/* Checkout Summary */
.checkout-summary {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.checkout-summary h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-item-count {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--primary-green);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-family: var(--font-body);
}

.checkout-items {
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 12px;
    max-height: 360px;
    overflow-y: auto;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.checkout-item + .checkout-item {
    border-top: 1px solid #f1f5f9;
}

.checkout-item-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    flex-shrink: 0;
    background: var(--white);
}

.checkout-item-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    background: var(--bg-secondary);
}

.checkout-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.checkout-item-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.checkout-item-sku {
    font-size: 0.75rem;
    color: var(--text-light);
    font-family: monospace;
}

.checkout-item-qty {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.checkout-item-price {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    flex-shrink: 0;
    text-align: right;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.checkout-free-shipping {
    color: var(--primary-green);
    font-weight: 600;
}

.checkout-grand-total {
    border-top: 2px solid var(--border);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== Order Confirmation ===== */
.confirmation-section {
    padding: calc(var(--header-height) + 60px) 0 80px;
}

.confirmation-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.confirmation-icon {
    color: var(--primary-green);
    margin-bottom: 24px;
}

.confirmation-box h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.confirmation-order-id {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.confirmation-email-notice {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.confirmation-items {
    text-align: left;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    margin-bottom: 16px;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.confirmation-total {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.confirmation-shipping {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

/* ===== Responsive: Cart & Checkout ===== */
@media (max-width: 768px) {
    .side-cart {
        width: 100vw;
    }

    .checkout-progress {
        margin-bottom: 20px;
    }

    .checkout-step span {
        display: none;
    }

    .checkout-step-line {
        width: 32px;
        margin: 0 6px;
    }

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

    .checkout-summary-col {
        order: -1;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-section-card {
        padding: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row:has(.form-group:nth-child(3)) {
        grid-template-columns: 1fr;
    }

    .checkout-trust-strip {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .confirmation-box {
        padding: 32px 20px;
    }
}

/* ===== Pagination ===== */
.pagination-info {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 24px 0 12px;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.pagination-btn {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover:not(:disabled):not(.active) {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.pagination-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    font-weight: 600;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-prev,
.pagination-next {
    padding: 8px 18px;
    font-weight: 500;
}

.pagination-ellipsis {
    color: var(--text-muted);
    padding: 0 4px;
    font-size: 0.875rem;
    user-select: none;
}

@media (max-width: 480px) {
    .pagination-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 34px;
    }
    .pagination-prev,
    .pagination-next {
        padding: 6px 12px;
    }
    .pagination-controls {
        gap: 4px;
    }
}

/* ===== Google Policy Compliance: Disclaimers & Badges ===== */

/* Reseller Notice - Top banner on every page */
.reseller-notice {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
    font-size: 12px;
    color: #64748b;
    text-align: center;
    line-height: 1.5;
}

/* Refurbished Badge - pill shape on product cards and detail pages */
.refurbished-badge {
    display: inline-block;
    background: #0ea5e9;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 999px;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.refurbished-badge-lg {
    position: relative;
    top: auto;
    left: auto;
    font-size: 12px;
    padding: 5px 14px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
}

/* Brand Disclaimer - under logo sections */
.brand-disclaimer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 12px 0;
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    line-height: 1.5;
}

.brand-disclaimer-inline {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
    line-height: 1.6;
}

/* Product Source Note - attribution on product pages */
.product-source-note {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
    margin-top: 4px;
    line-height: 1.5;
}

.product-source-note-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 13px;
    color: #64748b;
    font-style: normal;
    margin-top: 16px;
    line-height: 1.6;
}

/* Checkout Disclaimer */
.checkout-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #166534;
    line-height: 1.6;
}

.checkout-disclaimer svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #16a34a;
}

.checkout-disclaimer a {
    color: #15803d;
    text-decoration: underline;
}

/* Refurbished Category Banner */
.refurbished-category-banner {
    background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    font-size: 13px;
    color: #475569;
    text-align: center;
    line-height: 1.5;
}

.refurbished-category-banner a {
    color: #0ea5e9;
    text-decoration: underline;
}

/* About page contact details */
.about-contact-details {
    margin-top: 24px;
    padding: 20px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.about-contact-details h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-contact-details ul {
    list-style: none;
    padding: 0;
}

.about-contact-details li {
    padding: 4px 0;
    font-size: 14px;
    color: #475569;
}

.about-contact-details a {
    color: #0ea5e9;
    text-decoration: none;
}

.about-contact-details a:hover {
    text-decoration: underline;
}
