/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #1e293b;
    
    --border-color: #e2e8f0;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    
    /* 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;
    
    /* 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);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Container */
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
}

.splash-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.splash-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #48dbfb, #0abde3);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #54a0ff, #2e86de);
    top: 20%;
    right: 25%;
    animation-delay: 1s;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
    animation: logoSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: logoRotate 3s ease-in-out infinite;
}

.logo-circle i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.logo-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: var(--spacing-sm) 0 0 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.splash-loader {
    margin-bottom: var(--spacing-3xl);
    animation: loaderFadeIn 1.5s ease-in-out 0.5s both;
}

.loader-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
}

.ring-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.ring-segment:nth-child(1) {
    border-top-color: rgba(255, 255, 255, 0.8);
    animation-delay: 0s;
}

.ring-segment:nth-child(2) {
    border-right-color: rgba(255, 255, 255, 0.6);
    animation-delay: 0.2s;
}

.ring-segment:nth-child(3) {
    border-bottom-color: rgba(255, 255, 255, 0.4);
    animation-delay: 0.4s;
}

.ring-segment:nth-child(4) {
    border-left-color: rgba(255, 255, 255, 0.2);
    animation-delay: 0.6s;
}

.loader-text {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.loading-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.loading-dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

.splash-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    animation: featuresSlideUp 1.8s ease-in-out 1s both;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
    opacity: 0.9;
    background: rgba(16, 185, 129, 0.2);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: var(--transition);
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    animation: iconFloat 3s ease-in-out infinite;
    color: #10b981;
}

.feature-item:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
}

.feature-item:nth-child(1) i { animation-delay: 0s; }
.feature-item:nth-child(2) i { animation-delay: 1s; }
.feature-item:nth-child(3) i { animation-delay: 2s; }

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Splash Animations */
@keyframes logoSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(1.05); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes loaderFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes featuresSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.btn--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--secondary:hover {
    background: linear-gradient(135deg, #e69500 0%, #b8630b 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
}

.btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn--secondary:hover::before {
    left: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.contact .section-title,
.partners .section-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #374151 !important;
    background-clip: unset !important;
    color: #374151 !important;
    font-weight: 700 !important;
}

.contact .section-description,
.partners .section-description {
    font-weight: 600;
    color: #4b5563 !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.95) 0%, rgba(45, 55, 72, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) 0;
}

.header__left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header__center {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 var(--spacing-xl);
}

.header__right {
    display: flex;
    align-items: center;
}

.header__logo h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sidebar-toggle {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
    font-weight: 600;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm);
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
}

.search__input {
    border: none;
    background: none;
    padding: var(--spacing-sm) var(--spacing-md);
    width: 480px;
    outline: none;
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

.search__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.search__btn {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    cursor: pointer;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.search__btn:hover {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.header__icons {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: var(--spacing-md);
    color: white;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-icon:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes cartBounce {
    0% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-8px) scale(1.1); }
    50% { transform: translateY(0) scale(1.05); }
    75% { transform: translateY(-4px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}

.user-icon {
    cursor: pointer;
    padding: var(--spacing-md);
    color: white;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    font-weight: 600;
}

.user-icon:hover {
    color: white;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 1100;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.sidebar.open {
    left: 0;
}

.sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar__logo h3 {
    color: white;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sidebar__close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar__close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
    transform: rotate(90deg);
}

.sidebar__nav {
    padding: var(--spacing-xl) 0;
}

.sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar__item {
    margin-bottom: var(--spacing-xs);
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-xl);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    margin-right: var(--spacing-lg);
}

.sidebar__link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    color: #ffffff;
    transform: translateX(8px);
    border-left: 3px solid #ffffff;
}

.sidebar__link.active {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #667eea;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.sidebar__link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sidebar__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.sidebar__social h4 {
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    transition: all 0.8s ease;
}

.hero::before {
    display: none;
}

.hero__split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    padding: var(--spacing-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.hero__left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl);
}

.hero__left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl);
    overflow: hidden;
}

.hero__left img {
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.hero__right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: var(--spacing-xl);
    padding-bottom: 8vh;
}

.hero__product-info {
    max-width: 400px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.highlight {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #374151;
    background-clip: unset;
    color: #374151;
    text-shadow: none;
}

.product-description {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-weight: 400;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #f59e0b;
    font-size: 1rem;
}

.rating-text {
    color: #6b7280;
    font-size: 0.85rem;
    margin-left: var(--spacing-sm);
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.price-old {
    font-size: 1rem;
    color: #6b7280;
    text-decoration: line-through;
}

.discount-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: #f8fafc;
    border-radius: 8px;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.feature i {
    color: #374151;
    font-size: 1rem;
    width: 20px;
}

.feature span {
    color: #4b5563;
    font-weight: 500;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.product-actions .btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #4b5563, #374151);
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    flex: 1;
    max-width: 180px;
}

.product-actions .btn:hover {
    background: linear-gradient(135deg, #374151, #1f2937);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-actions .btn--primary,
.product-actions .btn--secondary {
    background: linear-gradient(135deg, #4b5563, #374151);
}

.product-actions .btn--primary:hover,
.product-actions .btn--secondary:hover {
    background: linear-gradient(135deg, #374151, #1f2937);
}

.btn--large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 600;
}


.hero__image-container {
    position: relative;
    display: flex;
    justify-content: center;
    height: 500px;
}

.hero__main-visual {
    position: relative;
    width: 100%;
    height: 100%;
}





/* Products Section */
.products {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-3xl);
}

.product-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    height: 160px;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--danger-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.product-card__content {
    padding: var(--spacing-md);
}

.product-category {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-card h3 {
    margin: var(--spacing-sm) 0;
    font-size: 1rem;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.product-rating i {
    color: var(--accent-color);
}

.product-rating span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.price-current {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card__actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-icon {
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    background: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.btn-icon:hover {
    border-color: #10b981;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.load-more {
    text-align: center;
    margin-top: var(--spacing-3xl);
}

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card__content {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.feature-card__text {
    flex: 1;
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-stats {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--bg-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.stat-number {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.feature-badge {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}


/* About Section */
.about {
    padding: var(--spacing-3xl) 0;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-3xl);
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__badge {
    position: absolute;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
}

.about__badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.newsletter__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.newsletter__text h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.newsletter__text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter__form {
    display: flex;
    gap: var(--spacing-md);
    min-width: 400px;
}

.newsletter__form input {
    flex: 1;
    padding: var(--spacing-md);
    border: none;
    border-radius: var(--border-radius);
    outline: none;
}

/* Partners Section */
.partners {
    padding: calc(var(--spacing-3xl) * 1.5) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.partners .container {
    position: relative;
    z-index: 2;
}

.partners-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}


.partners-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}


.partners-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.partners-stats .stat-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.partners-stats .stat-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(255, 255, 255, 0.9));
}


.partners-stats .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.partners-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.partners__showcase {
    margin-top: var(--spacing-3xl);
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.partner-logo {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.partner-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #36d1dc);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: all 0.4s ease;
}

.partner-logo:hover::before {
    opacity: 1;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.partner-logo img {
    max-width: 90px;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.3) opacity(0.8);
    z-index: 2;
    position: relative;
}

.partner-logo:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

.partner-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.partner-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(255, 255, 255, 0.95));
}

.partner-card.featured {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(255, 255, 255, 0.95));
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    position: relative;
}


.partner-card img {
    max-width: 80px;
    max-height: 50px;
    object-fit: contain;
    transition: var(--transition);
    z-index: 2;
    position: relative;
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.partner-card:hover .partner-overlay {
    opacity: 0.95;
}

.partner-overlay h4 {
    margin: 0 0 var(--spacing-xs) 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.partner-overlay p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

.partner-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--accent-color);
    color: white;
    padding: var(--spacing-xs);
    border-radius: var(--border-radius);
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 4;
}

.partners-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.feature-content h4 {
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: calc(var(--spacing-3xl) * 1.5) 0;
    background: var(--bg-secondary);
    position: relative;
}

.contact__content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact__form-card {
    background: #f8fafc;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}


.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-link:hover {
    text-decoration: none;
    color: inherit;
}
.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-icon--location {
    background: linear-gradient(135deg, #4b5563, #374151);
}

.contact-icon--phone {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.contact-icon--website {
    background: linear-gradient(135deg, #374151, #1f2937);
}

.contact-details h4 {
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}



.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-row input {
    align-self: flex-start;
    padding: var(--spacing-md) var(--spacing-xl);
    background: white;
    border: none;
    color: #3b82f6;
    font-weight: 600;
    letter-spacing: 0.5px;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.form-row input::placeholder {
    color: #3b82f6;
}





.contact__form .input-group {
    position: relative;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid #d1d5db;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 500;
    transition: var(--transition);
    background: white;
    color: #374151;
    resize: vertical;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: #6b7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
    background: #fefefe;
}

.contact__form textarea {
    min-height: 100px;
}

.contact__form .btn {
    align-self: flex-start;
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, #4b5563, #374151);
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact__form .btn:hover {
    background: linear-gradient(135deg, #374151, #1f2937);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.footer__logo h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer__section h4 {
    margin-bottom: var(--spacing-lg);
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer__section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer__section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links a[href*="telegram"]:hover {
    background: linear-gradient(135deg, #0088cc, #229ED9);
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.social-links a[href*="facebook"]:hover {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.social-links a[href*="youtube"]:hover {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: var(--spacing-md);
}

.payment-methods i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 70%;
    max-width: 400px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-large {
    max-width: 600px;
    width: 80%;
}

.modal-header {
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#cartModal .close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    line-height: 1;
}

#cartModal .close:hover {
    color: white;
    transform: scale(1.1);
}

.close {
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close:hover {
    color: var(--text-primary);
}

.cart-items {
    padding: var(--spacing-xl);
    max-height: 400px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.02);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin: 0 0 var(--spacing-xs);
    font-size: 0.875rem;
    color: white;
    font-weight: 600;
}

.cart-item-price {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.cart-footer {
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cart-actions {
    display: flex;
    gap: var(--spacing-md);
}

.cart-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero__content {
        text-align: left;
        padding-left: var(--spacing-lg);
        max-width: 100%;
    }
    
    .hero__stats {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 100px;
        padding: var(--spacing-md);
    }
    
    .about__content {
        grid-template-columns: 1fr;
    }
    
    .contact__split {
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-lg);
    }
    
    .contact__left,
    .contact__right {
        max-width: 100%;
    }
    
    .contact__info-card,
    .contact__form-card {
        padding: var(--spacing-xl);
        height: auto;
    }
    
    .contact__split {
        align-items: center;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .newsletter__content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter__form {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-3xl: 2rem;
    }
    
    .header__center {
        margin: 0 var(--spacing-md);
    }
    
    .search__input {
        width: 250px;
        font-size: 0.9rem;
    }
    
    .sidebar {
        width: 280px;
    }
    
    .hero__split {
        padding: var(--spacing-lg);
    }
    
    .hero__product-info {
        max-width: 100%;
        padding: var(--spacing-xl);
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .product-price-section {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        left: -280px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    @media (max-width: 900px) {
        .categories__grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .partners-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: center;
    }
    
    .partners-stats .stat-item {
        width: 200px;
    }
    
    .partners__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .partners-features {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
    }
    
    .login-modal {
        max-width: 95%;
        margin: 5% auto;
    }
    
    .login-container {
        padding: var(--spacing-xl);
    }
}

/* Login Modal Styles */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    line-height: 1;
}

.close:hover {
    color: white;
    transform: scale(1.1);
}

.login-modal {
    max-width: 480px;
    padding: 0;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    margin: 2% auto;
    transform: translateY(2vh);
}

.login-container {
    padding: 4px var(--spacing-3xl) var(--spacing-md);
}

.login-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.login-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.login-icon i {
    font-size: 2.2rem;
    color: white;
}

.login-header h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.login-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.login-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: var(--spacing-xl);
}

.tab-btn {
    flex: 1;
    padding: var(--spacing-md);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: white;
    color: #667eea;
}

.auth-form {
    display: none;
}


.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

#registerForm .form-group {
    margin-bottom: var(--spacing-md);
}

#registerForm .form-group label {
    font-size: 0.85rem;
    margin-bottom: var(--spacing-xs);
}

#registerForm .form-options {
    margin-bottom: var(--spacing-md);
}

#registerForm .btn--full {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
    font-size: 16px;
}

.input-group input {
    width: 100%;
    padding: 14px 50px 14px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 3;
    padding: 6px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    font-size: 0.9rem;
}

.checkbox {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.checkbox input {
    margin-right: var(--spacing-sm);
}

.forgot-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.forgot-link:hover {
    color: white;
    text-decoration: underline;
}

.btn--full {
    width: 100%;
    margin-bottom: var(--spacing-lg);
}

.divider {
    text-align: center;
    margin: var(--spacing-xl) 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.divider span {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0 var(--spacing-md);
    font-size: 0.9rem;
    border-radius: 20px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.google-btn:hover {
    background: rgba(219, 68, 55, 0.2);
    border-color: rgba(219, 68, 55, 0.4);
}

.facebook-btn:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.4);
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .categories__grid {
        grid-template-columns: 1fr;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    
    .splash-features {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .logo-text h1 {
        font-size: 2.5rem;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-circle i {
        font-size: 2.5rem;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-block { display: block; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.position-relative { position: relative; }
.position-absolute { position: absolute; }