/* EcoTendance - Styles complets avec design WordPress-like */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header moderne */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-text h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #059669, #0891b2, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-text p {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

/* Navigation avec mega menus */
.nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-dropdown {
    position: relative;
}

.nav-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #374151;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
}

.nav-btn.active {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.deals-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: white !important;
    animation: pulse 2s infinite;
}

.deals-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b) !important;
    transform: translateY(-3px);
}

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

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

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

/* Mega menu moderne */
.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    min-width: 700px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.mega-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 2rem;
}

.mega-menu-section {
    padding: 0 1.5rem;
}

.mega-menu-section:not(:last-child) {
    border-right: 1px solid #f3f4f6;
}

.mega-menu-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #059669;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-section a {
    display: block;
    padding: 0.75rem 1rem;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.mega-menu-section a:hover {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    color: #059669;
    transform: translateX(8px);
    padding-left: 1.5rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1);
}

.mega-menu-section p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.25rem 0;
    padding-left: 1rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.action-btn {
    position: relative;
    background: none;
    border: none;
    padding: 0.875rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #f3f4f6;
    color: #059669;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.admin-btn {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.admin-btn:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    min-width: 1.5rem;
    text-align: center;
    display: none;
    animation: bounceIn 0.5s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.badge.show {
    display: block;
}

/* Sections */
.section {
    display: none;
    min-height: calc(100vh - 80px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hero Slider moderne */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 0 0 40px 40px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 3rem;
    z-index: 2;
    position: relative;
}

.hero-slide h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slide p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.hero-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid rgba(255,255,255,0.2);
}

.hero-dot.active {
    background: white;
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 20px rgba(255,255,255,0.6);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #0891b2, #7c3aed);
}

.section-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Services Grid moderne */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.services-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 24px;
    background: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #0891b2, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #059669;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #059669;
}

.service-card p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    margin-bottom: 1.5rem;
}

.service-card:hover p {
    color: #374151;
}

.service-features {
    font-size: 0.95rem;
    color: #059669;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.service-card:hover .service-features {
    opacity: 1;
    transform: translateY(0);
}

/* Featured Products */
.featured-products {
    padding: 5rem 0;
    background: #f9fafb;
}

.featured-products h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #059669, #0891b2);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-us::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Stats modernes */
.stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.stat-label {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Newsletter moderne */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.newsletter p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #1f2937;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

/* Footer moderne */
.footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #0891b2, #7c3aed);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #10b981;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    font-size: 1.75rem;
    transition: transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
}

.social-links a:hover {
    transform: scale(1.2) rotate(5deg);
    background: rgba(255,255,255,0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-weight: 500;
}

/* Filters Bar moderne */
.filters-bar {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filters-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.filters-left {
    display: flex;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
}

.filter-btn:hover {
    border-color: #059669;
    color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border-color: #059669;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.filters-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filters-right input,
.filters-right select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filters-right input:focus,
.filters-right select:focus {
    border-color: #059669;
    outline: none;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.products-count {
    margin-bottom: 2rem;
    color: #6b7280;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Products Grid moderne */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.8s ease;
}

/* Product Card moderne */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #059669;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
}

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

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

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.badge {
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: bounceIn 0.5s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.badge-custom {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: white;
}

.badge-sale {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.badge-vintage {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.badge-condition {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    color: #6b7280;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wishlist-btn:hover {
    transform: scale(1.2);
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.wishlist-btn.active {
    color: #dc2626;
    background: white;
    animation: heartBeat 0.6s ease;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

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

.overlay-btn {
    background: white;
    color: #1f2937;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(20px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-card:hover .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:hover {
    background: #f3f4f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.product-info {
    padding: 2rem;
}

.product-brand {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-original {
    font-size: 1.1rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.product-stock {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
}

.stock-high { 
    background: #dcfce7; 
    color: #166534; 
}
.stock-medium { 
    background: #fef3c7; 
    color: #92400e; 
}
.stock-low { 
    background: #fecaca; 
    color: #991b1b; 
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

.product-actions button {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.btn-primary:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: #f8fafc;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: #059669;
    color: #059669;
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Vinted Style moderne */
.vinted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.vinted-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.vinted-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #06b6d4;
}

.vinted-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.vinted-card:hover .vinted-image img {
    transform: scale(1.08);
}

.vinted-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vinted-info {
    padding: 1.5rem;
}

.vinted-seller {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 12px;
}

.vinted-seller img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #06b6d4;
}

.seller-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
}

.seller-rating {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.vinted-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.vinted-original-price {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 1rem;
    font-weight: 500;
}

.vinted-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.4;
}

.vinted-details {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.vinted-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.vinted-btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
}

/* Vinted Header */
.vinted-header {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vinted-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.vinted-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.vinted-search {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 2;
}

.vinted-search input {
    width: 100%;
    padding: 1.25rem 4rem 1.25rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    outline: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    font-weight: 500;
}

.vinted-search button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.vinted-filters {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-chip {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.filter-chip:hover {
    border-color: #06b6d4;
    color: #06b6d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15);
}

.filter-chip.active {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    border-color: #06b6d4;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

/* Customization Mistertee style moderne */
.mistertee-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 3rem;
    min-height: 80vh;
    padding: 3rem 0;
}

.product-views {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.view-selector {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    background: #f8fafc;
    padding: 0.5rem;
    border-radius: 16px;
}

.view-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
}

.view-btn:hover {
    background: white;
    color: #7c3aed;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.view-btn.active {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.mockup-container {
    position: relative;
    text-align: center;
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
}

.mockup-container img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

#customization-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px dashed #7c3aed;
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
    cursor: crosshair;
    backdrop-filter: blur(5px);
}

.customization-tools {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    height: fit-content;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.tool-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.tool-section:last-child {
    border-bottom: none;
}

.tool-section h4 {
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tool-section input,
.tool-section select,
.tool-section textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.tool-section input:focus,
.tool-section select:focus,
.tool-section textarea:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    outline: none;
}

.color-palette {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.color-option {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    border-color: #7c3aed;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.color-option.selected {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    transform: scale(1.1);
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.size-grid label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    background: white;
}

.size-grid label:hover {
    border-color: #7c3aed;
    background: #faf5ff;
    transform: translateY(-2px);
}

.size-grid label input:checked + span {
    color: #7c3aed;
}

.design-templates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.template-card {
    text-align: center;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.template-card:hover {
    border-color: #7c3aed;
    background: #faf5ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.template-card.selected {
    border-color: #7c3aed;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: white;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.template-card div:first-child {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.template-card div:last-child {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-breakdown {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #059669;
}

.price-breakdown div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.price-breakdown div:last-child {
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 2px solid #059669;
    font-weight: 800;
    font-size: 1.25rem;
    color: #059669;
}

.tool-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* ADMIN STYLES WordPress-like */
.admin-container {
    min-height: 100vh;
    background: #f1f5f9;
}

.admin-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.admin-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-logo h1 {
    margin: 0;
    background: linear-gradient(135deg, #059669, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    font-weight: 800;
}

.admin-menu {
    display: flex;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 0.5rem;
    border-radius: 16px;
}

.admin-tab {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    color: #6b7280;
}

.admin-tab:hover {
    background: white;
    color: #059669;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.admin-tab.active {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.admin-actions {
    display: flex;
    gap: 1rem;
}

.admin-content {
    display: none;
    padding: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-content.active {
    display: block;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.content-header h2 {
    margin: 0;
    color: #1e293b;
    font-size: 2.25rem;
    font-weight: 800;
}

/* Dashboard moderne */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 6px solid #059669;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.stat-card h3 {
    margin: 0 0 1.5rem 0;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recent-activity {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.activity-list {
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: #f8fafc;
    border-radius: 12px;
}

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

.activity-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.activity-icon.success { 
    background: linear-gradient(135deg, #dcfce7, #bbf7d0); 
    color: #166534;
}
.activity-icon.warning { 
    background: linear-gradient(135deg, #fef3c7, #fde68a); 
    color: #92400e;
}
.activity-icon.info { 
    background: linear-gradient(135deg, #dbeafe, #bfdbfe); 
    color: #1e40af;
}

/* Admin Products Grid */
.admin-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.admin-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.admin-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #059669;
}

.admin-product-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.admin-product-info {
    padding: 2rem;
}

.admin-product-name {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-size: 1.1rem;
}

.admin-product-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.admin-product-stock {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.stock-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stock-indicator.high { background: linear-gradient(135deg, #10b981, #059669); }
.stock-indicator.medium { background: linear-gradient(135deg, #f59e0b, #d97706); }
.stock-indicator.low { background: linear-gradient(135deg, #ef4444, #dc2626); }

.admin-product-actions {
    display: flex;
    gap: 0.75rem;
}

/* Cart Sidebar moderne */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.cart-header h3 {
    margin: 0;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #374151;
    background: rgba(107, 114, 128, 0.1);
    transform: scale(1.1);
}

.cart-content {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: #6b7280;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    align-items: flex-start;
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    background: #f3f4f6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cart-item-details {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.cart-item-price {
    font-weight: 800;
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.quantity-btn:hover {
    background: #f9fafb;
    border-color: #059669;
    color: #059669;
    transform: scale(1.1);
}

.quantity-display {
    width: 3rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1f2937;
}

.remove-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    margin-left: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.remove-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: scale(1.05);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

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

.cart-total {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-weight: 800;
}

.cart-footer button {
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
}

/* Wishlist Sidebar moderne */
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.wishlist-sidebar.active {
    right: 0;
}

.wishlist-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
}

.wishlist-header h3 {
    margin: 0;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.wishlist-content {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.wishlist-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    align-items: flex-start;
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.wishlist-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.wishlist-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    background: #f3f4f6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-name {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.wishlist-item-price {
    font-weight: 800;
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* Modal moderne */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background: white;
    border-radius: 24px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.modal-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 800;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #374151;
    background: rgba(107, 114, 128, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Settings moderne */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.setting-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.setting-section h3 {
    margin: 0 0 2rem 0;
    color: #1e293b;
    border-bottom: 3px solid #059669;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
}

/* Overlay moderne */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    display: none;
    backdrop-filter: blur(5px);
}

.overlay.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Search Overlay moderne */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 150;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.search-container {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.search-container input {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1.25rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-weight: 500;
}

.search-container input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.search-container button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.search-container button:hover {
    color: #374151;
    background: rgba(107, 114, 128, 0.1);
}

.search-results {
    margin-top: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

/* Notification moderne */
.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.3);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    max-width: 400px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
}

.notification.success {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.3);
}

.notification.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.notification.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

/* Mobile Menu moderne */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 200;
    backdrop-filter: blur(20px);
}

.mobile-menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem;
}

.mobile-menu .nav-btn {
    background: white;
    color: #374151;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    font-size: 1.25rem;
    min-width: 250px;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    animation: slideInUp 0.4s ease forwards;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.mobile-menu .nav-btn:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu .nav-btn:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu .nav-btn:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu .nav-btn:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu .nav-btn:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu .nav-btn:nth-child(6) { animation-delay: 0.6s; }

.mobile-menu-toggle {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes bounceIn {
    0% { 
        opacity: 0;
        transform: scale(0.3); 
    }
    50% { 
        opacity: 1;
        transform: scale(1.05); 
    }
    70% { transform: scale(0.9); }
    100% { 
        opacity: 1;
        transform: scale(1); 
    }
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .cart-sidebar,
    .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .mistertee-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .customization-tools {
        order: -1;
    }
    
    .mega-menu {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .nav-dropdown-content {
        min-width: 300px;
        left: -100px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .vinted-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-slide h2 {
        font-size: 2.5rem;
    }
    
    .hero-slide p {
        font-size: 1.1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .admin-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .admin-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .admin-content {
        padding: 1.5rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-products-grid {
        grid-template-columns: 1fr;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.block { display: block !important; }
.flex { display: flex !important; }
.grid { display: grid !important; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #047857, #065f46);
}