/* ===== VARIABILE - PALETĂ MODERNĂ ===== */
:root {
    /* Culori principale - Tech Modern */
    --primary: #6366F1;        /* mov modern */
    --primary-dark: #4F52E0;
    --primary-light: #8183FF;
    --secondary: #22C55E;       /* accent verde */
    --accent: #F59E0B;          /* accent portocaliu */
    
    /* Fundaluri și text */
    --bg-main: #F8FAFC;         /* fundal principal deschis */
    --bg-card: #FFFFFF;          /* fundal carduri */
    --text-dark: #0F172A;        /* text principal */
    --text-light: #64748B;       /* text secundar */
    --text-muted: #94A3B8;       /* text atenuat */
    
    /* Utilitare */
    --success: #22C55E;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Umbre și efecte */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --shadow-hover: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
    
    /* Spațiere */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.5rem;    /* 24px */
    --space-lg: 2rem;      /* 32px */
    --space-xl: 3rem;      /* 48px */
    --space-2xl: 4rem;     /* 64px */
    
    /* Layout */
    --container-width: 1280px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-full: 9999px;
    
    /* Font */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.2s ease;
}

/* ===== RESET MODERN ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.5;
    background: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CONTAINER CU SPAȚIU ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== SECȚIUNI CU SPAȚIU MARE ===== */
section {
    padding: var(--space-2xl) 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: calc(var(--space-sm) * -1) auto var(--space-xl);
}

/* ===== HEADER AERISIT ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--space-sm) 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.logo img {
    display: block;
    height: 40px;
    width: auto;
}

/* Navigație */
.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: var(--border-radius-full);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
}

/* Header acțiuni */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-link {
    position: relative;
    color: var(--text-dark);
    font-size: 1.25rem;
    transition: var(--transition);
}

.cart-link:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

/* ===== HERO SECTION MODERN ===== */
.hero {
    background: linear-gradient(135deg, #EEF2FF 0%, #FFFFFF 100%);
    padding: var(--space-2xl) 0 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    align-items: center;
    gap: var(--space-xs);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    line-height: 1.6;
}

/* Butoane moderne */
.hero-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Trust badges */
.trust-badges {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-light);
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.125rem;
}

/* Hero image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== BENEFITS BAR ===== */
.benefits {
    background: white;
    padding: var(--space-2xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.benefit-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== BEST SELLERS ===== */
.best-sellers {
    background: var(--bg-main);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    z-index: 2;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-hot { background: #EF4444; color: white; }
.badge-sale { background: var(--secondary); color: white; }
.badge-new { background: var(--primary); color: white; }

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-wishlist {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(5px);
    box-shadow: var(--shadow-md);
}

.product-card:hover .product-wishlist {
    opacity: 1;
    transform: translateY(0);
}

.product-wishlist:hover {
    background: var(--primary);
    color: white;
}

.product-content {
    padding: var(--space-md);
}

.product-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
    line-height: 1.4;
}

.product-rating {
    color: #F59E0B;
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: 2px;
}

.product-rating span {
    color: var(--text-light);
    margin-left: var(--space-xs);
}

.product-description {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-add-to-cart {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.btn-add-to-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-footer {
    text-align: center;
}

/* ===== WHY US SECTION ===== */
.why-us {
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.features-list {
    margin: var(--space-xl) 0;
}

.feature-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    align-items: flex-start;
}

.feature-check {
    flex-shrink: 0;
}

.feature-check i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.why-us-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

/* ===== VIDEO SECTION ===== */
.video-demo {
    background: var(--bg-main);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-content {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.video-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.testimonial-card {
    background: var(--bg-main);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.testimonial-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.testimonial-header p {
    font-size: 0.75rem;
    color: var(--text-light);
}

.testimonial-rating {
    color: #F59E0B;
    margin-bottom: var(--space-sm);
    font-size: 0.75rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

/* ===== CATEGORIES ===== */
.categories {
    background: var(--bg-main);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.category-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
    opacity: 0.8;
    transition: var(--transition);
}

.category-card:hover::before {
    opacity: 0.9;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    color: white;
    z-index: 2;
}

.category-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.category-content span {
    font-size: 0.8125rem;
    opacity: 0.9;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
}

/* ===== GUARANTEES ===== */
.guarantees {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.guarantees-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.guarantee-big {
    flex: 0 0 200px;
    text-align: center;
}

.guarantee-big i {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    opacity: 0.9;
}

.guarantee-big h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.guarantees-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.guarantee-item i {
    font-size: 1.75rem;
    opacity: 0.9;
}

.guarantee-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.guarantee-item p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===== FAQ ===== */
.faq {
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--bg-main);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.05);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 var(--space-lg);
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.faq-more {
    text-align: center;
    margin-top: var(--space-lg);
}

.faq-more a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.faq-more a:hover {
    gap: var(--space-sm);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--bg-main);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius);
    padding: var(--space-2xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.newsletter-badge {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.newsletter-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.newsletter-content p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    font-size: 1rem;
}

.newsletter-form .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.newsletter-form input {
    padding: 0.875rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9375rem;
    outline: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    width: 100%;
    margin-bottom: var(--space-sm);
    background: white;
    color: var(--primary);
    border: none;
}

.newsletter-form button:hover {
    background: var(--bg-main);
    transform: translateY(-2px);
}

.newsletter-form small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    text-align: center;
}

.newsletter-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: #0F172A;
    color: #94A3B8;
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    margin-bottom: var(--space-md);
    filter: brightness(0) invert(1);
}

.footer-col p {
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: var(--space-xs);
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--space-xs);
}

.footer-col ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(4px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
}

.contact-info i {
    width: 20px;
    color: var(--primary);
    font-size: 1rem;
}

.anpc-links {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.anpc-links img {
    max-width: 100px;
    height: auto;
    border-radius: 4px;
    opacity: 0.8;
    transition: var(--transition);
}

.anpc-links img:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.8125rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.payment-methods span {
    color: #64748B;
}

.payment-methods i {
    font-size: 1.5rem;
    color: #475569;
    transition: var(--transition);
}

.payment-methods i:hover {
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .benefits-grid,
    .products-grid,
    .testimonials-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantees-wrapper {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .newsletter-box {
        grid-template-columns: 1fr;
    }
    
    .newsletter-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--text-dark);
        transition: var(--transition);
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-md);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .benefits-grid,
    .products-grid,
    .testimonials-grid,
    .categories-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .newsletter-form .form-group {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
}

/* ===== ANIMAȚII ===== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lazy loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Notificări */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    z-index: 9999;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}