/*
Theme Name: Digital Store
Theme URI: https://yourwebsite.com/digital-store
Author: Your Name
Author URI: https://yourwebsite.com
Description: A premium digital product marketplace theme with modern design, fully responsive, WooCommerce ready, and optimized for performance.
Version: 1.0.0
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digital-store
Domain Path: /languages
*/

/* ============================================================
   PRODUCTION LEVEL - PREMIUM DESIGN
   ============================================================ */

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. CSS Variables (Root)
2. Reset & Normalize
3. Typography System
4. Layout & Grid
5. Header Premium
6. Navigation Premium
7. Hero Section Premium
8. Product Cards Premium
9. Categories Premium
10. Testimonials Premium
11. Blog Premium
12. Newsletter Premium
13. Statistics Premium
14. Footer Premium
15. WooCommerce Premium
16. Dark Mode Premium
17. Animations
18. Utilities
19. Responsive (All Devices)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. CSS VARIABLES
--------------------------------------------------------------*/
:root {
    /* Primary Colors */
    --primary: #6C3CE1;
    --primary-dark: #5A2DCC;
    --primary-light: #F0EBFF;
    --primary-gradient: linear-gradient(135deg, #6C3CE1 0%, #4A1FA7 100%);
    
    /* Secondary Colors */
    --secondary: #FF6B35;
    --secondary-dark: #E55A2B;
    --secondary-light: #FFF0EB;
    
    /* Success Colors */
    --success: #00C853;
    --success-dark: #00A844;
    --warning: #FFC107;
    --danger: #FF1744;
    
    /* Neutral Colors */
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A6A;
    --text-muted: #8888AA;
    --text-white: #FFFFFF;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FC;
    --bg-dark: #0F0F1A;
    --bg-card: #FFFFFF;
    --bg-section: #F8F9FC;
    
    /* Border Colors */
    --border-light: #E8ECF1;
    --border-medium: #D0D5DD;
    --border-dark: #A0A5B5;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.18);
    --shadow-primary: 0 10px 40px rgba(108, 60, 225, 0.3);
    --shadow-secondary: 0 10px 40px rgba(255, 107, 53, 0.3);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    --font-size-4xl: 40px;
    --font-size-5xl: 52px;
    --font-size-6xl: 64px;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    --space-5xl: 100px;
    --space-6xl: 120px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 20px;
    
    /* Header */
    --header-height: 72px;
    --header-sticky-height: 64px;
    
    /* Z-Index */
    --z-header: 1000;
    --z-dropdown: 1100;
    --z-modal: 1200;
    --z-tooltip: 1300;
    --z-backdrop: 999;
}

/*--------------------------------------------------------------
2. RESET & NORMALIZE
--------------------------------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

/*--------------------------------------------------------------
3. TYPOGRAPHY SYSTEM
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    line-height: 1.8;
}

/*--------------------------------------------------------------
4. LAYOUT & GRID
--------------------------------------------------------------*/
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.container-fluid {
    max-width: 100%;
    padding: 0 var(--container-padding);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1 0 0%;
    padding: 0 15px;
}

.col-1 { flex: 0 0 8.333%; max-width: 8.333%; }
.col-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5 { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/*--------------------------------------------------------------
5. HEADER PREMIUM
--------------------------------------------------------------*/
.site-header {
    background: var(--bg-white);
    position: relative;
    z-index: var(--z-header);
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    animation: slideDown 0.4s ease;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Announcement Bar */
.announcement-bar {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 10px 0;
    text-align: center;
    font-size: var(--font-size-sm);
    position: relative;
    z-index: 1;
}

.announcement-bar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.announcement-bar a {
    color: var(--text-white);
    font-weight: 600;
    text-decoration: underline;
}

.announcement-bar a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.announcement-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition-base);
}

.announcement-cta:hover {
    background: rgba(255,255,255,0.25);
    color: var(--text-white);
}

/* Header Main */
.header-main {
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

/* Site Branding */
.site-branding {
    flex-shrink: 0;
}

.custom-logo {
    max-height: 40px;
    width: auto;
}

.site-title {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.site-title a {
    color: var(--text-primary);
}

.site-title a:hover {
    color: var(--primary);
}

.site-title i {
    color: var(--primary);
    margin-right: 4px;
}

.site-description {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 440px;
}

.header-search .search-form {
    display: flex;
    position: relative;
}

.header-search .search-field {
    width: 100%;
    padding: 10px 18px;
    padding-right: 48px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    background: var(--bg-light);
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
    color: var(--text-primary);
}

.header-search .search-field:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(108, 60, 225, 0.08);
}

.header-search .search-submit {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 16px;
    border: none;
    background: var(--primary-gradient);
    color: var(--text-white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    font-size: var(--font-size-sm);
}

.header-search .search-submit:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: var(--transition-base);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: none;
    cursor: pointer;
    position: relative;
}

.header-action:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

.header-action .count {
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-full);
    padding: 1px 8px;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

.header-action:hover .count {
    background: var(--text-white);
    color: var(--primary);
}

/* Cart Dropdown */
.cart-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--bg-white);
    min-width: 360px;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    z-index: var(--z-dropdown);
    border: 1px solid var(--border-light);
}

.cart-dropdown:hover .cart-dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: var(--bg-light);
    border: none;
    padding: 10px 14px;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.menu-toggle:hover {
    background: var(--primary);
    color: var(--text-white);
}

/*--------------------------------------------------------------
6. NAVIGATION PREMIUM
--------------------------------------------------------------*/
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    display: block;
    padding: 8px 18px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
    border-radius: var(--radius-sm);
    position: relative;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item a::after {
    width: 60%;
}

.main-navigation ul li a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.main-navigation ul li.current-menu-item a {
    color: var(--primary);
    background: var(--primary-light);
}

/* Dropdown */
.main-navigation ul ul {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    z-index: var(--z-dropdown);
    flex-direction: column;
    gap: 0;
}

.main-navigation ul ul::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: var(--bg-white);
    transform: rotate(45deg);
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.main-navigation ul ul li {
    width: 100%;
}

.main-navigation ul ul a {
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    font-weight: 400;
    border-radius: var(--radius-sm);
}

.main-navigation ul ul a::after {
    display: none;
}

.main-navigation ul ul a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 22px;
}

.main-navigation li:hover > ul {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* Mega Menu */
.main-navigation li.mega-menu {
    position: static !important;
}

.main-navigation li.mega-menu > ul {
    left: 0;
    right: 0;
    min-width: 100% !important;
    padding: 30px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.main-navigation li.mega-menu:hover > ul {
    display: grid;
}

.main-navigation li.mega-menu > ul > li {
    width: 100%;
}

.main-navigation li.mega-menu > ul > li > a {
    font-weight: 600;
    color: var(--text-primary);
    padding: 0 0 10px 0;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 10px;
}

.main-navigation li.mega-menu > ul > li > a::after {
    display: none;
}

/*--------------------------------------------------------------
7. HERO SECTION PREMIUM
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    padding: var(--space-6xl) 0;
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.85) 0%, rgba(15, 15, 26, 0.4) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
    color: var(--text-white);
    animation: fadeInUp 0.8s ease;
}

.hero-content .badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--space-md);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--text-white);
    line-height: 1.1;
}

.hero-content h1 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 36px;
    font-size: var(--font-size-lg);
}

.hero-buttons .btn-primary {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-primary);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline:hover {
    background: var(--text-white);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

.hero-stat .label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Image */
.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 45%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/*--------------------------------------------------------------
8. PRODUCT CARDS PREMIUM
--------------------------------------------------------------*/
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: var(--bg-light);
}

.product-thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-thumbnail img {
    transform: scale(1.08);
}

/* Badges */
.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.sale {
    background: var(--danger);
    color: var(--text-white);
}

.product-badge.new {
    background: var(--success);
    color: var(--text-white);
}

.product-badge.featured {
    background: var(--secondary);
    color: var(--text-white);
}

.product-badge.hot {
    background: var(--danger);
    color: var(--text-white);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(16px) scale(0.9);
    transition: var(--transition-base);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.product-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    color: var(--text-secondary);
    font-size: 15px;
}

.product-action:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

/* Product Info */
.product-info {
    padding: var(--space-lg) var(--space-lg) var(--space-xl);
}

.product-category {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-primary);
}

.product-title a:hover {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.product-rating .stars {
    color: #FBBF24;
    letter-spacing: 2px;
    font-size: 13px;
}

.product-rating .count {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.product-price .current {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.product-price .original {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-price .discount {
    font-size: 12px;
    color: var(--danger);
    font-weight: 600;
    background: rgba(255, 23, 68, 0.1);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.product-add-to-cart {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--font-size-sm);
}

.product-add-to-cart:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.product-add-to-cart.added {
    background: var(--success);
    border-color: var(--success);
    color: var(--text-white);
}

/*--------------------------------------------------------------
9. CATEGORIES PREMIUM
--------------------------------------------------------------*/
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.category-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-base);
    border-radius: var(--radius-lg);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
    border-color: var(--primary);
}

.category-card .icon {
    font-size: 44px;
    margin-bottom: var(--space-sm);
    display: block;
    transition: var(--transition-base);
}

.category-card:hover .icon {
    transform: scale(1.1);
}

.category-card .name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.category-card .count {
    font-size: var(--font-size-sm);
    opacity: 0.7;
}

/*--------------------------------------------------------------
10. TESTIMONIALS PREMIUM
--------------------------------------------------------------*/
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: var(--space-xl) var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-card .quote-icon {
    position: absolute;
    top: -10px;
    right: 24px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.08;
    font-family: Georgia, serif;
}

.testimonial-card .avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    overflow: hidden;
    border: 3px solid var(--primary);
}

.testimonial-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .rating {
    color: #FBBF24;
    margin-bottom: var(--space-sm);
    font-size: 14px;
    letter-spacing: 3px;
}

.testimonial-card .text {
    font-style: italic;
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: var(--font-size-sm);
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-card .role {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/*--------------------------------------------------------------
11. BLOG PREMIUM
--------------------------------------------------------------*/
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.blog-card .thumbnail {
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
    background: var(--bg-light);
}

.blog-card .thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .thumbnail img {
    transform: scale(1.05);
}

.blog-card .thumbnail .date {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.blog-card .content {
    padding: var(--space-lg) var(--space-lg) var(--space-xl);
}

.blog-card .content .meta {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.blog-card .content .meta span {
    margin-right: var(--space-md);
}

.blog-card .content .meta i {
    margin-right: 4px;
    color: var(--primary);
}

.blog-card .content .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.blog-card .content .title a {
    color: var(--text-primary);
}

.blog-card .content .title a:hover {
    color: var(--primary);
}

.blog-card .content .excerpt {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.blog-card .content .read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-sm);
}

.blog-card .content .read-more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/*--------------------------------------------------------------
12. NEWSLETTER PREMIUM
--------------------------------------------------------------*/
.newsletter-section {
    background: var(--bg-dark);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-section .section-title h2 {
    color: var(--text-white);
}

.newsletter-section .section-title p {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-size: var(--font-size-base);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    padding: 16px 36px;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    color: var(--text-white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/*--------------------------------------------------------------
13. STATISTICS PREMIUM
--------------------------------------------------------------*/
.statistics-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-light);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-2xl);
    text-align: center;
}

.stat-item .number {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.2;
}

.stat-item .number .suffix {
    font-size: 0.6em;
}

.stat-item .label {
    color: var(--text-muted);
    font-size: var(--font-size-base);
    margin-top: 4px;
    display: block;
}

/*--------------------------------------------------------------
14. FOOTER PREMIUM
--------------------------------------------------------------*/
.site-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-3xl) 0 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-widget h3 {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-sm);
}

.footer-widget ul a:hover {
    color: var(--text-white);
    padding-left: 6px;
}

.footer-widget .contact-info span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

.footer-widget .contact-info i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition-base);
}

.social-icons a:hover {
    background: var(--primary-gradient);
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.4);
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright a:hover {
    color: var(--primary);
}

.footer-payments {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-payments i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.footer-payments i:hover {
    color: var(--text-white);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
15. WOOCOMMERCE PREMIUM
--------------------------------------------------------------*/
.woocommerce .woocommerce-breadcrumb {
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.woocommerce ul.products li.product {
    margin: 0;
    padding: 0;
    width: 100% !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    padding: 0;
    margin-bottom: 6px;
}

.woocommerce ul.products li.product .price {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
}

.woocommerce ul.products li.product .button {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-radius: var(--radius-md);
    padding: 12px 24px;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.woocommerce ul.products li.product .button:hover {
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
}

.woocommerce .star-rating {
    color: #FBBF24;
}

/* Single Product */
.woocommerce div.product .product_title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
}

.woocommerce div.product .price {
    font-size: 28px;
    color: var(--text-primary);
    font-weight: 700;
}

.woocommerce div.product .summary {
    padding: var(--space-lg) 0 var(--space-lg) var(--space-2xl);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin-bottom: var(--space-xl);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin-right: 4px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--primary-gradient);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--text-white);
}

/* Cart */
.woocommerce-cart .cart_totals {
    background: var(--bg-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.woocommerce-cart .cart_totals h2 {
    font-size: var(--font-size-xl);
}

/*--------------------------------------------------------------
16. DARK MODE PREMIUM
--------------------------------------------------------------*/
body.dark-mode {
    --bg-white: #0F0F1A;
    --bg-light: #1A1A2E;
    --bg-card: #14142A;
    --text-primary: #F0F0F0;
    --text-secondary: #B0B0C8;
    --text-muted: #6A6A8A;
    --border-light: #2A2A4A;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 15px 60px rgba(0,0,0,0.5);
}

body.dark-mode .site-header {
    background: rgba(15, 15, 26, 0.97);
    backdrop-filter: blur(20px);
}

body.dark-mode .site-header.sticky {
    background: rgba(15, 15, 26, 0.98);
}

body.dark-mode .header-search .search-field {
    background: #1A1A2E;
    border-color: #2A2A4A;
    color: var(--text-primary);
}

body.dark-mode .header-action {
    background: #1A1A2E;
    color: var(--text-secondary);
}

body.dark-mode .header-action:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
}

body.dark-mode .main-navigation a {
    color: var(--text-secondary);
}

body.dark-mode .main-navigation a:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.05);
}

body.dark-mode .product-card,
body.dark-mode .blog-card,
body.dark-mode .testimonial-card {
    background: var(--bg-card);
    border-color: var(--border-light);
}

body.dark-mode .product-card:hover,
body.dark-mode .blog-card:hover,
body.dark-mode .testimonial-card:hover {
    border-color: var(--primary);
}

body.dark-mode .category-card {
    background: var(--bg-card);
}

body.dark-mode .category-card:hover {
    background: var(--primary);
}

body.dark-mode .statistics-section {
    background: var(--bg-dark);
}

body.dark-mode .newsletter-section {
    background: var(--bg-dark);
}

/*--------------------------------------------------------------
17. ANIMATIONS
--------------------------------------------------------------*/
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fade-in { animation: fadeIn 0.6s ease; }
.fade-in-up { animation: fadeInUp 0.6s ease; }
.fade-in-down { animation: fadeInDown 0.6s ease; }
.slide-up { animation: slideUp 0.6s ease; }
.scale-in { animation: scaleIn 0.4s ease; }

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: var(--z-tooltip);
    box-shadow: var(--shadow-primary);
    display: none;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.scroll-to-top.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid var(--border-light);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/*--------------------------------------------------------------
18. UTILITIES
--------------------------------------------------------------*/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-hover { box-shadow: var(--shadow-lg); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--bg-dark); }
.bg-primary { background: var(--primary-gradient); }

/*--------------------------------------------------------------
19. RESPONSIVE (ALL DEVICES)
--------------------------------------------------------------*/
/* Large Desktop */
@media (max-width: 1400px) {
    .container { max-width: 1140px; }
}

/* Desktop */
@media (max-width: 1199px) {
    .container { max-width: 960px; }
    .footer-widgets { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
    .hero-section { min-height: 480px; padding: var(--space-4xl) 0; }
    .hero-image { display: none; }
}

/* Tablet */
@media (max-width: 991px) {
    .container { max-width: 720px; }
    
    .header-inner { flex-wrap: wrap; gap: var(--space-md); }
    .header-search { order: 3; flex-basis: 100%; max-width: 100%; margin-top: var(--space-sm); }
    
    .hero-section { min-height: 400px; padding: var(--space-3xl) 0; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-widgets { grid-template-columns: repeat(2, 1fr); }
    .statistics-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
}

/* Mobile */
@media (max-width: 767px) {
    .container { padding: 0 16px; }
    
    /* Header */
    .header-actions .header-action .action-label { display: none; }
    .header-action { padding: 8px 12px; }
    .menu-toggle { display: flex; }
    
    .main-navigation {
        flex-direction: column;
        align-items: stretch;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: var(--space-md) 0;
        gap: 0;
    }
    
    .main-navigation ul.open { display: flex; }
    .main-navigation ul ul {
        position: static;
        box-shadow: none;
        padding-left: var(--space-md);
        border-radius: 0;
        background: transparent;
    }
    .main-navigation ul ul::before { display: none; }
    .main-navigation ul ul ul { padding-left: var(--space-xl); }
    .main-navigation li:hover > ul { display: none; }
    .main-navigation li.open > ul { display: flex; }
    
    /* Hero */
    .hero-section { min-height: 300px; padding: var(--space-2xl) 0; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: var(--font-size-base); }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
    .hero-stats { gap: var(--space-lg); flex-wrap: wrap; justify-content: center; }
    
    /* Products */
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--space-md); }
    .product-info { padding: var(--space-md) var(--space-md) var(--space-lg); }
    .product-title { font-size: var(--font-size-sm); }
    .product-price .current { font-size: 17px; }
    .product-add-to-cart { padding: 10px; font-size: 12px; }
    
    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card .content .title { font-size: 18px; }
    
    /* Categories */
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
    .category-card { padding: var(--space-lg) var(--space-md); }
    
    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }
    
    /* Newsletter */
    .newsletter-form { flex-direction: column; gap: 12px; padding: 0 var(--space-md); }
    .newsletter-form button { width: 100%; }
    
    /* Footer */
    .footer-widgets { grid-template-columns: 1fr; gap: var(--space-lg); }
    .footer-bottom { flex-direction: column; text-align: center; gap: var(--space-sm); }
    .footer-payments { justify-content: center; }
    
    /* Statistics */
    .statistics-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
    .stat-item .number { font-size: 2rem; }
    
    /* Section */
    .section { padding: var(--space-2xl) 0; }
    .section-title { margin-bottom: var(--space-lg); }
    .section-title h2 { font-size: 1.8rem; }
    .section-title p { font-size: var(--font-size-base); }
    
    /* WooCommerce */
    .woocommerce .products { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--space-md); }
    .woocommerce div.product .summary { padding: var(--space-lg) 0; }
    .woocommerce div.product .product_title { font-size: 1.8rem; }
    .woocommerce div.product .price { font-size: 22px; }
}

/* Small Mobile */
@media (max-width: 575px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-info { padding: 10px; }
    .product-title { font-size: 12px; }
    .product-price .current { font-size: 15px; }
    .product-add-to-cart { padding: 6px; font-size: 11px; }
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .category-card { padding: var(--space-md) var(--space-sm); }
    .category-card .icon { font-size: 32px; }
    .category-card .name { font-size: 14px; }
    .hero-content h1 { font-size: 1.5rem; }
    .statistics-grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
    .stat-item .number { font-size: 1.6rem; }
    .header-search .search-field { padding: 10px 14px; font-size: 13px; }
    .header-search .search-submit { padding: 10px 16px; font-size: 13px; }
}

/* Very Small Devices */
@media (max-width: 375px) {
    .products-grid { gap: 6px; }
    .product-title { font-size: 11px; }
    .product-price .current { font-size: 13px; }
    .product-add-to-cart { font-size: 10px; padding: 4px; }
    .categories-grid { gap: 6px; }
    .hero-content h1 { font-size: 1.3rem; }
}

/* Landscape Phone */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section { min-height: 200px; padding: var(--space-lg) 0; }
    .hero-content h1 { font-size: 1.6rem; }
    .hero-content p { font-size: var(--font-size-sm); margin-bottom: var(--space-md); }
    .section { padding: var(--space-lg) 0; }
}

/* Print */
@media print {
    .site-header, .site-footer, .sidebar, .hero-section,
    .newsletter-section, .scroll-to-top { display: none !important; }
    body { background: #fff !important; color: #000 !important; }
    .container { max-width: 100% !important; padding: 0 !important; }
}