/* ============================================
   AIO TECH SOLUTIONS - Main Stylesheet
   ============================================ */

/* ---- CSS RESET / NORMALIZE ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* ---- CSS VARIABLES ---- */
:root {
    /* Primary Colors (from logo) */
    --primary:          #1B2A4A;
    --primary-light:    #2A3F6E;
    --primary-dark:     #111D35;

    /* Secondary - Green */
    --secondary:        #2E8B3C;
    --secondary-light:  #3AA64A;
    --secondary-dark:   #1F6B2B;

    /* Accent - Crimson */
    --accent:           #8B1A2B;
    --accent-light:     #A82240;
    --accent-dark:      #6B1220;

    /* Neutrals */
    --white:            #FFFFFF;
    --off-white:        #F9FAFB;
    --bg-light:         #FFFFFF;
    --bg-grey:          #EBEDF0;
    --border-light:     #E5E7EB;
    --border:           #D1D5DB;
    --text-muted:       #6B7280;
    --text-secondary:   #4A4A5A;
    --text-primary:     #1A1A2E;
    --black:            #0A0A0A;

    /* Status Colors */
    --success:          #10B981;
    --warning:          #F59E0B;
    --error:            #EF4444;
    --info:             #3B82F6;

    /* Fonts */
    --font-primary:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading:     'Space Grotesk', 'Inter', sans-serif;

    /* Spacing Scale */
    --space-xs:         0.25rem;   /* 4px */
    --space-sm:         0.5rem;    /* 8px */
    --space-md:         1rem;      /* 16px */
    --space-lg:         1.5rem;    /* 24px */
    --space-xl:         2rem;      /* 32px */
    --space-2xl:        3rem;      /* 48px */
    --space-3xl:        4rem;      /* 64px */
    --space-4xl:        6rem;      /* 96px */

    /* Border Radius */
    --radius-sm:        4px;
    --radius-md:        8px;
    --radius-lg:        12px;
    --radius-xl:        16px;
    --radius-full:      9999px;

    /* Shadows — very soft */
    --shadow-sm:        0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md:        0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg:        0 4px 8px rgba(0, 0, 0, 0.05);
    --shadow-xl:        0 6px 12px rgba(0, 0, 0, 0.06);
    --shadow-card:      0 1px 4px rgba(27, 42, 74, 0.05);
    --shadow-card-hover:0 3px 10px rgba(27, 42, 74, 0.08);

    /* Transitions */
    --transition-fast:  0.15s ease;
    --transition:       0.3s ease;
    --transition-slow:  0.5s ease;

    /* Layout */
    --container-max:    1280px;
    --container-narrow: 960px;
    --header-height:    80px;
    --header-height-scrolled: 64px;
}


/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.625rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.text-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.text-small {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

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

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

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

.text-accent {
    color: var(--accent);
}

.text-white {
    color: var(--white);
}

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

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

strong, .font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}


/* ---- LAYOUT / CONTAINERS ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

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

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(46, 139, 60, 0.08);
    border-radius: var(--radius-full);
}

.section-bg {
    background-color: var(--white);
}

.section-bg-dark {
    background-color: var(--primary);
}

.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
    color: var(--white);
}

.section-bg-dark p {
    color: rgba(255, 255, 255, 0.75);
}


/* ---- GRID SYSTEM ---- */
.grid {
    display: grid;
    gap: var(--space-lg);
}

/* Tighter gap when grid is used inside forms */
form .grid,
.form-grid {
    gap: 0 var(--space-md);
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Flex Utilities */
.flex {
    display: flex;
}

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

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}


/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

/* Primary Button - Navy */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

/* Secondary Button - Green */
.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

/* Accent Button - Crimson */
.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
}

/* Outline Buttons */
.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-outline-secondary {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 1.15rem 2.75rem;
    font-size: 1.1rem;
}

/* Icon Button */
.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn-icon i {
    font-size: 1.1rem;
}

/* Full Width */
.btn-block {
    width: 100%;
}


/* ---- CARDS ---- */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.card-body {
    padding: var(--space-lg);
}

.card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}


/* ---- BADGES ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    line-height: 1.4;
}

.badge-primary {
    background: rgba(27, 42, 74, 0.1);
    color: var(--primary);
}

.badge-secondary {
    background: rgba(46, 139, 60, 0.1);
    color: var(--secondary);
}

.badge-accent {
    background: rgba(139, 26, 43, 0.1);
    color: var(--accent);
}

.badge-sale {
    background: var(--accent);
    color: var(--white);
}

.badge-new {
    background: var(--secondary);
    color: var(--white);
}

.badge-refurbished {
    background: var(--info);
    color: var(--white);
}


/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.top-bar-item:hover {
    color: var(--white);
}

.top-bar-item i {
    font-size: 0.75rem;
    color: var(--secondary-light);
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}


/* ============================================
   MAIN NAVBAR
   ============================================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

#site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    height: var(--header-height);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-xl);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

#site-header.scrolled .nav-logo-img {
    width: 40px;
    height: 40px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nav-logo-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    height: 100%;
}

.nav-links > li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(27, 42, 74, 0.05);
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.nav-arrow {
    font-size: 0.6rem;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}


/* ============================================
   MEGA MENU DROPDOWN
   ============================================ */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    pointer-events: none;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mega-menu {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-xl);
    min-width: 720px;
    border: 1px solid var(--border-light);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.mega-menu-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--bg-light);
}

.mega-menu-col ul li {
    margin-bottom: var(--space-xs);
}

.mega-menu-col ul li a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mega-menu-col ul li a:hover {
    color: var(--primary);
    background: rgba(27, 42, 74, 0.04);
    padding-left: 0.75rem;
}

.mega-menu-col ul li a i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--secondary);
}

/* Mega Menu Promo Card */
.mega-menu-promo-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    height: 100%;
    justify-content: center;
}

.mega-menu-promo-card .badge {
    align-self: flex-start;
}

.mega-menu-promo-card h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.mega-menu-promo-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}


/* ============================================
   NAV ACTIONS (Right Side)
   ============================================ */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.4rem 0.85rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.nav-phone:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-phone i {
    font-size: 0.8rem;
}

.nav-action-btn {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 1.05rem;
    transition: all var(--transition);
    background: transparent;
}

.nav-action-btn:hover {
    background: rgba(27, 42, 74, 0.06);
    color: var(--primary);
}

/* Cart Badge */
.cart-toggle {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
}

.mobile-menu-toggle:hover {
    background: rgba(27, 42, 74, 0.06);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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


/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: var(--space-lg) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    z-index: 99;
    border-top: 1px solid var(--border-light);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 0 var(--space-lg);
    transition: border-color var(--transition);
}

.search-input-wrapper:focus-within {
    border-color: var(--primary);
    background: var(--white);
}

.search-icon {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.search-input {
    flex: 1;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--text-primary);
    background: transparent;
}

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

.search-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--transition);
    cursor: pointer;
}

.search-close:hover {
    background: var(--bg-grey);
    color: var(--text-primary);
}

.search-suggestions {
    margin-top: var(--space-lg);
}

.search-suggestion-group h6 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.search-tag {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.search-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


/* ============================================
   MOBILE SLIDE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 1100;
    overflow-y: auto;
    transition: right var(--transition);
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.06);
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-header .nav-logo-img {
    width: 36px;
    height: 36px;
}

.mobile-menu-header .nav-logo-name {
    font-size: 1.1rem;
}

.mobile-menu-header .nav-logo-tagline {
    font-size: 0.6rem;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all var(--transition);
    cursor: pointer;
}

.mobile-menu-close:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.mobile-menu-body {
    padding: var(--space-md) 0;
}

/* Mobile Nav Links */
.mobile-nav-links > li > a,
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem var(--space-lg);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition);
    cursor: pointer;
}

.mobile-nav-links > li > a i:first-child,
.mobile-dropdown-toggle span i {
    margin-right: var(--space-sm);
    width: 20px;
    text-align: center;
    color: var(--secondary);
}

.mobile-nav-links > li > a:hover,
.mobile-dropdown-toggle:hover {
    background: rgba(27, 42, 74, 0.04);
    color: var(--primary);
}

.mobile-nav-links > li > a.active {
    color: var(--primary);
    font-weight: 600;
    background: rgba(27, 42, 74, 0.04);
    border-right: 3px solid var(--secondary);
}

.mobile-arrow {
    font-size: 0.65rem;
    transition: transform var(--transition);
}

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

/* Mobile Dropdown Submenu */
.mobile-dropdown-menu {
    display: none;
    background: var(--bg-light);
    padding: var(--space-sm) 0;
}

.mobile-nav-dropdown.open .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 0.6rem var(--space-lg) 0.6rem var(--space-3xl);
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.mobile-dropdown-menu li a:hover {
    color: var(--primary);
    padding-left: calc(var(--space-3xl) + 4px);
}

/* Mobile Menu CTA */
.mobile-menu-cta {
    padding: var(--space-lg);
    border-top: 1px solid var(--border-light);
    margin-top: var(--space-sm);
}

/* Mobile Contact Info */
.mobile-menu-contact {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mobile-contact-item i {
    width: 18px;
    text-align: center;
    color: var(--secondary);
    font-size: 0.85rem;
}

/* Mobile Socials */
.mobile-menu-socials {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.mobile-menu-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.mobile-menu-socials a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

/* Body lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}


/* ============================================
   FOOTER
   ============================================ */
#site-footer {
    margin-top: auto;
}

.footer-main {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-4xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

/* Subtle circuit pattern background */
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(46, 139, 60, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(46, 139, 60, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: var(--space-2xl);
    position: relative;
    z-index: 1;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-logo-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-lg);
}

/* Footer Trust Badges */
.footer-trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-trust-item i {
    color: var(--secondary-light);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: var(--space-sm);
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-1px);
}

/* Footer Headings */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition);
    padding: 2px 0;
}

.footer-links li a i {
    font-size: 0.55rem;
    color: var(--secondary);
    transition: transform var(--transition);
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-contact li a:hover {
    color: var(--secondary-light);
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--secondary-light);
    font-size: 0.85rem;
}

/* Footer Newsletter */
.footer-newsletter {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter .footer-heading {
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: var(--space-md);
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.newsletter-input-group:focus-within {
    border-color: var(--secondary);
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    color: var(--white);
    background: transparent;
    min-width: 0;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-group button {
    padding: 0.7rem 1rem;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--transition);
}

.newsletter-input-group button:hover {
    background: var(--secondary-dark);
}

.newsletter-note {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: var(--space-xs);
}


/* Footer Bottom */
.footer-bottom {
    background: var(--primary-dark);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-bottom-links a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

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

.payment-icons {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.payment-icons i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

.payment-icons i:hover {
    color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   HOME PAGE - HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?w=1600&q=80') center/cover no-repeat;
    z-index: 0;
}

/* Dark overlay — strong enough to keep text readable */
.hero-circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.88) 0%, rgba(17, 29, 53, 0.92) 60%, rgba(13, 21, 38, 0.95) 100%);
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: var(--space-3xl);
    padding: var(--space-4xl) 0;
}

/* Hero Text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-light);
    background: rgba(46, 139, 60, 0.12);
    border: 1px solid rgba(46, 139, 60, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: var(--secondary-light);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-feature i {
    color: var(--secondary-light);
    font-size: 0.9rem;
}

/* Hero Visual - Device Showcase */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-device-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-device {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    animation: float 6s ease-in-out infinite;
}

.hero-device i {
    opacity: 0.9;
}

.hero-device-laptop {
    width: 180px;
    height: 180px;
    top: 10px;
    left: 20px;
    font-size: 3.5rem;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(46, 139, 60, 0.15), rgba(46, 139, 60, 0.05));
    border-color: rgba(46, 139, 60, 0.2);
}

.hero-device-phone {
    width: 130px;
    height: 130px;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    animation-delay: -1.5s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.hero-device-tablet {
    width: 150px;
    height: 150px;
    bottom: 20px;
    left: 60px;
    font-size: 2.8rem;
    animation-delay: -3s;
    background: linear-gradient(135deg, rgba(139, 26, 43, 0.12), rgba(139, 26, 43, 0.04));
    border-color: rgba(139, 26, 43, 0.15);
}

.hero-device-watch {
    width: 100px;
    height: 100px;
    bottom: 50px;
    right: 50px;
    font-size: 2rem;
    animation-delay: -4.5s;
    background: linear-gradient(135deg, rgba(46, 139, 60, 0.1), rgba(46, 139, 60, 0.03));
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(46, 139, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


/* ============================================
   HOME PAGE - STATS BAR
   ============================================ */
.stats-bar {
    background: var(--white);
    padding: var(--space-2xl) 0;
    position: relative;
    z-index: 2;
    margin-top: -30px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.04);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    justify-content: center;
    padding: var(--space-md);
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--border-light);
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(46, 139, 60, 0.08);
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}


/* ============================================
   HOME PAGE - CATEGORIES BENTO GRID
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
}

/* Layout placement */
.bento-large     { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento-medium:nth-child(2) { grid-column: 3 / 4; grid-row: 1 / 2; }
.bento-medium:nth-child(3) { grid-column: 4 / 5; grid-row: 1 / 2; }
.bento-small:nth-child(4)  { grid-column: 3 / 4; grid-row: 2 / 3; }
.bento-small:nth-child(5)  { grid-column: 4 / 5; grid-row: 2 / 3; }
.bento-small:nth-child(6)  { grid-column: 1 / 2; grid-row: 3 / 4; }
.bento-wide      { grid-column: 2 / 5; grid-row: 3 / 4; }

/* Card base */
.bento-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 180px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bento-card:hover {
    transform: scale(1.015);
}

.bento-large {
    min-height: 380px;
}

/* Background layer */
.bento-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    transition: transform 0.5s ease;
    z-index: 0;
}

.bento-card:hover .bento-bg {
    transform: scale(1.05);
}

/* Individual card images */
.bento-laptops .bento-bg {
    background: url('https://images.unsplash.com/photo-1496181133206-80ce9b88a853?w=800&q=80') center/cover no-repeat;
}

.bento-phones .bento-bg {
    background: url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?w=800&q=80') center/cover no-repeat;
}

.bento-tablets .bento-bg {
    background: url('https://images.unsplash.com/photo-1544244015-0df4b3ffc6b0?w=800&q=80') center/cover no-repeat;
}

.bento-audio .bento-bg {
    background: url('https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=800&q=80') center/cover no-repeat;
}

.bento-wearables .bento-bg {
    background: url('https://images.unsplash.com/photo-1579586337278-3befd40fd17a?w=800&q=80') center/cover no-repeat;
}

.bento-accessories .bento-bg {
    background: url('https://images.unsplash.com/photo-1572569511254-d8f925fe2cbb?w=800&q=80') center/cover no-repeat;
}

.bento-repairs .bento-bg {
    background: url('https://images.unsplash.com/photo-1576613109753-27804de2cba8?w=800&q=80') center/cover no-repeat;
}

/* Dark overlay so text remains readable */
.bento-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}

/* Content */
.bento-content {
    position: relative;
    z-index: 1;
    padding: 24px;
    width: 100%;
}

.bento-large .bento-content {
    padding: 32px;
}

.bento-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
}

.bento-large .bento-icon {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.bento-large h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    line-height: 1.5;
}

.bento-large p {
    font-size: 0.95rem;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    transition: all 0.25s ease;
}

.bento-link i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.bento-card:hover .bento-link {
    color: var(--white);
}

.bento-card:hover .bento-link i {
    transform: translateX(4px);
}

/* Small cards — compact */
.bento-small .bento-content {
    padding: 20px;
}

.bento-small .bento-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.bento-small h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}


/* ============================================
   HOME PAGE - FEATURED PRODUCTS
   ============================================ */
.featured-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.featured-tab {
    padding: 0.5rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
}

.featured-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.featured-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Product placeholder (for dummy products before images) */
.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-grey) 100%);
    font-size: 3rem;
    color: var(--border);
}

/* Product card hidden state for filter */
.product-card.hidden {
    display: none;
}


/* ============================================
   HOME PAGE - SERVICES OVERVIEW
   ============================================ */
.services-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.service-card-sell::before {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

.service-card-repair::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.service-card-sell .service-card-icon {
    background: rgba(46, 139, 60, 0.1);
    color: var(--secondary);
}

.service-card-repair .service-card-icon {
    background: rgba(27, 42, 74, 0.08);
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.service-card-list {
    margin-bottom: var(--space-xl);
}

.service-card-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.45rem 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.service-card-list li i {
    color: var(--secondary);
    font-size: 0.85rem;
    flex-shrink: 0;
}


/* ============================================
   HOME PAGE - WHY CHOOSE US
   ============================================ */
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    border-color: rgba(46, 139, 60, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(27, 42, 74, 0.06);
    color: var(--primary);
    font-size: 1.4rem;
    transition: all var(--transition);
}

.why-card:hover .why-card-icon {
    background: var(--secondary);
    color: var(--white);
}

.why-card h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}


/* ============================================
   HOME PAGE - REPAIR CTA BANNER
   ============================================ */
.repair-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.repair-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background:
        radial-gradient(circle at 70% 50%, rgba(46, 139, 60, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.repair-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.repair-cta-text h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin-bottom: var(--space-sm);
}

.repair-cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 0;
    max-width: 500px;
}

.repair-cta-actions {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
    flex-wrap: wrap;
}


/* ============================================
   HOME PAGE - TESTIMONIALS
   ============================================ */
.testimonials-slider {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-lg);
    color: var(--warning);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--space-xl);
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(46, 139, 60, 0.15);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
}

.testimonial-author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.slider-prev,
.slider-next {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.9rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: var(--space-sm);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--primary);
    width: 28px;
}


/* ============================================
   HOME PAGE - BRANDS SECTION
   ============================================ */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--space-lg);
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    cursor: default;
}

.brand-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-card);
    transform: translateY(-1px);
}

.brand-item i {
    font-size: 2rem;
    color: var(--primary);
    transition: color var(--transition);
}

.brand-item:hover i {
    color: var(--secondary);
}

.brand-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ============================================
   HOME PAGE - NEWSLETTER CTA
   ============================================ */
.newsletter-cta {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.newsletter-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.newsletter-cta-text h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.newsletter-cta-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    max-width: 420px;
}

.newsletter-cta-form {
    flex-shrink: 0;
}

.newsletter-cta-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.newsletter-cta-input-group input {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    color: var(--white);
    background: transparent;
    min-width: 280px;
}

.newsletter-cta-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-cta-input-group .btn {
    border-radius: 0;
    white-space: nowrap;
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.newsletter-cta-input-group .btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.newsletter-cta-note {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-sm);
    text-align: right;
}


/* ============================================
   PAGE HERO (Shared for inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-2xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(46, 139, 60, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 139, 60, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.page-hero .breadcrumb {
    padding: 0 0 var(--space-md);
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
}

.page-hero .breadcrumb .current {
    color: var(--white);
}

.page-hero-title {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--space-sm);
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 0;
    max-width: 600px;
}


/* ============================================
   SHOP PAGE
   ============================================ */

/* Category pills bar (eBay-style) */
.shop-category-bar {
    display: flex;
    gap: 8px;
    margin-bottom: var(--space-lg);
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.shop-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: all var(--transition);
    flex-shrink: 0;
}

.shop-cat-pill span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.shop-cat-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.shop-cat-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.shop-cat-pill.active span {
    color: rgba(255,255,255,0.7);
}

/* Active filters bar */
.shop-active-filters {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.active-filters-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    flex-shrink: 0;
}

.active-filters-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.active-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(27, 42, 74, 0.06);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.active-filter-chip:hover {
    background: rgba(239, 68, 68, 0.08);
    color: var(--error);
}

.active-filter-chip i {
    font-size: 0.65rem;
}

.clear-all-filters {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    margin-left: auto;
    flex-shrink: 0;
}

.clear-all-filters:hover {
    text-decoration: underline;
}

/* Shop layout */
.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

/* Sidebar */
/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
}

.sidebar-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-light);
}

.sidebar-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.sidebar-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    cursor: pointer;
}

/* Filter sections (eBay-style collapsible) */
.filter-section {
    border-bottom: 1px solid var(--border-light);
}

.filter-section-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
}

.filter-section-toggle i {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform var(--transition);
}

.filter-section.collapsed .filter-section-toggle i {
    transform: rotate(180deg);
}

.filter-section-body {
    padding-bottom: 14px;
}

.filter-section.collapsed .filter-section-body {
    display: none;
}

/* Filter option (eBay checkbox style) */
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition);
}

.filter-option:hover {
    color: var(--text-primary);
}

.filter-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid var(--border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: transparent;
    transition: all var(--transition);
}

.filter-option.selected .filter-check {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.filter-option-label {
    flex: 1;
}

.filter-option-count {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Price filter */
.price-filter-form {
    margin-bottom: 10px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-input-field {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex: 1;
}

.price-input-field span {
    padding: 6px 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    background: var(--off-white);
    border-right: 1px solid var(--border-light);
}

.price-input-field input {
    width: 100%;
    padding: 6px 8px;
    font-size: 0.82rem;
    border: none;
    outline: none;
    -moz-appearance: textfield;
}

.price-input-field input::-webkit-outer-spin-button,
.price-input-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-to {
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.price-go-btn {
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
}

.price-quick-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
}

.price-quick-links a {
    font-size: 0.82rem;
    color: var(--secondary);
    padding: 3px 0;
}

.price-quick-links a:hover {
    text-decoration: underline;
}

/* Out of stock label */
.out-of-stock-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--error);
    padding: 6px 0;
}

/* Pagination ellipsis */
.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-muted);
}

/* Mobile apply button */
.filter-section-mobile-apply {
    padding: var(--space-md);
    border-top: 1px solid var(--border-light);
}

/* Sidebar overlay */
.shop-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

/* Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.filter-toggle-btn {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
}

.shop-result-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.shop-sort label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.shop-sort .form-control {
    padding: 6px 2rem 6px 10px;
    font-size: 0.85rem;
    min-width: 150px;
    border-color: var(--border-light);
}

/* No results */
.shop-no-results {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
}

.shop-no-results i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: var(--space-lg);
}

.shop-no-results h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.shop-no-results p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.filter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.35rem 0;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
    transition: color var(--transition);
}

.filter-checkbox:hover {
    color: var(--text-primary);
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

.filter-checkbox .checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.filter-checkbox .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition);
}

.filter-checkbox input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-checkbox input:checked + .checkmark::after {
    opacity: 1;
}

.filter-count {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Price Range */
.price-range-inputs {
    display: flex;
    align-items: flex-end;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.price-input {
    flex: 1;
}

.price-input label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.price-input .form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

.price-separator {
    padding-bottom: 0.6rem;
    color: var(--text-muted);
    font-weight: 600;
}

.price-slider {
    width: 100%;
    height: 4px;
    appearance: none;
    -webkit-appearance: none;
    background: var(--border-light);
    border-radius: 2px;
    outline: none;
    margin-bottom: var(--space-sm);
}

.price-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.price-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Sidebar overlay for mobile */
.shop-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}


/* ============================================
   SHOP TOOLBAR
   ============================================ */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.filter-toggle-btn {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-toggle-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.shop-result-count {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.shop-sort label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.shop-sort .form-control {
    padding: 0.5rem 2.25rem 0.5rem 0.75rem;
    font-size: 0.85rem;
    min-width: 160px;
    border-color: var(--border-light);
}

.shop-view-toggle {
    display: flex;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.view-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.view-btn:not(:last-child) {
    border-right: 1px solid var(--border-light);
}

.view-btn.active {
    background: var(--primary);
    color: var(--white);
}

.view-btn:hover:not(.active) {
    background: var(--bg-light);
}

/* Active Filter Tags */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(27, 42, 74, 0.06);
    color: var(--text-primary);
    border-radius: var(--radius-full);
}

.active-filter-tag button {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.7rem;
    padding: 2px;
    transition: color var(--transition);
}

.active-filter-tag button:hover {
    color: var(--accent);
}

/* No Results */
.shop-no-results {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
}

.shop-no-results i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: var(--space-lg);
}

.shop-no-results h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.shop-no-results p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* List View */
.products-grid.list-view {
    grid-template-columns: 1fr !important;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
}

.products-grid.list-view .product-card-img {
    aspect-ratio: 1 / 1;
    height: 100%;
}

.products-grid.list-view .product-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-breadcrumb-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

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

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
}

.product-gallery-badges {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.product-gallery-main {
    background: #F2F3F5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-light);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--border);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-grey) 100%);
}

.product-gallery-thumbs {
    display: flex;
    gap: var(--space-sm);
}

.product-thumb {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all var(--transition);
    background: #F2F3F5;
    aspect-ratio: 1 / 1;
}

.product-thumb.active {
    border-color: var(--primary);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumb:hover,
.product-thumb.active {
    border-color: var(--primary);
}

.thumb-placeholder {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--border);
    background: var(--bg-light);
}

/* Product Info */
.product-info-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: var(--space-sm);
}

.product-info-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.product-info-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.product-info-rating .stars {
    font-size: 1rem;
}

.product-info-rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.product-info-reviews-link {
    font-size: 0.88rem;
    color: var(--text-muted);
    cursor: pointer;
}

.product-info-reviews-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Price Box */
.product-info-price-box {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(46, 139, 60, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(46, 139, 60, 0.12);
}

.product-info-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.product-info-price-original {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-info-discount {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(139, 26, 43, 0.08);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

.product-info-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* Quick Highlights */
.product-info-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.6rem 0.85rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.highlight-item i {
    color: var(--secondary);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

/* Product Options */
.product-option {
    margin-bottom: var(--space-lg);
}

.product-option-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.product-colour-options {
    display: flex;
    gap: var(--space-sm);
}

.colour-swatch {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 3px solid var(--border-light);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.colour-swatch:hover {
    border-color: var(--text-muted);
}

.colour-swatch.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary);
}

.product-variant-options {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.variant-btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 500;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    background: var(--white);
}

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

.variant-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

/* Quantity + Actions */
.product-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.qty-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg-light);
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.qty-input {
    width: 52px;
    height: 42px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    background: var(--white);
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions .add-to-cart-btn {
    flex: 1;
}

.wishlist-btn.active {
    border-color: var(--accent);
    color: var(--accent);
}

/* Trust Info */
.product-trust-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 2px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.trust-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Share Links */
.product-share {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.product-share > span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
}

.product-share-links {
    display: flex;
    gap: var(--space-sm);
}

.product-share-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.product-share-links a:hover {
    background: var(--primary);
    color: var(--white);
}


/* ============================================
   PRODUCT TABS
   ============================================ */
.product-tabs-nav {
    display: flex;
    gap: var(--space-xs);
    border-bottom: 2px solid var(--border-light);
    margin-bottom: var(--space-2xl);
    overflow-x: auto;
}

.product-tab-btn {
    padding: 0.85rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
    white-space: nowrap;
    background: none;
}

.product-tab-btn:hover {
    color: var(--primary);
}

.product-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
}

.product-tab-content {
    display: none;
}

.product-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Description Tab */
.tab-description-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
}

.tab-description-content > p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.description-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.desc-feature {
    display: flex;
    gap: var(--space-md);
}

.desc-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 139, 60, 0.08);
    color: var(--secondary);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
}

.desc-feature h5 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.desc-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.tab-description-content h4 {
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
}

.box-contents li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.box-contents li i {
    color: var(--secondary);
    font-size: 0.85rem;
}

/* Specifications Tab */
.specs-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

.specs-table th {
    font-weight: 600;
    color: var(--text-primary);
    width: 200px;
    background: rgba(27, 42, 74, 0.03);
}

.specs-table td {
    color: var(--text-secondary);
}

/* Reviews Tab */
.reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    align-items: center;
}

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

.reviews-score-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-sm);
}

.reviews-score .stars {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.reviews-total {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-bar-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-bar-row span:first-child {
    width: 40px;
    text-align: right;
}

.review-bar-row span:first-child i {
    color: var(--warning);
    font-size: 0.7rem;
}

.review-bar-row span:last-child {
    width: 30px;
}

.review-bar {
    flex: 1;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: var(--warning);
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* Individual Reviews */
.review-item {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--border-light);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.review-meta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.review-meta .stars {
    font-size: 0.75rem;
}

.review-date {
    margin-left: auto;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.review-title {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.review-verified {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--secondary);
}

.review-verified i {
    margin-right: 4px;
}


/* ============================================
   REPAIRS PAGE
   ============================================ */

/* Repair Service Cards */
.repair-service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.repair-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.repair-service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(46, 139, 60, 0.12);
}

.repair-service-card:hover::after {
    transform: scaleX(1);
}

.repair-service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(27, 42, 74, 0.06);
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: var(--space-lg);
    transition: all var(--transition);
}

.repair-service-card:hover .repair-service-icon {
    background: var(--secondary);
    color: var(--white);
}

.repair-service-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.repair-service-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.repair-service-details {
    margin-bottom: var(--space-lg);
}

.repair-service-details li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.repair-service-details li i {
    color: var(--secondary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.repair-service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.repair-from {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.repair-from strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
}

.repair-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.repair-time i {
    color: var(--secondary);
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
}

.how-step {
    flex: 1;
    text-align: center;
    max-width: 280px;
    position: relative;
}

.how-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
}

.how-step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-full);
    background: rgba(27, 42, 74, 0.06);
    color: var(--primary);
    font-size: 1.8rem;
    transition: all var(--transition);
}

.how-step:hover .how-step-icon {
    background: var(--primary);
    color: var(--white);
}

.how-step h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.how-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.how-step-connector {
    display: flex;
    align-items: center;
    padding-top: 40px;
    color: var(--border);
    font-size: 1.2rem;
}


/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.pricing-table {
    min-width: 600px;
    background: var(--white);
}

.pricing-table thead th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 1rem 1.25rem;
    text-align: center;
    white-space: nowrap;
}

.pricing-table thead th:first-child {
    text-align: left;
}

.pricing-table tbody td {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.pricing-table tbody td:first-child {
    text-align: left;
}

.pricing-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.pricing-table tbody tr:hover {
    background: rgba(46, 139, 60, 0.04);
}

.pricing-table tbody td strong {
    color: var(--text-primary);
}


/* ============================================
   REPAIR BOOKING FORM
   ============================================ */
.repair-booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-2xl);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.repair-booking-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
}

/* Booking Sidebar */
.repair-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-lg);
}

.repair-info-card h4 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.repair-info-card h4 i {
    color: var(--secondary);
}

.repair-info-card ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    line-height: 1.5;
}

.repair-info-card ul li i {
    color: var(--secondary);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.repair-contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.repair-hours {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.repair-hours i {
    color: var(--secondary);
}


/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(27, 42, 74, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem var(--space-lg);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
    background: none;
    gap: var(--space-md);
}

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

.faq-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 var(--space-lg);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.faq-item.open {
    border-color: rgba(46, 139, 60, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-item.open .faq-question {
    color: var(--primary);
}


/* ============================================
   ABOUT PAGE
   ============================================ */

/* Our Story */
.about-story {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-story-content .section-label {
    margin-bottom: var(--space-md);
}

.about-story-content h2 {
    margin-bottom: var(--space-lg);
}

.about-story-content .text-lead {
    margin-bottom: var(--space-lg);
}

.about-story-content p {
    line-height: 1.8;
}

.about-story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
}

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

.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

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

/* About Visual */
.about-story-image-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-visual-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.about-visual-card i {
    font-size: 1.2rem;
    color: var(--secondary-light);
}

.about-visual-card-1 {
    top: 50px;
    left: 30px;
    animation-delay: 0s;
}

.about-visual-card-2 {
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    animation-delay: -2s;
}

.about-visual-card-3 {
    bottom: 50px;
    left: 50px;
    animation-delay: -4s;
}

.about-visual-glow {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 139, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}


/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.mv-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.mv-mission::before {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

.mv-vision::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.mv-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
}

.mv-mission .mv-icon {
    background: rgba(46, 139, 60, 0.1);
    color: var(--secondary);
}

.mv-vision .mv-icon {
    background: rgba(27, 42, 74, 0.08);
    color: var(--primary);
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.mv-card blockquote {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    border-left: 3px solid var(--secondary);
}

.mv-card > p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0;
}


/* Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-2xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    background: var(--secondary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--secondary);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateX(4px);
}

.timeline-year {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.timeline-content h4 {
    font-size: 1.05rem;
    margin-bottom: var(--space-xs);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}


/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.team-role {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.team-card > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.team-socials a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.team-socials a:hover {
    background: var(--primary);
    color: var(--white);
}


/* Certifications */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.cert-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.cert-card:hover {
    border-color: rgba(46, 139, 60, 0.15);
    transform: translateY(-1px);
    box-shadow: var(--shadow-card-hover);
}

.cert-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-lg);
    background: rgba(27, 42, 74, 0.06);
    color: var(--primary);
    font-size: 1.4rem;
    transition: all var(--transition);
}

.cert-card:hover .cert-icon {
    background: var(--secondary);
    color: var(--white);
}

.cert-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.cert-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}


/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Info Cards */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(46, 139, 60, 0.12);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-full);
    background: rgba(27, 42, 74, 0.06);
    color: var(--primary);
    font-size: 1.3rem;
    transition: all var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--secondary);
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.contact-info-card p a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.contact-info-card p a:hover {
    color: var(--primary);
}

.contact-info-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.contact-info-link:hover {
    color: var(--secondary-dark);
}

.contact-info-link i {
    font-size: 0.7rem;
    transition: transform var(--transition);
}

.contact-info-link:hover i {
    transform: translateX(3px);
}

.contact-info-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* Contact Layout (Form + Map) */
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
}

/* Map */
.contact-map {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-lg);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Quick Contact Card */
.contact-quick-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
}

.contact-quick-card h4 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.contact-quick-card h4 i {
    color: var(--secondary);
}

.quick-contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.quick-contact-item:hover {
    background: rgba(27, 42, 74, 0.06);
    color: var(--primary);
}

.quick-contact-item i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.quick-contact-socials {
    display: flex;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.quick-contact-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.quick-contact-socials a:hover {
    background: var(--primary);
    color: var(--white);
}


/* ============================================
   WHOLESALE SECTION
   ============================================ */
.wholesale-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.wholesale-info .section-label {
    margin-bottom: var(--space-md);
}

.wholesale-info h2 {
    margin-bottom: var(--space-md);
}

.wholesale-info > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.wholesale-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.wholesale-benefits li i {
    color: var(--secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.wholesale-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.wholesale-form {
    padding: var(--space-xl);
}

.wholesale-form h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--bg-light);
}


/* ============================================
   CART PAGE
   ============================================ */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    align-items: start;
}

/* Cart Header Row */
.cart-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Cart Item Row */
.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-lg);
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition);
}

.cart-item:hover {
    background: var(--off-white);
}

.cart-item:last-child {
    border-bottom: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.cart-items-wrapper {
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Product Info in Cart */
.cart-product-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-product-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: #F2F3F5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--border);
    flex-shrink: 0;
    overflow: hidden;
}

.cart-product-details h4 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.cart-product-details h4 a {
    color: var(--text-primary);
    transition: color var(--transition);
}

.cart-product-details h4 a:hover {
    color: var(--primary);
}

.cart-product-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Cart Price */
.cart-price {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Cart Quantity */
.cart-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    width: fit-content;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition);
    background: none;
}

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

.cart-qty-input {
    width: 40px;
    height: 32px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    background: var(--white);
    -moz-appearance: textfield;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Cart Subtotal */
.cart-subtotal {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

/* Remove Button */
.cart-remove-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    background: none;
}

.cart-remove-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

/* Cart Actions Bar */
.cart-actions-bar {
    display: flex;
    justify-content: space-between;
    padding: var(--space-lg);
    background: var(--white);
    border-top: 1px solid var(--border-light);
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
}

.cart-summary-title {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--bg-light);
}

.cart-summary-rows {
    margin-bottom: var(--space-md);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cart-summary-divider {
    height: 1px;
    background: var(--border-light);
    margin: var(--space-md) 0;
}

.cart-summary-total {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-summary-total span:last-child {
    font-size: 1.4rem;
    color: var(--primary);
}

/* Trust Badges */
.cart-trust-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.cart-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.cart-trust-item i {
    color: var(--secondary);
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.cart-payment-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.cart-payment-icons i {
    font-size: 1.5rem;
    color: var(--border);
}

/* Empty Cart */
.cart-empty-content {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
}

.cart-empty-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    border-radius: var(--radius-full);
    background: var(--bg-light);
    font-size: 2.5rem;
    color: var(--border);
}

.cart-empty-content h2 {
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
}

.cart-empty-content p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto var(--space-xl);
}


/* ============================================
   CHECKOUT PAGE
   ============================================ */

/* Checkout Steps Bar */
.checkout-steps-bar {
    background: var(--white);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border-light);
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.step-circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    border: 2px solid var(--border);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--white);
    transition: all var(--transition);
}

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

.checkout-step.completed .step-circle {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.checkout-step span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

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

.checkout-step.completed span {
    color: var(--secondary);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border-light);
    margin: 0 var(--space-sm);
    margin-bottom: 20px;
}

.step-line.active {
    background: var(--secondary);
}

/* Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    align-items: start;
}

/* Checkout Blocks */
.checkout-block {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-lg);
}

.checkout-block-title {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.15rem;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--bg-light);
}

.checkout-block-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.payment-method-option {
    display: block;
    cursor: pointer;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition);
}

.payment-method-option:hover {
    border-color: var(--primary);
}

.payment-method-option.active {
    border-color: var(--primary);
    background: rgba(27, 42, 74, 0.02);
}

.payment-method-option input[type="radio"] {
    display: none;
}

.payment-method-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-method-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.payment-method-icons {
    display: flex;
    gap: var(--space-sm);
    font-size: 1.5rem;
    color: var(--text-muted);
}

.payment-method-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
}

/* Stripe Card Element Placeholder */
.stripe-placeholder {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stripe-placeholder-row {
    display: flex;
    gap: var(--space-md);
}

.stripe-row-split .stripe-placeholder-field {
    flex: 1;
}

.stripe-placeholder-field {
    flex: 1;
}

.stripe-placeholder-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.stripe-field-mock {
    padding: 0.65rem 0.85rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.stripe-field-mock i {
    color: var(--border);
}

/* Place Order Button */
.checkout-secure-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.checkout-secure-note i {
    color: var(--secondary);
}

/* Checkout Summary Sidebar */
.checkout-summary-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
    margin-bottom: var(--space-lg);
}

.checkout-summary-title {
    font-size: 1.15rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--bg-light);
}

.checkout-order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: var(--space-md);
}

.checkout-order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
}

.checkout-order-item:last-child {
    border-bottom: none;
}

.checkout-item-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #F2F3F5;
}

.checkout-item-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D5DB;
    font-size: 1rem;
}

.checkout-order-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.checkout-order-item:last-child {
    border-bottom: none;
}

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

.checkout-item-name {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-item-qty {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.checkout-item-price {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.checkout-summary-edit {
    text-align: center;
    margin-top: var(--space-md);
}

.checkout-summary-edit a {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.checkout-summary-edit a:hover {
    color: var(--primary);
}

/* Checkout Trust Card */
.checkout-trust-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}


/* ============================================
   WHOLESALE PAGE
   ============================================ */
.wholesale-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
}

.wholesale-hero-content .section-label {
    margin-bottom: var(--space-md);
}

.wholesale-hero-content .text-lead {
    margin-bottom: var(--space-lg);
}

.wholesale-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
}

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

.ws-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.ws-stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ws-hero-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.15);
}

/* Benefit Cards */
.ws-benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.ws-benefit-card:hover {
    border-color: rgba(46, 139, 60, 0.15);
    transform: translateY(-2px);
}

.ws-benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-lg);
    background: rgba(27, 42, 74, 0.05);
    color: var(--primary);
    font-size: 1.2rem;
    transition: all var(--transition);
}

.ws-benefit-card:hover .ws-benefit-icon {
    background: var(--secondary);
    color: var(--white);
}

.ws-benefit-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.ws-benefit-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Client Cards */
.ws-client-card {
    text-align: center;
    padding: var(--space-xl);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.ws-client-card:hover {
    border-color: rgba(46, 139, 60, 0.15);
}

.ws-client-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-full);
    background: rgba(27, 42, 74, 0.05);
    color: var(--primary);
    font-size: 1.2rem;
}

.ws-client-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.ws-client-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Wholesale Form Layout */
.ws-form-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-2xl);
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.wholesale-form-full {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border-light);
}

.ws-product-checks {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-md);
}

/* Sidebar Cards */
.ws-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
    margin-bottom: var(--space-lg);
}

.ws-sidebar-card h4 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.ws-sidebar-card h4 i {
    color: var(--secondary);
}

.ws-sidebar-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.ws-sidebar-hours {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.ws-sidebar-hours i {
    color: var(--secondary);
}

.ws-sidebar-trust ul li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.ws-sidebar-trust ul li i {
    color: var(--secondary);
    font-size: 0.8rem;
}


/* ============================================
   LEGAL PAGES (Privacy, Terms, Returns, etc.)
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.25rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-light);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.05rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
}

.legal-content a {
    color: var(--secondary);
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Legal Highlight Cards */
.legal-highlight {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    border: 1px solid var(--border-light);
}

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

.legal-highlight-item {
    text-align: center;
}

.legal-highlight-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
    display: block;
}

.legal-highlight-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.legal-highlight-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Cookie Table */
.legal-table {
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.legal-table th {
    background: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: left;
}

.legal-table td {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.legal-table tr:nth-child(even) {
    background: var(--off-white);
}


/* ============================================
   ORDER CONFIRMATION PAGE
   ============================================ */
.confirmation-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
}

.confirmation-content h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
}

.confirmation-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
}

.confirmation-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.confirmation-info-card {
    padding: var(--space-lg);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.confirmation-info-card i {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
    display: block;
}

.confirmation-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.confirmation-info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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


/* ============================================
   TRACK ORDER PAGE
   ============================================ */

/* Centered search (no results state) */
.track-search-centered {
    max-width: 500px;
    margin: 0 auto;
}

.track-search-card {
    text-align: center;
    padding: var(--space-2xl);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: var(--white);
}

.track-search-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.track-search-card h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.track-search-card > p {
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.track-search-form {
    text-align: left;
}

.track-search-help {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.track-search-help p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* Mini search bar (when order is found) */
.track-search-mini {
    margin-bottom: var(--space-xl);
}

.track-mini-form {
    display: flex;
    gap: 8px;
}

.track-mini-form .form-control {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.85rem;
}

/* Order header */
.track-order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.track-order-header h2 {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.track-order-header p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
}

.track-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
}

.status-pending { background: #FEF3C7; color: #92400E; }
.status-processing { background: #DBEAFE; color: #1E40AF; }
.status-shipped { background: #E0E7FF; color: #3730A3; }
.status-delivered { background: #D1FAE5; color: #065F46; }
.status-cancelled, .status-refunded { background: #FEE2E2; color: #991B1B; }

/* Progress bar tracker */
.track-progress {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
}

.track-progress-bar {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
}

.track-progress-fill {
    height: 100%;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.track-progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.track-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 4px;
}

.track-progress-dot {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 3px solid var(--border-light);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--border);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.track-progress-step.completed .track-progress-dot {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.track-progress-step.active .track-progress-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 5px rgba(27,42,74,0.08);
}

.track-progress-step strong {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.track-progress-step.completed strong,
.track-progress-step.active strong {
    color: var(--text-primary);
}

.track-progress-step span {
    font-size: 0.72rem;
    color: var(--text-muted);
    max-width: 120px;
}

.track-progress-step small {
    font-size: 0.7rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Shipping info card */
.track-shipping-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.track-shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
}

.track-shipping-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.track-shipping-item i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.track-shipping-item strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.track-shipping-item span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Details grid */
.track-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    align-items: start;
}

.track-detail-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.track-detail-card h3 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-light);
}

.track-detail-card h3 i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.track-detail-card p {
    font-size: 0.88rem;
    margin-bottom: 4px;
}

/* Order items in tracker */
.track-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.track-item-row:last-child { border-bottom: none; }

.track-item-info strong {
    display: block;
    font-size: 0.88rem;
}

.track-item-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.track-item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary);
}

.track-items-summary {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.track-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.track-summary-total {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid var(--border-light);
}

/* Status history */
.track-history {
    position: relative;
    padding-left: 20px;
}

.track-history::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border-light);
}

.track-history-item {
    display: flex;
    gap: var(--space-md);
    padding: 8px 0;
    position: relative;
}

.track-history-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: var(--radius-full);
    background: var(--secondary);
    margin-top: 5px;
    position: relative;
    z-index: 1;
    margin-left: -17px;
}

.track-history-item strong {
    display: block;
    font-size: 0.88rem;
}

.track-history-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 2px 0;
}

.track-history-item small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Help card */
.track-help-card {
    text-align: center;
}

.track-help-card .btn {
    margin: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .track-details-grid { grid-template-columns: 1fr; }
    .track-progress-step span { display: none; }
    .track-progress-step small { display: none; }
    .track-mini-form { flex-direction: column; }
    .track-shipping-grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================
   FAQ PAGE
   ============================================ */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.faq-cat-btn {
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.faq-cat-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.faq-cat-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.faq-help-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    margin-top: var(--space-2xl);
    border: 1px solid var(--border-light);
}

.faq-help-card h3 {
    margin-bottom: var(--space-sm);
}

.faq-help-card p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.faq-help-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}


/* ============================================
   REFURBISHED PAGE
   ============================================ */
.refurb-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: start;
}

.refurb-grades {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border-light);
}

.refurb-grades h4 {
    font-size: 1.05rem;
    margin-bottom: var(--space-lg);
}

.grade-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.grade-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.grade-badge {
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
}

.grade-a { background: var(--secondary); }
.grade-b { background: #3B82F6; }
.grade-c { background: #F59E0B; color: #000; }

.grade-card strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.grade-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.refurb-trust-card {
    text-align: center;
    padding: var(--space-xl);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.refurb-trust-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
    display: block;
}

.refurb-trust-card h4 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.refurb-trust-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.refurb-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--off-white);
}

.refurb-cta-card i {
    font-size: 2rem;
    color: var(--border);
    margin-bottom: var(--space-md);
}

.refurb-cta-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.refurb-cta-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}


/* ---- FORMS ---- */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    background-color: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-check {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-error {
    font-size: 0.8rem;
    color: var(--error);
    margin-top: var(--space-xs);
}


/* ---- PRODUCT CARD ---- */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.product-card-badges {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    z-index: 2;
}

.product-card-actions {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition);
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card-actions button {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    font-size: 0.85rem;
}

.product-card-actions button:hover {
    background: var(--primary);
    color: var(--white);
}

.product-card-img-wrapper {
    overflow: hidden;
    position: relative;
    height: 220px;
    background: #F2F3F5;
}

.product-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-img-wrapper img {
    transform: scale(1.05);
}

.product-card-img-wrapper .product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #D1D5DB;
}

.product-card-body {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.product-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
    margin-bottom: var(--space-xs);
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a:hover {
    color: var(--primary);
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.product-card-rating .stars {
    color: var(--warning);
    font-size: 0.8rem;
}

.product-card-rating .count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

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

.product-card-price .original-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card .btn {
    width: 100%;
}


/* ---- STAR RATINGS ---- */
.stars {
    display: inline-flex;
    gap: 2px;
}

.stars i {
    color: var(--warning);
    font-size: 0.85rem;
}

.stars i.empty {
    color: var(--border);
}


/* ---- BREADCRUMBS ---- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    font-size: 0.875rem;
}

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

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

.breadcrumb .separator {
    color: var(--border);
    font-size: 0.7rem;
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 500;
}


/* ---- PAGINATION ---- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-2xl);
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.pagination a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.pagination .active {
    background: var(--primary);
    color: var(--white);
}

.pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}


/* ---- ALERTS / NOTIFICATIONS ---- */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065F46;
    border-left: 4px solid var(--success);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400E;
    border-left: 4px solid var(--warning);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border-left: 4px solid var(--error);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: #1E40AF;
    border-left: 4px solid var(--info);
}


/* ---- PRICE STYLES ---- */
.price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.price-lg {
    font-size: 1.75rem;
}

.price-original {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}


/* ---- DIVIDERS ---- */
.divider {
    height: 1px;
    background: var(--border-light);
    margin: var(--space-xl) 0;
}


/* ---- BACK TO TOP BUTTON ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-1px);
}


/* ---- OVERLAY / BACKDROP ---- */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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


/* ---- FORM ALERTS ---- */
.form-alert {
    transition: opacity 0.3s ease;
}

/* ---- ORDER SUCCESS ---- */
.order-success {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
}

.order-success-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    animation: scaleUp 0.5s ease;
}

.order-success h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

.order-success p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.order-success .btn {
    margin-top: var(--space-lg);
}


/* ---- COOKIE CONSENT BANNER ---- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: rgba(255,255,255,0.9);
    z-index: 9998;
    padding: 16px 0;
    display: none;
}

.cookie-consent.visible {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.cookie-consent-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.cookie-consent-text p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255,255,255,0.8);
}

.cookie-consent-text a {
    color: var(--secondary-light);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-consent-actions .btn {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 8px 16px;
}

@media (max-width: 767px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
}


/* ---- CART NOTIFICATION ---- */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 0.85rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transform: translateX(120%);
    transition: transform 0.4s ease;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification i {
    color: var(--secondary-light);
}


/* ---- LOADING SPINNER ---- */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}


/* ---- UTILITY CLASSES ---- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

/* Margin utilities */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* Padding utilities */
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }

/* Width */
.w-full { width: 100%; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }


/* ---- ANIMATIONS ---- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.5s ease forwards;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }


/* ---- CIRCUIT DECORATIVE ELEMENT ---- */
.circuit-line {
    position: absolute;
    background: linear-gradient(180deg, var(--secondary), transparent);
    width: 2px;
    height: 80px;
    opacity: 0.15;
}

.circuit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.15;
}

.circuit-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.5;
}
