/**
 * Main Stylesheet - TraceerMijnFiets.nl
 * Professionele Fiets Trackers
 */

/* CSS Variables */
:root {
    /* Colors - Now using dynamic colors from admin */
    --primary-green: var(--primary-color, #500000);
    --primary-green-dark: var(--header-color, #500000);
    --primary-green-light: var(--success-color, #2ed573);
    
    /* Transparantie versies voor shadows en overlays */
    --primary-color-rgba-05: rgba(80, 0, 0, 0.05);
    --primary-color-rgba-10: rgba(80, 0, 0, 0.1);
    --primary-color-rgba-15: rgba(80, 0, 0, 0.15);
    --primary-color-rgba-20: rgba(80, 0, 0, 0.2);
    --primary-color-rgba-30: rgba(80, 0, 0, 0.3);
    --primary-color-rgba-40: rgba(80, 0, 0, 0.4);
    --secondary-blue: var(--link-color, #ff6b35);
    --accent-orange: var(--accent-color, #ff4757);
    
    /* Status Colors - Now using dynamic colors from admin */
    --success-color: var(--success-color, #2ed573);
    --danger-color: var(--danger-color, #ff4757);
    --warning-color: var(--warning-color, #ffa502);
    
    /* Grays */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Status Colors - Now using dynamic colors from admin */
    --success: var(--success-color, #2ed573);
    --warning: var(--warning-color, #ffa502);
    --error: var(--danger-color, #ff4757);
    --info: var(--info-color, #3742fa);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--spacing-md);
}

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

a:hover {
    color: var(--header-color);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

/* Section Base Styling */
section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    transition: all 0.3s ease;
}

section:first-of-type {
    padding-top: var(--spacing-4xl);
}

section:last-of-type {
    padding-bottom: var(--spacing-4xl);
}

/* Page Content Styling */
.page-content {
    background: var(--gray-50);
    padding: var(--spacing-2xl) 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.content-wrapper h1:first-child,
.content-wrapper h2:first-child,
.content-wrapper h3:first-child {
    margin-top: 0;
}

.content-wrapper p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    color: var(--gray-700);
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
}

.content-wrapper li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    color: var(--gray-700);
}

.content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-wrapper a:hover {
    color: var(--header-color);
    text-decoration: underline;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.content-wrapper blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    font-style: italic;
    color: var(--gray-600);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--primary-color-rgba-30);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-color);
    border-color: var(--header-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-color-rgba-40);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover:not(:disabled) {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-color-rgba-30);
}

.btn-secondary:hover:not(:disabled)::before {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-300);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover:not(:disabled) {
    background: var(--gray-100);
    border-color: var(--gray-400);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Contact Button - Red Style */
.contact-btn {
    color: #dc3545 !important;
    border-color: #dc3545 !important;
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #dc3545;
    transition: width 0.3s ease;
    z-index: -1;
}

.contact-btn:hover {
    color: white !important;
    border-color: #dc3545 !important;
    background: #dc3545 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.contact-btn:hover::before {
    width: 100%;
}

.contact-btn i {
    color: inherit;
    transition: all 0.3s ease;
}

.contact-btn:hover i {
    transform: scale(1.1);
}

.btn-danger {
    background-color: var(--error);
    color: white;
    border-color: var(--error);
}

.btn-danger:hover:not(:disabled) {
    background-color: #d32f2f;
    border-color: #d32f2f;
}

.btn-sm {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-xl);
}

/* Header */
.header {
    background: var(--header-color) !important;
    background-color: var(--header-color) !important;
    background-image: none !important;
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--primary-color-rgba-15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left 0.6s ease;
}

.header:hover::before {
    left: 100%;
}

.header.scrolled {
    background: var(--header-color) !important;
    background-color: var(--header-color) !important;
    background-image: none !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.navbar {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: var(--font-size-xl);
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-sm);
    border-radius: 12px;
    background: var(--primary-color-rgba-05);
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color-rgba-10);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-logo:hover::before {
    opacity: 1;
}

.nav-logo:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px var(--primary-color-rgba-15);
}

.nav-logo img {
    height: 70px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px var(--primary-color-rgba-20));
}

.nav-logo:hover img {
    transform: rotate(3deg) scale(1.05);
    filter: drop-shadow(0 3px 8px var(--primary-color-rgba-30));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Hide nav-menu on mobile - will be overridden in media query */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--accent-orange);
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-lg);
    transition: all 0.3s ease;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-color-rgba-20);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left 0.4s ease;
    pointer-events: none;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: var(--nav-hover-color, #ffa502) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-color-rgba-20);
    border-color: var(--primary-color-rgba-40);
    text-shadow: 0 1px 3px var(--primary-color-rgba-30);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 90%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 15px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    z-index: 999999;
}

/* Show nav-toggle on mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
    }
}

.nav-toggle:hover {
    background: var(--header-color);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

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

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

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

/* Cart Link */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.cart-link {
    position: relative;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    font-weight: 500;
}

.cart-link:hover {
    background: var(--header-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-color-rgba-30);
}

.cart-count {
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 600;
    position: absolute;
    top: -5px;
    right: -5px;
}

.nav-link.admin-link {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 12px;
    border: 1px solid var(--primary-color-rgba-30);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.nav-link.admin-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-color-rgba-40);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

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

.cart-link {
    position: relative;
    color: var(--gray-700);
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-color-rgba-10);
    text-decoration: none;
}

.cart-link:hover {
    color: var(--primary-color);
    background: var(--primary-color-rgba-10);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 3px 12px var(--primary-color-rgba-15);
    border-color: var(--primary-color-rgba-30);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Removed duplicate nav-toggle styles */
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: floatIcon 15s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: var(--accent-orange);
}

.floating-icon.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    color: var(--success);
}

.floating-icon.icon-3 {
    top: 30%;
    right: 25%;
    animation-delay: 10s;
    color: var(--info);
}

.floating-icon.icon-4 {
    bottom: 30%;
    left: 20%;
    animation-delay: 7s;
    color: var(--warning);
}

@keyframes floatIcon {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) rotate(5deg) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) rotate(-3deg) scale(0.9);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-30px) rotate(2deg) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.hero-badge i {
    font-size: var(--font-size-lg);
}

.hero-content h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-lg);
    color: white;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: titleSlideIn 1s ease-out;
}

.title-line.highlight {
    background: var(--accent-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease-out 0.3s both;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.6;
    color: var(--accent-orange) !important;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 200px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.feature-desc {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

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

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-large {
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left 0.5s ease;
}

.btn-large:hover .btn-shine {
    left: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: var(--spacing-lg);
    min-width: 120px;
    transition: all 0.3s ease;
    animation: statFloat 6s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation-delay: 2s;
}

.stat-item:nth-child(3) {
    animation-delay: 4s;
}

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

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.2;
}

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

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.tracker-visualization {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.tracker-device {
    background: #2c3e50;
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: deviceFloat 6s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.tracker-screen {
    background: #1a1a1a;
    border-radius: 15px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.tracker-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    animation: screenShine 3s ease-in-out infinite;
}

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

.tracker-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.signal-bars {
    display: flex;
    gap: 3px;
    align-items: end;
}

.signal-bars .bar {
    width: 4px;
    background: var(--success);
    border-radius: 2px;
    animation: signalPulse 2s ease-in-out infinite;
}

.signal-bars .bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.signal-bars .bar:nth-child(2) { height: 12px; animation-delay: 0.2s; }
.signal-bars .bar:nth-child(3) { height: 16px; animation-delay: 0.4s; }
.signal-bars .bar:nth-child(4) { height: 20px; animation-delay: 0.6s; }

@keyframes signalPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.gps-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--success);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.gps-indicator i {
    animation: satelliteSpin 4s linear infinite;
}

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

.tracker-label {
    text-align: center;
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: white;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    animation: badgeFloat 4s ease-in-out infinite;
}

.feature-badge:nth-child(2) {
    animation-delay: 2s;
}

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

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.feature-badge i {
    color: var(--accent-orange);
    font-size: var(--font-size-base);
}

/* Dynamic Content */
.dynamic-content {
    padding: var(--spacing-3xl) 0;
    background-color: var(--gray-50);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    color: var(--gray-900);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.content-wrapper h1:first-child,
.content-wrapper h2:first-child,
.content-wrapper h3:first-child {
    margin-top: 0;
}

.content-wrapper p {
    margin-bottom: var(--spacing-lg);
    color: var(--gray-700);
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.content-wrapper li {
    margin-bottom: var(--spacing-sm);
    color: var(--gray-700);
}

.content-wrapper strong {
    color: var(--gray-900);
    font-weight: 600;
}

.content-wrapper em {
    font-style: italic;
    color: var(--gray-600);
}

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    text-align: center;
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-3xl);
    color: var(--gray-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    margin: 0 auto var(--spacing-lg);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Products Section */
.products {
    padding: var(--spacing-3xl) 0;
    background-color: var(--gray-50);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.product-content {
    padding: var(--spacing-lg);
}

.product-content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.product-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.product-price {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Our Values Section */
.our-values {
    padding: var(--spacing-3xl) 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background-color: var(--gray-100);
    padding: 20%;
    opacity: 0.7;
}

.value-icon i {
    font-size: 2.5rem;
    color: white;
}

.value-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Our Team Section */
.our-team {
    padding: var(--spacing-3xl) 0;
    background-color: var(--gray-50);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.team-member {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.member-photo img[src*="no-image.svg"],
.member-photo img[src*="team-placeholder.svg"] {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.5;
}

/* Placeholder styling for other images */
.about-image img[src*="hero-placeholder.svg"],
.tech-image img[src*="tech-placeholder.svg"] {
    opacity: 0.7;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
}

.team-member:hover .member-photo img:not([src*="no-image.svg"]):not([src*="team-placeholder.svg"]) {
    transform: scale(1.05);
}

.member-info {
    padding: var(--spacing-xl);
}

.member-info h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.member-role {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.member-info p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.cta-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: var(--footer-color) !important;
    background-color: var(--footer-color) !important;
    background-image: none !important;
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, var(--primary-color-rgba-10) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-section p {
    color: var(--gray-300);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: var(--gray-300);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: var(--spacing-sm);
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.social-links {
    margin-top: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gray-700);
    color: white;
    text-align: center;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: var(--font-size-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px var(--primary-color-rgba-40);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--gray-400);
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -var(--spacing-md);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: var(--primary-color);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pageFloat 15s ease-in-out infinite;
}

@keyframes pageFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.page-header-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInLeft 0.6s ease-out 0.2s both;
    transition: all 0.3s ease;
}

.page-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    animation: badgeShine 3s ease-in-out infinite;
}

.page-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.page-title .title-line {
    display: block;
    animation: titleSlideIn 1s ease-out;
}

.page-title .title-line.highlight {
    background: var(--accent-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease-out 0.3s both;
}

.page-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--accent-orange) !important;
    animation: fadeInRight 0.8s ease-out 0.4s both;
    transition: all 0.3s ease;
}

.page-stats {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* B2B Hero Section */
.b2b-hero {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
    position: relative;
}

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

.hero-question {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-question h2 {
    font-size: var(--font-size-3xl);
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}

.question-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px var(--primary-color-rgba-30);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--accent-orange) !important;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

/* Single benefit card styling */
.benefits-grid:has(.benefit-card:only-child) {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: var(--spacing-xl) auto;
}

.benefits-grid:has(.benefit-card:only-child) .benefit-card {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* B2B Hero improvements */
.b2b-hero {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

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

.hero-question {
    margin-bottom: var(--spacing-xl);
}

.hero-question h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
}

.question-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
}

.b2b-cta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-2xl);
}

/* Partnership Benefits improvements */
.partnership-benefits {
    padding: var(--spacing-3xl) 0;
    background-color: white;
}

.partnership-benefits h2 {
    text-align: center;
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-2xl);
    color: var(--gray-900);
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color-rgba-10);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(255, 152, 0, 0.4);
}

.benefit-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.benefit-card p {
    color: var(--gray-600);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.b2b-cta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

/* Cart Page Styles */
.cart-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.empty-cart {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.empty-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray-400);
    margin: 0 auto var(--spacing-xl);
    position: relative;
    animation: emptyCartFloat 4s ease-in-out infinite;
}

@keyframes emptyCartFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.empty-cart h2 {
    font-size: var(--font-size-3xl);
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.empty-cart p {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.empty-cart-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: 15px;
}

.empty-cart-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color-rgba-10);
}

.empty-cart-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.empty-cart-features .feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.empty-cart-features .feature-item span {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-700);
    text-align: center;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-2xl);
    align-items: start;
}

.cart-items h2 {
    font-size: var(--font-size-2xl);
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.cart-items-list {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

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

.cart-item:hover {
    background: var(--gray-50);
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: var(--spacing-lg);
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .item-image img {
    transform: scale(1.05);
}

.item-details {
    flex: 1;
    margin-right: var(--spacing-lg);
}

.item-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.item-price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
}

.item-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--gray-100);
    border-radius: 25px;
    padding: var(--spacing-xs);
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-600);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--gray-900);
}

.remove-btn {
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.cart-summary {
    background: white;
    border-radius: 15px;
    padding: var(--spacing-xl);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: var(--spacing-lg);
}

.cart-summary h3 {
    font-size: var(--font-size-xl);
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-100);
}

.summary-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--gray-900);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--primary-color);
}

.summary-label {
    color: var(--gray-600);
}

.summary-value {
    font-weight: 600;
    color: var(--gray-900);
}

.checkout-btn {
    width: 100%;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-lg);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.checkout-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left 0.5s ease;
}

.checkout-btn:hover .btn-shine {
    left: 100%;
}

/* Checkout Page Styles */
.checkout-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-2xl);
    align-items: start;
}

.checkout-form-container {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.checkout-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.form-header h2 {
    font-size: var(--font-size-2xl);
    color: var(--gray-900);
    font-weight: 600;
    margin: 0;
}

.form-progress {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 10px;
    background: var(--gray-100);
    color: var(--gray-500);
    transition: all 0.3s ease;
    min-width: 80px;
}

.progress-step.active {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.progress-step i {
    font-size: var(--font-size-lg);
}

.progress-step span {
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.form-section {
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: 15px;
    border: 1px solid var(--primary-color-rgba-10);
    transition: all 0.3s ease;
}

.form-section:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

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

.section-header h3 {
    font-size: var(--font-size-xl);
    color: var(--gray-900);
    font-weight: 600;
    margin: 0;
}

.section-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
    box-shadow: 0 4px 15px var(--primary-color-rgba-30);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-color-rgba-10);
    transform: translateY(-2px);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.payment-method {
    position: relative;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
}

.payment-method label:hover {
    border-color: var(--primary-color);
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-method input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: var(--primary-color-rgba-10);
    color: var(--primary-color);
    font-weight: 600;
}

.payment-method label i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-section {
    background: var(--primary-color);
    padding: var(--spacing-xl);
    border-radius: 15px;
    text-align: center;
    margin-top: var(--spacing-xl);
}

.submit-section h3 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xl);
}

.submit-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.submit-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: 50px;
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left 0.5s ease;
}

.submit-btn:hover .btn-shine {
    left: 100%;
}

.order-summary {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: var(--spacing-lg);
    border: 1px solid var(--primary-color-rgba-10);
}

.order-summary h3 {
    font-size: var(--font-size-xl);
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    text-align: center;
}

.summary-items {
    margin-bottom: var(--spacing-lg);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-100);
}

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

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

.item-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

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

.item-details h4 {
    font-size: var(--font-size-sm);
    color: var(--gray-900);
    margin: 0;
    font-weight: 500;
}

.item-details p {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    margin: 0;
}

.item-price {
    font-weight: 600;
    color: var(--gray-900);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-600);
    font-size: var(--font-size-xs);
}

.security-badge i {
    font-size: 1.5rem;
    color: var(--success);
}

.page-header h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.page-header p {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast);
}

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

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

/* Alerts */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.alert-success {
    background-color: #e8f5e8;
    color: var(--primary-color);
    border: 1px solid var(--success-color);
}

.alert-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
}

.alert-warning {
    background-color: #fff3e0;
    color: #ef6c00;
    border: 1px solid #ff9800;
}

.alert-info {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #2196f3;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--header-color);
    transform: translateY(-2px);
}

/* Responsive Design */
/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    /* Section Mobile Spacing */
    section {
        padding: var(--spacing-2xl) 0;
    }
    
    section:first-of-type {
        padding-top: var(--spacing-3xl);
    }
    
    section:last-of-type {
        padding-bottom: var(--spacing-3xl);
    }
    
    /* Header Mobile */
    .header {
        padding: var(--spacing-sm) 0;
        /* Header colors handled by dynamic CSS */
    }
    
    .nav-container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-logo {
        padding: var(--spacing-xs);
        background: var(--primary-color-rgba-05);
    }
    
    .nav-logo img {
        height: 50px;
        filter: drop-shadow(0 2px 6px var(--primary-color-rgba-20));
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* Navigation colors handled by dynamic CSS */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        z-index: 999999;
        gap: 20px;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 24px;
        font-weight: 700;
        padding: 20px 30px;
        width: 100%;
        max-width: 300px;
        text-align: center;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.2);
        margin: 10px 0;
        color: white;
        text-decoration: none;
        display: block;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-link:hover {
        background: var(--nav-mobile-hover-color, #ffd700) !important;
        color: white;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        padding: 15px;
        background: var(--primary-color);
        border: 2px solid var(--primary-color);
        border-radius: 8px;
        cursor: pointer;
        z-index: 999999;
        position: relative;
    }
    
    .nav-toggle:hover {
        background: var(--header-color);
    }
    
    .nav-toggle span {
        width: 30px;
        height: 3px;
        background: white;
        border-radius: 3px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Ensure nav-toggle is always visible on mobile */
    .nav-toggle {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid white;
        color: white;
        font-size: 24px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 999999;
    }
    
    .nav-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    
    .cart-link {
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: 12px;
        background: var(--primary-color-rgba-10);
        border: 1px solid var(--primary-color-rgba-20);
        backdrop-filter: blur(10px);
        font-size: var(--font-size-lg);
        transition: all 0.3s ease;
    }
    
    .cart-link:hover {
        background: var(--primary-color-rgba-20);
        transform: scale(1.02);
        box-shadow: 0 3px 10px var(--primary-color-rgba-20);
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 70vh;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
        padding: 0 var(--spacing-md);
    }
    
    .hero-badge {
        font-size: var(--font-size-sm);
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: var(--font-size-3xl);
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-lg);
        color: var(--accent-orange) !important;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .feature-item {
        min-width: 150px;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
    
    .feature-title {
        font-size: var(--font-size-xs);
    }
    
    .feature-desc {
        font-size: 10px;
    }
    
    .hero-stats {
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .stat-item {
        padding: var(--spacing-md);
        min-width: 100px;
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .stat-label {
        font-size: var(--font-size-xs);
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: var(--spacing-2xl) 0;
        background: var(--primary-color);
    }
    
    .page-header-content {
        padding: 0 var(--spacing-md);
    }
    
    .page-badge {
        font-size: var(--font-size-sm);
        padding: var(--spacing-sm) var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .page-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-md);
    }
    
    .page-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xl);
        color: var(--accent-orange) !important;
    }
    
    .page-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-top: var(--spacing-xl);
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: var(--spacing-md);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .stat-label {
        font-size: var(--font-size-sm);
    }
    
    .page-stats {
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .stat-item {
        padding: var(--spacing-md);
        min-width: 100px;
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .stat-label {
        font-size: var(--font-size-xs);
    }
    
    /* B2B Hero Mobile */
    .hero-question {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .hero-question h2 {
        font-size: var(--font-size-2xl);
    }
    
    .question-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: var(--font-size-base);
        color: var(--accent-orange) !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .benefit-card {
        padding: var(--spacing-lg);
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .benefit-card h3 {
        font-size: var(--font-size-lg);
    }
    
    .b2b-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Cart Mobile */
    .cart-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .cart-summary {
        position: static;
        order: -1;
    }
    
    .empty-cart {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .empty-cart-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .empty-cart h2 {
        font-size: var(--font-size-2xl);
    }
    
    .empty-cart p {
        font-size: var(--font-size-base);
    }
    
    .empty-cart-features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .empty-cart-features .feature-item {
        padding: var(--spacing-sm);
    }
    
    .empty-cart-features .feature-item i {
        font-size: 1.25rem;
    }
    
    .empty-cart-features .feature-item span {
        font-size: var(--font-size-xs);
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .item-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: var(--spacing-md);
    }
    
    .item-details {
        margin-right: 0;
        margin-bottom: var(--spacing-md);
        width: 100%;
    }
    
    .item-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .quantity-controls {
        flex: 1;
        max-width: 150px;
    }
    
    /* Checkout Mobile */
    .checkout-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .order-summary {
        position: static;
        order: -1;
    }
    
    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .form-progress {
        width: 100%;
        justify-content: space-between;
    }
    
    .progress-step {
        min-width: 60px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .progress-step span {
        font-size: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .form-section {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .section-icon {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-base);
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .payment-method label {
        padding: var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    .submit-section {
        padding: var(--spacing-lg);
    }
    
    .submit-btn {
        width: 100%;
        min-width: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
    }
    
    .product-showcase {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .tracker-device {
        padding: var(--spacing-lg);
    }
    
    .tracker-screen {
        padding: var(--spacing-md);
    }
    
    .tracker-label {
        font-size: var(--font-size-base);
    }
    
    .feature-badge {
        font-size: var(--font-size-xs);
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .tracker-features {
        gap: var(--spacing-sm);
    }
    
    /* Product Grid Mobile */
    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin: var(--spacing-lg) 0;
    }
    
    .product-card {
        margin: 0 var(--spacing-sm);
    }
    
    .product-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn-add-to-cart,
    .btn-view {
        width: 100%;
        padding: var(--spacing-md);
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .footer-section {
        margin-bottom: var(--spacing-lg);
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-xl);
    }
    
    /* Forms Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: var(--spacing-md);
        font-size: var(--font-size-base);
    }
    
    .btn {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
    }
    
    /* CTA Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Cart Mobile */
    .nav-actions {
        position: fixed;
        top: 20px;
        right: 70px;
        z-index: 10001;
    }
    
    .cart-link {
        background: var(--primary-color);
        color: white;
        padding: var(--spacing-sm);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 15px var(--primary-color-rgba-30);
        transition: all 0.3s ease;
    }
    
    .cart-link:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px var(--primary-color-rgba-40);
    }
    
    .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--accent-orange);
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: var(--font-size-xs);
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Extra Small Mobile Section Spacing */
    section {
        padding: var(--spacing-xl) 0;
    }
    
    section:first-of-type {
        padding-top: var(--spacing-2xl);
    }
    
    section:last-of-type {
        padding-bottom: var(--spacing-2xl);
    }
    
    /* Extra Small Mobile */
    .hero {
        padding: var(--spacing-lg) 0;
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-md);
        color: var(--accent-orange) !important;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .feature-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .product-grid {
        margin: var(--spacing-md) 0;
    }
    
    .product-card {
        margin: 0;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: var(--spacing-md);
    }
    
    .product-title {
        font-size: var(--font-size-lg);
    }
    
    .product-description {
        font-size: var(--font-size-sm);
    }
    
    .price-current {
        font-size: var(--font-size-xl);
    }
    
    .price-original {
        font-size: var(--font-size-base);
    }
    
    /* Navigation Mobile Extra Small */
    .nav-menu {
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
    }
    
    .nav-link {
        font-size: var(--font-size-lg);
        padding: var(--spacing-sm) var(--spacing-lg);
        color: var(--accent-orange);
        text-align: center;
        width: 100%;
        max-width: 200px;
    }
    
    .nav-toggle {
        padding: var(--spacing-sm);
        gap: 4px;
    }
    
    .nav-toggle span {
        width: 24px;
        height: 2px;
    }
    
    /* Footer Mobile Extra Small */
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
        /* Footer colors handled by dynamic CSS */
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: var(--font-size-lg);
    }
    
    .footer-section p {
        font-size: var(--font-size-sm);
    }
    
    .footer-section ul li a {
        font-size: var(--font-size-sm);
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-top: var(--spacing-lg);
    text-align: center;
}

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

/* Smooth page transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .nav-toggle,
    .loading-overlay {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--primary-color-rgba-10);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image-placeholder {
    font-size: 3rem;
    color: var(--gray-400);
}

/* Product Detail Page Styling */
.product-detail {
    padding: var(--spacing-3xl) 0;
    background: #f8f9fa;
}

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

.product-images {
    position: sticky;
    top: var(--spacing-xl);
}

.main-image {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.gallery-thumbnails {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.gallery-thumb:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-info {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
}

.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-md);
}

.product-header h1 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.2;
}

.product-badge {
    background: var(--accent-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    white-space: nowrap;
}

.product-price {
    margin-bottom: var(--spacing-lg);
}

.price-current {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.price-original {
    font-size: var(--font-size-lg);
    color: var(--gray-500);
    text-decoration: line-through;
    margin-right: var(--spacing-sm);
}

.price-sale {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--error);
}

.product-description {
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
    color: var(--gray-700);
    line-height: 1.6;
}

.product-details {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.detail-item strong {
    color: var(--gray-700);
    font-weight: 600;
}

.stock-status {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.stock-status.in-stock {
    background: #d4edda;
    color: #155724;
}

.stock-status.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.add-to-cart-section {
    border-top: 1px solid var(--gray-200);
    padding-top: var(--spacing-lg);
}

.quantity-selector {
    margin-bottom: var(--spacing-lg);
}

.quantity-selector label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--gray-700);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    max-width: 150px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-300);
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-700);
    transition: all var(--transition-normal);
}

.quantity-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
}

.add-to-cart-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.add-to-cart-actions .btn {
    flex: 1;
    min-width: 200px;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.product-features {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
}

.product-features h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--gray-700);
}

.product-features li i {
    color: var(--success);
    font-size: var(--font-size-sm);
}

/* Product Description Tabs */
.product-description-full {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.description-tabs {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
    border-bottom: 2px solid var(--gray-200);
}

.tab-btn {
    background: none;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-normal);
}

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

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

.tab-content {
    min-height: 300px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-panel h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
}

.description-content {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--gray-700);
}

.specifications-table {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.specifications-table td {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
}

.specifications-table td:first-child {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-800);
    width: 40%;
}

.specifications-table tr:last-child td {
    border-bottom: none;
}

.installation-content {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--gray-700);
}

.installation-content ul {
    margin: var(--spacing-lg) 0;
    padding-left: var(--spacing-lg);
}

.installation-content li {
    margin-bottom: var(--spacing-sm);
}

/* Related Products */
.related-products {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.related-products h2 {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-2xl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.product-card .product-image {
    height: 200px;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-content {
    padding: var(--spacing-lg);
}

.product-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.product-card p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.product-card .product-price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.product-card .btn {
    width: 100%;
    justify-content: center;
}

/* Out of Stock Styling */
.product-card.out-of-stock {
    opacity: 0.7;
    filter: grayscale(0.3);
}

.product-card.out-of-stock:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.product-card.out-of-stock .product-image img {
    filter: grayscale(0.5);
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.out-of-stock-badge {
    background: var(--error);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.product-stock {
    margin-bottom: var(--spacing-md);
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.stock-status.in-stock {
    color: var(--success);
    background: rgba(76, 175, 80, 0.1);
}

.stock-status.out-of-stock {
    color: var(--error);
    background: rgba(244, 67, 54, 0.1);
}

.stock-status i {
    font-size: var(--font-size-xs);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .product-images {
        position: static;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .product-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-header h1 {
        font-size: var(--font-size-2xl);
    }
    
    .add-to-cart-actions {
        flex-direction: column;
    }
    
    .add-to-cart-actions .btn {
        min-width: auto;
    }
    
    .description-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-info {
    padding: var(--spacing-lg);
}

.product-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.product-description {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.price-current {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
}

.price-original {
    font-size: var(--font-size-lg);
    color: var(--gray-500);
    text-decoration: line-through;
}

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

.btn-add-to-cart {
    flex: 1;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-color-rgba-40);
}

.btn-add-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-view {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10002;
    pointer-events: none;
}

.toast {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    margin-bottom: 10px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    animation: slideInRight 0.3s ease-out;
    border-left: 4px solid var(--info);
}

.toast-success {
    border-left-color: var(--success);
}

.toast-error {
    border-left-color: var(--error);
}

.toast-warning {
    border-left-color: var(--warning);
}

.toast-info {
    border-left-color: var(--info);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.fade-out {
    animation: slideOutRight 0.3s ease-in forwards;
}

/* Order Success Page */
.order-success-section {
    padding: 2rem 0;
}

.order-success-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.order-success-header {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.order-success-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.order-date {
    color: var(--text-secondary);
    font-size: 1rem;
}

.order-status {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    font-weight: 500;
}

.status-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.order-summary h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.order-items {
    margin-bottom: 2rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.placeholder-image {
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.item-details p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.order-totals {
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.total-row:not(.total-final) {
    color: var(--text-secondary);
}

.total-final {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.order-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.order-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Order Success */
@media (max-width: 768px) {
    .order-success-card {
        padding: 1.5rem;
    }
    
    .order-status {
        flex-direction: column;
        gap: 1rem;
    }
    
    .order-item {
        flex-direction: column;
        text-align: center;
    }
    
    .item-image {
        width: 80px;
        height: 80px;
    }
    
    .order-actions {
        flex-direction: column;
    }
}

/* Status Colors */
.text-success {
    color: var(--success-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

/* Force header color override - ensures dynamic colors work */
.header,
/* Header and navigation colors - handled by dynamic CSS */

/* FORCE nav-link hover color - MUST BE ORANGE */
.nav-link:hover,
.nav-link.active,
/* Navigation hover colors - handled by dynamic CSS */

/* Mobile navigation hover colors - handled by dynamic CSS */
