/*
Theme Name: EduTech
Theme URI: https://edutech.com
Author: EduTech Team
Author URI: https://edutech.com
Description: Modern educational e-commerce theme with Elementor and WooCommerce support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: edutech
Tags: e-commerce, education, elementor, woocommerce, custom-logo, custom-menu
*/

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

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Primary Colors */
    --primary-blue: #1e4ba0;
    --primary-blue-dark: #0d3276;
    --primary-blue-light: #3b7ddd;
    --hero-blue: #2563eb;
    --hero-blue-dark: #1e40af;
    --hero-blue-light: #60a5fa;
    
    /* Accent Colors */
    --primary-red: #dc2626;
    --primary-red-hover: #b91c1c;
    --accent-yellow: #fbbf24;
    --accent-yellow-bg: #fef3c7;
    --accent-yellow-light: #fef9c3;
    --accent-green: #22c55e;
    --accent-green-bg: #dcfce7;
    --accent-purple: #8b5cf6;
    --accent-purple-bg: #f3e8ff;
    --accent-orange: #f97316;
    --accent-cyan: #06b6d4;
    
    /* Neutrals */
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-section: #f1f5f9;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* ========================================
   Creative Header - Modern Design
   ======================================== */
.site-header.creative-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.3s ease,
                box-shadow 0.3s ease;
}

.site-header.creative-header.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.site-header.creative-header.header-hidden {
    transform: translateY(-100%);
}

/* Background Effects */
.header-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatShape 8s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
    top: -20px;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.1));
    top: -15px;
    right: 20%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(249, 115, 22, 0.1));
    bottom: -10px;
    left: 50%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

/* Header Container */
.creative-header .header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
    z-index: 2;
}

/* Creative Logo */
.creative-logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.creative-logo .logo-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.creative-logo:hover .logo-glow {
    opacity: 1;
}

.creative-logo .header-logo-img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.creative-logo:hover .header-logo-img {
    transform: scale(1.05);
}

/* Creative Navigation */
.creative-nav {
    display: flex;
    align-items: center;
    position: relative;
}

.creative-nav .nav-indicator {
    position: absolute;
    bottom: -5px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.creative-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.creative-menu > li {
    position: relative;
}

.creative-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.creative-menu > li > a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.05));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.creative-menu > li > a:hover::before,
.creative-menu > li.current-menu-item > a::before,
.creative-menu > li.current_page_item > a::before {
    opacity: 1;
}

.creative-menu > li > a:hover,
.creative-menu > li.current-menu-item > a,
.creative-menu > li.current_page_item > a {
    color: var(--primary-blue);
}

.creative-menu > li.current-menu-item > a::after,
.creative-menu > li.current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    border-radius: 3px;
}

/* Submenu Styling */
.creative-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    z-index: 100;
}

.creative-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.creative-menu .sub-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--gray-600);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.creative-menu .sub-menu li a:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary-blue);
    padding-left: 20px;
}

/* Creative Actions */
.creative-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Creative Cart */
.creative-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.05));
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.creative-cart-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.creative-cart-btn .cart-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.creative-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, var(--primary-red), #f43f5e);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.creative-count.pulse {
    animation: countPulse 2s ease-in-out infinite;
}

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

/* Creative Shop Button */
.creative-shop-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-red), #f43f5e);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 14px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.creative-shop-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f43f5e, var(--primary-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.creative-shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.creative-shop-btn:hover::before {
    opacity: 1;
}

.creative-shop-btn .btn-text,
.creative-shop-btn .btn-icon {
    position: relative;
    z-index: 1;
}

.creative-shop-btn .btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.creative-shop-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Creative Mobile Toggle */
.creative-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.05));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    transition: all 0.3s ease;
}

.creative-toggle:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
}

.creative-toggle .toggle-line {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.creative-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.creative-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.creative-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Progress Bar */
.header-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(59, 130, 246, 0.1);
}

.header-progress .progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple), var(--accent-cyan));
    background-size: 200% 100%;
    animation: progressGradient 3s ease infinite;
    transition: width 0.1s ease;
}

@keyframes progressGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Legacy support */
.site-header:not(.creative-header) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.site-header:not(.creative-header) .header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.main-navigation a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-600);
    padding: var(--spacing-sm) var(--spacing-xs);
    position: relative;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: var(--primary-blue);
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--gray-600);
}

.cart-icon:hover {
    color: var(--primary-blue);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-yellow {
    background: var(--accent-yellow);
    color: var(--gray-900);
    border: 2px solid var(--accent-yellow);
}

.btn-yellow:hover {
    background: #f59e0b;
    border-color: #f59e0b;
}

.btn-blue-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-blue-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 550px;
    background: linear-gradient(135deg, var(--hero-blue-dark) 0%, var(--hero-blue) 50%, var(--hero-blue-light) 100%);
    padding-top: 72px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        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.08) 0%, transparent 40%);
}

.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--white);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.6;
}

.star-1 { top: 15%; left: 5%; width: 8px; height: 8px; }
.star-2 { top: 25%; left: 12%; width: 10px; height: 10px; }
.star-3 { top: 40%; left: 3%; width: 6px; height: 6px; }
.star-4 { top: 60%; left: 8%; }
.star-5 { top: 20%; right: 15%; width: 8px; height: 8px; }

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: var(--spacing-3xl) var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 480px;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-title span {
    font-weight: 400;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-red);
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
}

.planet-decoration {
    position: absolute;
    top: 0;
    right: 10%;
    width: 80px;
    height: 80px;
    animation: float 6s ease-in-out infinite;
}

.pencil-decoration {
    position: absolute;
    left: -30px;
    bottom: 20%;
    width: 40px;
    height: auto;
    animation: float 5s ease-in-out infinite 0.5s;
}

.drone-decoration {
    position: absolute;
    right: 5%;
    top: 30%;
    width: 70px;
    height: auto;
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .current {
    color: var(--accent-yellow);
}

.breadcrumb .separator {
    margin: 0 var(--spacing-sm);
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-alt {
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Programs Grid (Home) - EXACT Design Match
   ======================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.program-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Wave Background for each card */
.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 0;
}

/* Robotics & Coding - Yellow/Gold */
.program-card.robotics {
    background: #fffbeb;
}
.program-card.robotics::before {
    background: linear-gradient(180deg, #fcd34d 0%, #fde68a 60%, #fef9c3 100%);
    border-radius: 16px 16px 0 0;
    clip-path: ellipse(120% 100% at 50% 0%);
}

/* Science Kits - Cyan/Teal */
.program-card.science {
    background: #f0fdfa;
}
.program-card.science::before {
    background: linear-gradient(180deg, #67e8f9 0%, #a5f3fc 60%, #cffafe 100%);
    border-radius: 16px 16px 0 0;
    clip-path: ellipse(120% 100% at 50% 0%);
}

/* Agri-Tech - Green */
.program-card.agritech {
    background: #f0fdf4;
}
.program-card.agritech::before {
    background: linear-gradient(180deg, #86efac 0%, #bbf7d0 60%, #dcfce7 100%);
    border-radius: 16px 16px 0 0;
    clip-path: ellipse(120% 100% at 50% 0%);
}

/* Language Learning - Purple/Lavender */
.program-card.language {
    background: #faf5ff;
}
.program-card.language::before {
    background: linear-gradient(180deg, #c4b5fd 0%, #ddd6fe 60%, #ede9fe 100%);
    border-radius: 16px 16px 0 0;
    clip-path: ellipse(120% 100% at 50% 0%);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.program-icon {
    width: 55px;
    height: 55px;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.program-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.program-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.program-card.robotics .program-title { color: #1e40af; }
.program-card.science .program-title { color: #1e40af; }
.program-card.agritech .program-title { color: #15803d; }
.program-card.language .program-title { color: #6d28d9; }

.program-description {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.program-card.robotics .program-link { color: #b45309; }
.program-card.science .program-link { color: #0891b2; }
.program-card.agritech .program-link { color: #16a34a; }
.program-card.language .program-link { color: #7c3aed; }

.program-link:hover {
    gap: 8px;
}

/* Programs Banner Row - 3 Columns */
.programs-banner {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
}

.banner-card {
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

/* Creative Arts - Orange/Coral */
.banner-card.creative {
    background: #fff7ed;
}
.banner-card.creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, #fdba74 0%, #fed7aa 50%, #fff7ed 100%);
    clip-path: ellipse(150% 80% at 50% 0%);
    z-index: 0;
}

.banner-card.featured {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    justify-content: center;
}

.banner-card.featured img {
    max-height: 90px;
    width: auto;
    position: relative;
    z-index: 1;
}

/* Educational Decoration - Yellow/Gold */
.banner-card.decoration {
    background: #fefce8;
}
.banner-card.decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, #fde047 0%, #fef08a 50%, #fefce8 100%);
    clip-path: ellipse(150% 80% at 50% 0%);
    z-index: 0;
}

.banner-icon {
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 1;
}

.banner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-title {
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.banner-card.creative .banner-title { color: #c2410c; }
.banner-card.decoration .banner-title { color: #a16207; }

/* ========================================
   Programs Overview Page
   ======================================== */
.programs-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.program-overview-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-card);
    display: flex;
    gap: var(--spacing-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.program-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.program-overview-card.robotics { background: linear-gradient(135deg, #fef3c7 0%, #fff 100%); }
.program-overview-card.robotics::before { background: var(--accent-yellow); }

.program-overview-card.science { background: linear-gradient(135deg, #dbeafe 0%, #fff 100%); }
.program-overview-card.science::before { background: var(--primary-blue); }

.program-overview-card.agritech { background: linear-gradient(135deg, #dcfce7 0%, #fff 100%); }
.program-overview-card.agritech::before { background: var(--accent-green); }

.program-overview-card.language { background: linear-gradient(135deg, #f3e8ff 0%, #fff 100%); }
.program-overview-card.language::before { background: var(--accent-purple); }

.program-overview-card.creative { background: linear-gradient(135deg, #fed7aa 0%, #fff 100%); }
.program-overview-card.creative::before { background: var(--accent-orange); }

.program-overview-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.program-overview-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.program-overview-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.program-overview-content {
    flex: 1;
}

.program-overview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.program-overview-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-sm);
}

.program-overview-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.program-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.age-badge {
    background: var(--accent-yellow);
    color: var(--gray-800);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.school-ready-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.program-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* ========================================
   Products Grid
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(180deg, #f0f7ff 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.product-image img {
    max-height: 160px;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.product-badge.sale {
    background: var(--primary-red);
    color: var(--white);
}

.product-badge.new {
    background: var(--accent-green);
    color: var(--white);
}

.product-badge.bestseller {
    background: var(--accent-yellow);
    color: var(--gray-800);
}

.product-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-yellow);
    color: var(--gray-800);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: var(--spacing-lg);
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-old {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-age {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: var(--spacing-md);
}

.product-btn {
    width: 100%;
    background: var(--accent-yellow);
    color: var(--gray-800);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.product-btn:hover {
    background: #f59e0b;
}

/* ========================================
   Shop Page
   ======================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-2xl);
}

.shop-sidebar {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-card);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: var(--spacing-xl);
}

.filter-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
}

.filter-count {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.price-range {
    margin-top: var(--spacing-md);
}

.price-slider {
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.price-inputs {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.price-inputs span {
    color: var(--gray-400);
}

.category-tabs {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.category-tab {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--white);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.results-count {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.sort-dropdown select {
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9rem;
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

/* ========================================
   Features Section
   ======================================== */
.features-wrapper {
    border-top: 1px solid var(--gray-200);
    padding-top: var(--spacing-2xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--hero-blue-dark) 0%, var(--hero-blue) 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-text {
    text-align: center;
}

.cta-divider {
    width: 60px;
    height: 2px;
    background: var(--white);
    margin: 0 auto var(--spacing-md);
    opacity: 0.5;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Partners Section
   ======================================== */
.partners-section {
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--white) 100%);
    padding: var(--spacing-3xl) 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.partner-item {
    text-align: center;
}

.partner-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
}

.partner-name {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--gray-800);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    max-width: 120px;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-link {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-link:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--primary-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-blue-light);
}

.footer-partners {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.footer-partners img {
    height: 40px;
    width: auto;
}

/* ========================================
   Page Hero (Inner Pages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--hero-blue-dark) 0%, var(--hero-blue) 100%);
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.page-hero-content {
    padding: var(--spacing-2xl) 0;
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

/* ========================================
   Forms
   ======================================== */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--spacing-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-card);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-800);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
}

/* ========================================
   WooCommerce Overrides
   ======================================== */
.woocommerce ul.products,
.woocommerce .products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce ul.products li.product {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.woocommerce ul.products li.product a img {
    margin: 0;
    padding: var(--spacing-md);
    background: linear-gradient(180deg, #f0f7ff 0%, #fff 100%);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    padding: var(--spacing-sm) var(--spacing-lg) 0;
}

.woocommerce ul.products li.product .price {
    color: var(--primary-blue);
    font-weight: 700;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1.1rem;
}

.woocommerce ul.products li.product .button {
    background: var(--accent-yellow) !important;
    color: var(--gray-800) !important;
    border-radius: var(--radius-md);
    margin: var(--spacing-sm) var(--spacing-lg) var(--spacing-lg);
    padding: 12px 16px;
    font-weight: 600;
}

.woocommerce ul.products li.product .button:hover {
    background: #f59e0b !important;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (min-width: 1101px) {
    .programs-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .programs-banner {
        grid-template-columns: 1fr 2fr 1fr !important;
    }
}

@media (max-width: 1100px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-banner {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .products-grid,
    .features-grid,
    .partners-grid,
    .woocommerce ul.products,
    .woocommerce .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-2xl) var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-divider {
        margin: 0 auto var(--spacing-md);
    }
    
    .hero-subtitle {
        margin: 0 auto var(--spacing-xl);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-height: 300px;
        margin: 0 auto;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 1.5rem;
        --spacing-2xl: 2rem;
        --spacing-3xl: 2.5rem;
    }
    
    /* Creative Header Mobile */
    .creative-header .header-container {
        height: 60px;
        padding: 0 16px;
    }
    
    .creative-header .header-bg-effects {
        display: none;
    }
    
    .creative-logo .header-logo-img {
        height: 38px;
    }
    
    .creative-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        overflow-y: auto;
        z-index: 999;
    }
    
    .creative-nav.active {
        display: flex;
    }
    
    .creative-menu {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .creative-menu > li {
        width: 100%;
    }
    
    .creative-menu > li > a {
        padding: 16px;
        border-radius: 12px;
        font-size: 1rem;
    }
    
    .creative-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(59, 130, 246, 0.05);
        margin-top: 8px;
        padding: 8px;
    }
    
    .creative-actions {
        gap: 12px;
    }
    
    .creative-cart-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .creative-shop-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .creative-shop-btn .btn-icon {
        display: none;
    }
    
    .creative-toggle {
        display: flex;
    }
    
    .header-progress {
        height: 2px;
    }
    
    /* Legacy Header Mobile */
    .header-container {
        height: 64px;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
    }
    
    .main-navigation.active {
        display: flex;
    }
    
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .main-navigation li {
        width: 100%;
    }
    
    .main-navigation a {
        display: block;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--gray-100);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 64px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .programs-grid,
    .products-grid,
    .features-grid,
    .partners-grid,
    .shop-products-grid,
    .testimonials-grid,
    .woocommerce ul.products,
    .woocommerce .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .category-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--spacing-sm);
    }
    
    .page-hero-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .product-card,
    .program-card {
        padding: var(--spacing-md);
    }
    
    .program-overview-card {
        flex-direction: column;
        text-align: center;
    }
    
    .program-buttons {
        flex-direction: column;
    }
    
    /* Fix White Margin on Small Screens */
    .container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .hero-container {
        padding: var(--spacing-xl) 12px;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    animation: fadeInUp 0.5s ease forwards;
}

/* WordPress Admin Bar Fix */
body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* ========================================
   Header Cart Icon
   ======================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--gray-600);
    transition: var(--transition-normal);
}

.cart-icon:hover {
    color: var(--primary-blue);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* ========================================
   Mini Cart Dropdown
   ======================================== */
.cart-wrapper {
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 380px;
    max-width: 90vw;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.mini-cart-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mini-cart-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.mini-cart-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.mini-cart-close:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.mini-cart-content {
    max-height: calc(80vh - 120px);
    overflow-y: auto;
    padding: 1rem 0;
}

.mini-cart-content::-webkit-scrollbar {
    width: 6px;
}

.mini-cart-content::-webkit-scrollbar-track {
    background: var(--gray-100);
}

.mini-cart-content::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.mini-cart-content::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

.mini-cart-empty {
    padding: 3rem 1.5rem;
    text-align: center;
}

.mini-cart-empty p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.mini-cart-loading {
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--gray-600);
}

.mini-cart-items {
    padding: 0.5rem 0;
}

.mini-cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s;
}

.mini-cart-item:hover {
    background: var(--gray-50);
}

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

.mini-cart-item-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-details {
    flex: 1;
    min-width: 0;
}

.mini-cart-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.mini-cart-item-title a {
    color: inherit;
    text-decoration: none;
}

.mini-cart-item-title a:hover {
    color: var(--primary-blue);
}

.mini-cart-item-meta {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.mini-cart-item-quantity {
    display: inline-block;
    margin-top: 0.25rem;
}

.mini-cart-item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-red);
}

.mini-cart-item-remove {
    flex-shrink: 0;
}

.mini-cart-item-remove .remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 50%;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1;
}

.mini-cart-item-remove .remove:hover {
    background: var(--primary-red);
    color: var(--white);
}

.mini-cart-total {
    padding: 1.25rem 1.5rem;
    border-top: 2px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-50);
}

.mini-cart-total strong {
    font-size: 1rem;
    color: var(--gray-800);
}

.mini-cart-total .amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-red);
}

.mini-cart-buttons {
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

.mini-cart-buttons .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.mini-cart-buttons .btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.mini-cart-buttons .btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.mini-cart-buttons .btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.mini-cart-buttons .btn-primary:hover {
    background: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
}

@media (max-width: 768px) {
    .mini-cart-dropdown {
        width: 100vw;
        max-width: 100vw;
        right: -20px;
        left: -20px;
        border-radius: 0;
        max-height: 90vh;
    }
    
    .mini-cart-item {
        padding: 1rem;
    }
    
    .mini-cart-buttons {
        flex-direction: column;
    }
    
    .mini-cart-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   Notifications
   ======================================== */
.edutech-notification {
    position: fixed;
    top: 90px;
    right: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.edutech-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.edutech-notification-success {
    border-left: 4px solid var(--accent-green);
    color: #166534;
    background: #dcfce7;
}

.edutech-notification-error {
    border-left: 4px solid var(--primary-red);
    color: #991b1b;
    background: #fee2e2;
}

.edutech-notification::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.edutech-notification-success::before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23166534' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}

.edutech-notification-error::before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23991b1b' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .edutech-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .edutech-notification.show {
        transform: translateY(0);
    }
}

/* ========================================
   Add to Cart Button Loading State
   ======================================== */
.btn-add-cart.loading,
.add-to-cart-btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-add-cart .loading,
.add-to-cart-btn .loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Policy Pages
   ======================================== */
.policy-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: calc(72px + 3rem) 0 3rem;
    color: #fff;
}

.policy-hero .breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.policy-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.policy-hero .breadcrumb a:hover {
    color: #fff;
}

.policy-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.policy-hero .breadcrumb .current {
    color: #fff;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.policy-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.policy-content-section {
    padding: 4rem 0;
}

.policy-content {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2rem 0 1rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin: 1.5rem 0 0.75rem;
}

.policy-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.policy-sidebar {
    position: sticky;
    top: 100px;
}

.policy-nav {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.policy-nav h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem;
}

.policy-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-nav li {
    margin-bottom: 0.5rem;
}

.policy-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: #475569;
    border-radius: 8px;
    transition: all 0.3s;
}

.policy-nav a:hover {
    background: #f1f5f9;
    color: #3b82f6;
}

.policy-nav li.current a {
    background: #3b82f6;
    color: #fff;
}

.policy-help {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.policy-help h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.75rem;
}

.policy-help p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.policy-help .btn {
    width: 100%;
}

@media (max-width: 992px) {
    .policy-content-section .container {
        grid-template-columns: 1fr;
    }
    
    .policy-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   WooCommerce Cart
   ======================================== */
.woocommerce-cart-wrapper {
    padding: calc(72px + 3rem) 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce-cart-form__contents {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.woocommerce-cart-form__contents thead th {
    background: #f8fafc;
    padding: 1rem;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.woocommerce-cart-form__contents tbody td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.woocommerce-cart-form__contents .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
}

.woocommerce-cart-form__contents .product-name a {
    color: #1e293b;
    font-weight: 500;
}

.woocommerce-cart-form__contents .product-name a:hover {
    color: #3b82f6;
}

.woocommerce-cart-form__contents .product-price,
.woocommerce-cart-form__contents .product-subtotal {
    font-weight: 600;
    color: #1e293b;
}

.woocommerce-cart-form__contents .remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 50%;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s;
}

.woocommerce-cart-form__contents .remove:hover {
    background: #ef4444;
    color: #fff;
}

.woocommerce-cart-form__contents .quantity input {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-align: center;
}

.woocommerce-cart-form__contents .actions {
    padding: 1.5rem !important;
    background: #f8fafc;
}

.woocommerce-cart-form__contents .coupon {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.woocommerce-cart-form__contents .coupon input {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    min-width: 200px;
}

.cart-collaterals {
    margin-top: 2rem;
}

.cart_totals {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    margin-left: auto;
}

.cart_totals h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.cart_totals table {
    width: 100%;
}

.cart_totals th,
.cart_totals td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.cart_totals .order-total {
    font-size: 1.25rem;
    font-weight: 700;
}

.wc-proceed-to-checkout .checkout-button {
    width: 100%;
    padding: 1rem;
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: #dc2626;
}

/* ========================================
   WooCommerce Checkout
   ======================================== */
.checkout-wrapper {
    padding: calc(72px + 3rem) 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.checkout-billing,
.checkout-shipping {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.woocommerce-checkout h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .form-row {
    margin-bottom: 1rem;
}

.woocommerce-checkout label {
    display: block;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.5rem;
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus {
    outline: none;
    border-color: #3b82f6;
}

.woocommerce-checkout-review-order {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.woocommerce-checkout-payment {
    margin-top: 1.5rem;
}

.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.wc_payment_method {
    margin-bottom: 0.75rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
}

.wc_payment_method .payment_box {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #64748b;
}

#place_order {
    width: 100%;
    padding: 1rem;
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

#place_order:hover {
    background: #dc2626;
}

.secure-checkout-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 8px;
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    color: #64748b;
    font-size: 0.9rem;
}

.payment-icons img {
    height: 24px;
    width: auto;
}

@media (max-width: 992px) {
    .checkout-columns {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   WooCommerce My Account - Creative Design
   ======================================== */

/* Page Background */
.woocommerce-account {
    background: #f8fafc;
    min-height: 100vh;
}

/* Main Wrapper */
.woocommerce-MyAccount-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    padding: calc(90px + 2.5rem) 3rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    align-items: start;
}

/* ========================================
   Navigation - Premium Design
   ======================================== */
.woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none !important;
    width: 100% !important;
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 25px rgba(59, 130, 246, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* Navigation Header */
.woocommerce-MyAccount-navigation::before {
    content: '⚙️ My Account';
    display: block;
    padding: 1.5rem 1.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: #3b82f6;
    border-bottom: 3px solid #06b6d4;
    text-align: center;
}

/* Navigation List */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

/* Navigation Items */
.woocommerce-MyAccount-navigation li {
    margin: 0;
}

/* Navigation Links */
.woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.9rem 1.1rem;
    color: #334155;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
}

/* Icon Circles */
.woocommerce-MyAccount-navigation a::before {
    content: '';
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    background-size: 18px 18px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

/* Dashboard */
.woocommerce-MyAccount-navigation-link--dashboard a::before {
    background-color: #eff6ff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233b82f6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2V6zM14 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V6zM4 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2v-2zM14 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z'/%3E%3C/svg%3E");
}

/* Orders */
.woocommerce-MyAccount-navigation-link--orders a::before {
    background-color: #fef3c7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f59e0b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z'/%3E%3C/svg%3E");
}

/* Downloads */
.woocommerce-MyAccount-navigation-link--downloads a::before {
    background-color: #d1fae5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4'/%3E%3C/svg%3E");
}

/* Addresses */
.woocommerce-MyAccount-navigation-link--edit-address a::before {
    background-color: #e0e7ff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238b5cf6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
}

/* Account Details */
.woocommerce-MyAccount-navigation-link--edit-account a::before {
    background-color: #cffafe;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2306b6d4'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3E%3C/svg%3E");
}

/* Payment Methods */
.woocommerce-MyAccount-navigation-link--payment-methods a::before {
    background-color: #fce7f3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ec4899'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z'/%3E%3C/svg%3E");
}

/* Logout */
.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    background-color: #fee2e2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1'/%3E%3C/svg%3E");
}

/* Hover State */
.woocommerce-MyAccount-navigation a:hover {
    background: #eff6ff;
    color: #3b82f6;
    border-color: #3b82f6;
    transform: translateX(-4px);
}

/* Active State */
.woocommerce-MyAccount-navigation .is-active a {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.woocommerce-MyAccount-navigation .is-active a::before {
    background-color: rgba(255, 255, 255, 0.25) !important;
    filter: brightness(0) invert(1);
}

/* Logout Special */
.woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #ef4444;
}

/* ========================================
   Content Area - Creative Design
   ======================================== */
.woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 25px rgba(59, 130, 246, 0.1);
    border: 1px solid #e2e8f0;
    min-height: 450px;
}

/* Content Headers */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eff6ff;
    position: relative;
}

.woocommerce-MyAccount-content h2::after,
.woocommerce-MyAccount-content h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #3b82f6;
}

/* Welcome Message */
.woocommerce-MyAccount-content > p:first-of-type {
    font-size: 1.05rem;
    color: #64748b;
    padding: 1.25rem 1.5rem;
    background: #eff6ff;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    margin-bottom: 2rem;
}

.woocommerce-MyAccount-content > p:first-of-type a {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-MyAccount-content > p:first-of-type a:hover {
    text-decoration: underline;
}

/* ========================================
   Forms - Elegant Design
   ======================================== */
.woocommerce-MyAccount-content .woocommerce-form-row,
.woocommerce-MyAccount-content .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-MyAccount-content label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content textarea,
.woocommerce-MyAccount-content select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1e293b;
    transition: all 0.3s ease;
    background: #fff;
}

.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content textarea:focus,
.woocommerce-MyAccount-content select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

/* Submit Buttons */
.woocommerce-MyAccount-content button[type="submit"],
.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-MyAccount-content .button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

/* ========================================
   Addresses - Card Design
   ======================================== */
.woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.woocommerce-Address {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.75rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.woocommerce-Address:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid #e2e8f0;
}

.woocommerce-Address-title h3 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 1rem;
    color: #3b82f6;
}

.woocommerce-Address-title h3::after {
    display: none;
}

.woocommerce-Address-title a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4rem 0.875rem;
    background: #3b82f6;
    color: #fff;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-Address-title a:hover {
    background: #1e40af;
}

.woocommerce-Address address {
    font-style: normal;
    line-height: 1.75;
    color: #64748b;
    font-size: 0.9rem;
}

/* ========================================
   Edit Address Form
   ======================================== */
.woocommerce-address-fields {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.woocommerce-address-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.woocommerce-address-fields .form-row-wide {
    grid-column: 1 / -1;
}

/* ========================================
   Orders Table
   ======================================== */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.woocommerce-orders-table thead {
    background: #3b82f6;
}

.woocommerce-orders-table th {
    padding: 1rem;
    text-align: right;
    font-weight: 600;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.woocommerce-orders-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.9rem;
    background: #fff;
}

.woocommerce-orders-table tbody tr:hover td {
    background: #eff6ff;
}

.woocommerce-orders-table tbody tr:last-child td {
    border-bottom: none;
}

.woocommerce-orders-table .woocommerce-button {
    padding: 0.5rem 1rem;
    background: #3b82f6;
    color: #fff;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-orders-table .woocommerce-button:hover {
    background: #1e40af;
}

/* ========================================
   Notices
   ======================================== */
.woocommerce-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #d1fae5;
    border-radius: 12px;
    color: #059669;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.woocommerce-error {
    display: block;
    padding: 1rem 1.25rem;
    background: #fee2e2;
    border-radius: 12px;
    color: #ef4444;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    list-style: none;
}

.woocommerce-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #eff6ff;
    border-radius: 12px;
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ========================================
   Responsive Design - Extra Large Screens
   ======================================== */
@media (min-width: 1800px) {
    .woocommerce-MyAccount-wrapper {
        max-width: 1700px;
        grid-template-columns: 380px 1fr;
        gap: 4rem;
        padding: calc(100px + 3rem) 4rem 5rem;
    }
    
    .woocommerce-MyAccount-navigation {
        border-radius: 24px;
    }
    
    .woocommerce-MyAccount-navigation::before {
        padding: 2rem 2.25rem;
        font-size: 1.35rem;
    }
    
    .woocommerce-MyAccount-navigation ul {
        padding: 1.5rem;
        gap: 0.5rem;
    }
    
    .woocommerce-MyAccount-navigation a {
        padding: 1.1rem 1.4rem;
        font-size: 1rem;
        gap: 1rem;
        border-radius: 14px;
    }
    
    .woocommerce-MyAccount-navigation a::before {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background-size: 22px 22px;
    }
    
    .woocommerce-MyAccount-content {
        border-radius: 24px;
        padding: 3.5rem;
        min-height: 550px;
    }
    
    .woocommerce-MyAccount-content h2 {
        font-size: 1.75rem;
    }
    
    .woocommerce-MyAccount-content > p:first-of-type {
        font-size: 1.15rem;
        padding: 1.75rem 2rem;
    }
    
    .woocommerce-Addresses {
        gap: 2.5rem;
    }
    
    .woocommerce-Address {
        padding: 2.5rem;
        border-radius: 20px;
    }
    
    .woocommerce-address-fields {
        padding: 3rem;
        border-radius: 20px;
    }
    
    .woocommerce-address-fields__field-wrapper {
        gap: 2rem;
    }
    
    .woocommerce-MyAccount-content input[type="text"],
    .woocommerce-MyAccount-content input[type="email"],
    .woocommerce-MyAccount-content input[type="password"],
    .woocommerce-MyAccount-content input[type="tel"],
    .woocommerce-MyAccount-content textarea,
    .woocommerce-MyAccount-content select {
        padding: 1.1rem 1.4rem;
        font-size: 1.05rem;
        border-radius: 14px;
    }
    
    .woocommerce-MyAccount-content button[type="submit"],
    .woocommerce-MyAccount-content .woocommerce-Button,
    .woocommerce-MyAccount-content .button {
        padding: 1.1rem 2.25rem;
        font-size: 1.05rem;
        border-radius: 14px;
    }
}

/* ========================================
   Responsive Design - Large Screens
   ======================================== */
@media (min-width: 1440px) and (max-width: 1799px) {
    .woocommerce-MyAccount-wrapper {
        max-width: 1500px;
        grid-template-columns: 350px 1fr;
        gap: 3.5rem;
        padding: calc(95px + 2.5rem) 3.5rem 4.5rem;
    }
    
    .woocommerce-MyAccount-navigation {
        border-radius: 22px;
    }
    
    .woocommerce-MyAccount-navigation::before {
        padding: 1.75rem 2rem;
        font-size: 1.25rem;
    }
    
    .woocommerce-MyAccount-navigation ul {
        padding: 1.25rem;
        gap: 0.5rem;
    }
    
    .woocommerce-MyAccount-navigation a {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        gap: 1rem;
    }
    
    .woocommerce-MyAccount-navigation a::before {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        background-size: 20px 20px;
    }
    
    .woocommerce-MyAccount-content {
        border-radius: 22px;
        padding: 3rem;
        min-height: 500px;
    }
    
    .woocommerce-MyAccount-content h2 {
        font-size: 1.5rem;
    }
    
    .woocommerce-MyAccount-content > p:first-of-type {
        font-size: 1.1rem;
        padding: 1.5rem 1.75rem;
    }
    
    .woocommerce-Addresses {
        gap: 2rem;
    }
    
    .woocommerce-Address {
        padding: 2rem;
        border-radius: 18px;
    }
    
    .woocommerce-address-fields {
        padding: 2.5rem;
        border-radius: 18px;
    }
    
    .woocommerce-address-fields__field-wrapper {
        gap: 1.5rem;
    }
}

/* ========================================
   Responsive Design - Medium Large Screens
   ======================================== */
@media (min-width: 1200px) and (max-width: 1439px) {
    .woocommerce-MyAccount-wrapper {
        max-width: 1300px;
        grid-template-columns: 320px 1fr;
        gap: 2.5rem;
        padding: calc(90px + 2rem) 2.5rem 4rem;
    }
    
    .woocommerce-MyAccount-content {
        padding: 2.5rem;
    }
    
    .woocommerce-address-fields {
        padding: 2rem;
    }
}

/* ========================================
   Responsive Design - Tablet
   ======================================== */
@media (max-width: 1199px) and (min-width: 769px) {
    .woocommerce-MyAccount-wrapper {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
        padding: calc(85px + 1.5rem) 2rem 3rem;
        max-width: 100%;
    }
    
    .woocommerce-MyAccount-navigation a {
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
    }
    
    .woocommerce-MyAccount-navigation a::before {
        width: 36px;
        height: 36px;
        background-size: 17px 17px;
    }
    
    .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-address-fields__field-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Responsive Design - Mobile
   ======================================== */
@media (max-width: 768px) {
    .woocommerce-account {
        padding: 0 0.5rem;
    }
    .woocommerce-MyAccount-wrapper {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: calc(72px + 1rem) 1rem 2rem;
    }
    
    .woocommerce-MyAccount-navigation {
        position: static;
        border-radius: 16px;
    }
    
    .woocommerce-MyAccount-navigation::before {
        padding: 1.1rem 1.25rem;
        font-size: 1rem;
    }
    
    .woocommerce-MyAccount-navigation ul {
        padding: 0.75rem;
        gap: 0.25rem;
    }
    
    .woocommerce-MyAccount-navigation a {
        padding: 0.75rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .woocommerce-MyAccount-navigation a::before {
        width: 32px;
        height: 32px;
        background-size: 16px 16px;
    }
    
    .woocommerce-MyAccount-navigation a:hover {
        transform: none;
    }
    
    .woocommerce-MyAccount-content {
        padding: 1.5rem;
        border-radius: 16px;
        min-height: auto;
    }
    
    .woocommerce-MyAccount-content h2 {
        font-size: 1.25rem;
    }
    
    .woocommerce-orders-table {
        display: block;
        overflow-x: auto;
    }
    
    .woocommerce-Address {
        padding: 1.25rem;
    }
    
    .woocommerce-address-fields {
        padding: 1.25rem;
    }
}

/* ========================================
   Responsive Design - Small Mobile
   ======================================== */
@media (max-width: 480px) {
    .woocommerce-MyAccount-wrapper {
        padding: calc(70px + 0.75rem) 0.75rem 1.5rem;
    }
    
    .woocommerce-MyAccount-navigation a::before {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background-size: 14px 14px;
    }
    
    .woocommerce-MyAccount-content {
        padding: 1rem;
    }
    
    .woocommerce-MyAccount-content > p:first-of-type {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .woocommerce-MyAccount-content button[type="submit"],
    .woocommerce-MyAccount-content .woocommerce-Button,
    .woocommerce-MyAccount-content .button {
        width: 100%;
        padding: 0.875rem 1rem;
    }
    
    .woocommerce-Address-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ========================================
   RTL Support
   ======================================== */
[dir="rtl"] .woocommerce-MyAccount-navigation a:hover {
    transform: translateX(4px);
}

[dir="rtl"] .woocommerce-MyAccount-content h2::after,
[dir="rtl"] .woocommerce-MyAccount-content h3::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .woocommerce-MyAccount-content > p:first-of-type {
    border-left: none;
    border-right: 4px solid #3b82f6;
}

/* ========================================
   WooCommerce Thank You Page
   ======================================== */
.thankyou-header {
    text-align: center;
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thankyou-icon {
    margin-bottom: 1rem;
}

.thankyou-header h2 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.thankyou-header p {
    color: #64748b;
    margin: 0;
}

/* ========================================
   Return Policy Notice
   ======================================== */
.return-policy-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    color: #0369a1;
    font-size: 0.9rem;
    margin-top: 1rem;
}
