/*
Theme Name: Fashion Store
Theme URI: https://fashionstore.ru
Author: Fashion Store Team
Author URI: https://fashionstore.ru
Description: Современная тема для интернет-магазина одежды с поддержкой WooCommerce. Адаптивный дизайн, каталог товаров, корзина, фильтры.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fashion-store
Domain Path: /languages
Tags: e-commerce, woocommerce, fashion, responsive, custom-menu, featured-images

Fashion Store WordPress Theme, Copyright 2024
*/

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. Reset & Base Styles
   2. Typography
   3. Header & Navigation
   4. Hero Section
   5. Categories
   6. Products Grid
   7. Product Cards
   8. Cart & Checkout
   9. Footer
   10. Forms & Buttons
   11. Utilities
   12. Responsive
   ============================================ */

/* ============================================
   1. RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* ============================================
   3. HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.site-logo span {
    font-weight: 300;
}

.site-header.scrolled .site-logo {
    color: #1a1a1a;
}

.site-logo {
    color: #ffffff;
}

/* Navigation */
.main-navigation {
    display: none;
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.site-header.scrolled .main-navigation a {
    color: #4a4a4a;
}

.main-navigation a:hover {
    color: #ffffff;
}

.site-header.scrolled .main-navigation a:hover {
    color: #1a1a1a;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #ffffff;
}

.site-header.scrolled .header-btn {
    color: #4a4a4a;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .header-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #e11d48;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.site-header.scrolled .menu-toggle {
    color: #1a1a1a;
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 1.5rem;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
    background: linear-gradient(to right, #fb7185, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.hero-stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* ============================================
   5. CATEGORIES
   ============================================ */
.categories-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-description {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
}

.category-content {
    position: absolute;
    inset: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.category-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.category-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateY(0);
}

.category-arrow svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

/* ============================================
   6. PRODUCTS GRID
   ============================================ */
.products-section {
    padding: 5rem 0;
    background: #ffffff;
}

.products-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-filter {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #4a4a4a;
    border: 1px solid #e5e7eb;
}

.category-filter:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

.category-filter.active {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.category-filter .count {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

.sort-select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: #ffffff;
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

/* ============================================
   7. PRODUCT CARDS
   ============================================ */
.product-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f3f4f6;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: #10b981;
    color: #ffffff;
}

.badge-sale {
    background: #e11d48;
    color: #ffffff;
}

.wishlist-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: #ffffff;
}

.wishlist-btn svg {
    width: 18px;
    height: 18px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.wishlist-btn:hover svg,
.wishlist-btn.active svg {
    color: #e11d48;
    fill: #e11d48;
}

.quick-add {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .quick-add {
    opacity: 1;
}

.btn-add-cart {
    width: 100%;
    padding: 0.75rem;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: #f3f4f6;
}

.btn-add-cart svg {
    width: 18px;
    height: 18px;
}

.product-info {
    padding: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.product-rating svg {
    width: 14px;
    height: 14px;
    color: #fbbf24;
    fill: #fbbf24;
}

.rating-value {
    font-size: 0.75rem;
    color: #6b7280;
    margin-left: 0.25rem;
}

.reviews-count {
    font-size: 0.75rem;
    color: #9ca3af;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card:hover .product-title {
    color: #4f46e5;
}

.product-colors {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.color-option {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option:hover,
.color-option.active {
    border-color: #1a1a1a;
    transform: scale(1.1);
}

.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.size-option {
    min-width: 28px;
    height: 28px;
    padding: 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background: #ffffff;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: #9ca3af;
}

.size-option.active {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.original-price {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
}

/* ============================================
   8. CART & CHECKOUT
   ============================================ */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cart-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-title svg {
    width: 24px;
    height: 24px;
}

.cart-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.cart-close:hover {
    background: #f3f4f6;
}

.cart-items {
    padding: 1rem;
    overflow-y: auto;
    max-height: calc(100vh - 300px);
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 100px;
    background: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.cart-item-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    border-color: #9ca3af;
}

.qty-btn svg {
    width: 14px;
    height: 14px;
}

.qty-value {
    width: 32px;
    text-align: center;
    font-weight: 600;
}

.cart-item-price {
    font-weight: 700;
}

.remove-item {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #e11d48;
}

.remove-item svg {
    width: 18px;
    height: 18px;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.cart-empty-icon {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cart-empty-icon svg {
    width: 40px;
    height: 40px;
    color: #9ca3af;
}

.cart-empty h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cart-empty p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.cart-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.cart-summary {
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.summary-row span:first-child {
    color: #6b7280;
}

.summary-row.free {
    color: #10b981;
    font-weight: 500;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 0.75rem;
}

.summary-total span:first-child {
    font-size: 1.125rem;
    font-weight: 700;
}

.summary-total .total-price {
    font-size: 1.5rem;
    font-weight: 800;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    transition: background 0.3s ease;
}

.btn-checkout:hover {
    background: #374151;
}

.btn-continue {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: #4a4a4a;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* ============================================
   9. FOOTER
   ============================================ */
.site-footer {
    background: #0f0f0f;
    color: #d1d5db;
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    font-weight: 300;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: #6b7280;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #374151;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    font-size: 0.875rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.payment-list {
    display: flex;
    gap: 0.5rem;
}

.payment-item {
    padding: 0.25rem 0.5rem;
    background: #1f2937;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: #6b7280;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* ============================================
   10. FORMS & BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #374151;
}

.btn-white {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-white:hover {
    background: #f3f4f6;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #ec4899);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #ffffff;
    color: #4f46e5;
    font-weight: 600;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f3f4f6;
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* ============================================
   11. UTILITIES
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #111827;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #4b5563;
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.feature-icon.blue { background: #3b82f6; }
.feature-icon.emerald { background: #10b981; }
.feature-icon.amber { background: #f59e0b; }
.feature-icon.rose { background: #e11d48; }
.feature-icon.purple { background: #8b5cf6; }
.feature-icon.indigo { background: #6366f1; }

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* ============================================
   12. RESPONSIVE
   ============================================ */
@media (min-width: 640px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .main-navigation {
        display: block;
    }
    
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .category-card:first-child {
        grid-column: span 1;
    }
    
    .footer-main {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .header-container {
        height: 100px;
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* WooCommerce Integration */
.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .woocommerce .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .woocommerce .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .woocommerce .products {
        grid-template-columns: repeat(4, 1fr);
    }
}

.woocommerce .product {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.woocommerce .product img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.woocommerce .product .woocommerce-loop-product__title {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.woocommerce .product .price {
    padding: 0 1rem 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.woocommerce .product .button {
    margin: 0 1rem 1rem;
    width: calc(100% - 2rem);
    padding: 0.75rem;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    text-align: center;
    display: block;
}

.woocommerce .product .button:hover {
    background: #374151;
}
