/* ========================================
   E-COMMERCE PLATFORM - PREMIUM MODERN THEME
   ======================================== */

:root {
    /* Premium Gradient Palette */
    --emerald-dark: #01411C;
    --emerald-base: #0A6638;
    --emerald-light: #1B9D6B;
    --gold-dark: #B8860B;
    --gold-base: #D4AF37;
    --gold-light: #F0D175;
    --ruby-red: #DC2626;
    --sapphire-blue: #2563EB;
    --amethyst-purple: #7C3AED;

    /* Modern Backgrounds */
    --bg-body: #FAFDFA;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --bg-card: #FFFFFF;
    --bg-dark: #0A1929;
    --bg-gradient: linear-gradient(135deg, #FAFDFA 0%, #F5F9F5 100%);
    --bg-gradient-dark: linear-gradient(135deg, #0A1929 0%, #1A2C3D 100%);

    /* Text Colors */
    --text-primary: #1A1F2C;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --text-light: #F8FAFC;

    /* Gradients */
    --gradient-emerald: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-base) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-base) 100%);
    --gradient-premium: linear-gradient(135deg, var(--emerald-base) 0%, var(--gold-base) 100%);
    --gradient-danger: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);

    /* Effects */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.15);
    --glow-emerald: 0 0 40px rgba(10, 102, 56, 0.15);
    --glow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
    --glow-premium: 0 0 50px rgba(10, 102, 56, 0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-round: 50%;

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --section-spacing: 100px;
    --element-spacing: 40px;

    /* Legacy Variables for Compatibility */
    --primary-color: var(--emerald-base);
    --secondary-color: var(--emerald-light);
    --accent-color: var(--gold-base);
    --light-color: #F8FAFC;
    --dark-color: #1A1F2C;
}

/* ========================================
   BASE STYLES & RESETS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-gradient {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow-premium {
    box-shadow: var(--shadow-xl), var(--glow-premium);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ========================================
   TOP BANNER - PREMIUM MARQUEE
   ======================================== */

.top-banner-premium {
    background: var(--gradient-emerald);
    color: var(--text-light);
    padding: 14px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-banner-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    animation: shimmer 3s infinite;
}

.marquee-container-premium {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    padding-right: 50px;
}

.marquee-container-premium:hover {
    animation-play-state: paused;
}

.promo-item-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.promo-item-premium:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.promo-badge-premium {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-gold);
    color: var(--emerald-dark);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    white-space: nowrap;
}

/* ========================================
   MAIN HEADER - PREMIUM GLASS MORPHISM
   ======================================== */

.main-header-premium {
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(10, 102, 56, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.main-header-premium.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
}

.logo-container-premium {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-box-premium {
    width: 65px;
    height: 65px;
    background: var(--gradient-premium);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md), var(--glow-premium);
    transition: var(--transition);
}

.logo-box-premium:hover {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(10, 102, 56, 0.3);
}

.logo-text-premium {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ========================================
   PREMIUM SEARCH COMPONENT
   ======================================== */

.search-wrapper-premium {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.search-input-premium {
    width: 100%;
    padding: 16px 60px 16px 24px;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    font-weight: 500;
}

.search-input-premium::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.search-input-premium:focus {
    outline: none;
    border-color: var(--emerald-base);
    box-shadow: var(--glow-emerald);
    background: rgba(255, 255, 255, 0.95);
}

.search-btn-premium {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--gradient-emerald);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.1rem;
}

.search-btn-premium:hover {
    background: var(--gradient-premium);
    transform: translateY(-50%) rotate(12deg) scale(1.1);
}

/* ========================================
   HEADER ACTIONS - PREMIUM ICONS
   ======================================== */

.header-icons-premium {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-wrapper-premium {
    position: relative;
    padding: 12px;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    color: var(--emerald-base);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}

.icon-wrapper-premium:hover {
    background: var(--gradient-premium);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--glow-premium);
    border-color: transparent;
}

.icon-badge-premium {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-danger);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid white;
    padding: 0 4px;
}

/* ========================================
   MAIN NAVIGATION - PREMIUM
   ======================================== */

.main-nav-premium {
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(10, 102, 56, 0.08);
    padding: 0;
    position: relative;
    z-index: 990;
    box-shadow: var(--shadow-sm);
}

.nav-link-premium {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 20px 24px;
    position: relative;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    margin: 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link-premium:hover {
    color: var(--emerald-base);
    background: rgba(10, 102, 56, 0.05);
    transform: translateY(-2px);
}

.nav-link-premium.active {
    color: var(--emerald-base);
    font-weight: 700;
    background: rgba(10, 102, 56, 0.08);
}

.nav-link-premium.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--gradient-premium);
    border-radius: 2px;
}

/* ========================================
   DROPDOWN MENUS - PREMIUM
   ======================================== */

.dropdown-menu-premium {
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 16px;
    margin-top: 10px;
    min-width: 300px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: var(--transition);
    margin-bottom: 4px;
}

.dropdown-item-premium:hover {
    background: rgba(10, 102, 56, 0.05);
    transform: translateX(8px);
}

.dropdown-icon-premium {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(10, 102, 56, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-base);
    font-size: 1.2rem;
    transition: var(--transition);
}

.dropdown-item-premium:hover .dropdown-icon-premium {
    background: var(--gradient-premium);
    color: white;
}

.dropdown-text-premium {
    flex: 1;
}

.dropdown-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.dropdown-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ========================================
   PROMO BADGES - PREMIUM
   ======================================== */

.promo-badges-premium {
    display: flex;
    align-items: center;
    gap: 16px;
}

.promo-badge-premium-small {
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    background: var(--gradient-gold);
    color: var(--emerald-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.promo-badge-premium-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.promo-badge-premium-small.purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
}

.promo-badge-premium-small.pink {
    background: linear-gradient(135deg, #EC4899, #DB2777);
    color: white;
}

/* ========================================
   HERO SECTION - ULTRA MODERN
   ======================================== */

.hero-slider-modern {
    padding: 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slider-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(10, 102, 56, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-slide-modern {
    padding: 160px 0;
    position: relative;
    z-index: 2;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.hero-title-modern {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-subtitle-modern {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-frame-modern {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--glow-premium);
    transform: perspective(1500px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.hero-image-frame-modern:hover {
    transform: perspective(1500px) rotateY(0) rotateX(0) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 80px rgba(10, 102, 56, 0.4);
}

.hero-img-modern {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-frame-modern:hover .hero-img-modern {
    transform: scale(1.15);
}

/* ========================================
   BUTTONS - PREMIUM MODERN
   ======================================== */

.btn-modern-primary {
    background: var(--gradient-premium);
    color: white;
    border: none;
    padding: 20px 48px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--glow-premium);
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-modern-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(10, 102, 56, 0.4);
}

.btn-modern-primary:hover::before {
    left: 100%;
}

.btn-modern-outline {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 44px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-modern-outline:hover {
    border-color: var(--gold-base);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--glow-gold);
    color: var(--gold-light);
}

/* ========================================
   SECTION HEADERS - PREMIUM
   ======================================== */

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle-modern {
    color: var(--gold-base);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-desc-modern {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ========================================
   PRODUCT CARDS - PREMIUM
   ======================================== */

.product-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card-modern {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(10, 102, 56, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-modern:hover {
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    transform: translateY(-12px);
    border-color: rgba(10, 102, 56, 0.2);
}

.product-media-modern {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.product-img-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover .product-img-modern {
    transform: scale(1.12);
}

.product-badge-modern {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.badge-new {
    background: var(--gradient-premium);
    color: white;
}

.badge-featured {
    background: var(--gradient-gold);
    color: var(--emerald-dark);
}

.badge-sale {
    background: var(--gradient-danger);
    color: white;
}

.badge-digital {
    background: linear-gradient(135deg, var(--sapphire-blue), #4F46E5);
    color: white;
}

.product-actions-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    z-index: 3;
}

.product-card-modern:hover .product-actions-modern {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.2rem;
}

.product-action-btn:hover {
    background: var(--gradient-premium);
    color: white;
    transform: rotate(15deg) scale(1.1);
    border-color: transparent;
}

.product-content-modern {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-category-modern {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.product-title-modern {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.4;
    flex-grow: 1;
}

.product-title-modern a {
    color: var(--text-primary);
    transition: var(--transition);
    display: block;
}

.product-title-modern a:hover {
    color: var(--emerald-base);
}

.product-price-modern {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-current-modern {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--emerald-base);
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-old-modern {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 500;
}

.discount-badge {
    padding: 6px 14px;
    background: var(--gradient-danger);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: auto;
}

.product-btn-modern {
    margin-top: auto;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gradient-emerald);
    color: white;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-btn-modern:hover {
    background: var(--gradient-premium);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-emerald);
}

/* ========================================
   CATEGORY CARDS - PREMIUM
   ======================================== */

.category-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.category-card-modern {
    display: block;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 6px solid white;
}

.category-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    border-color: rgba(10, 102, 56, 0.2);
}

.category-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.category-card-modern:hover .category-img-modern {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.category-overlay-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(1, 65, 28, 0.95), transparent 70%);
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.category-card-modern:hover .category-overlay-modern {
    transform: translateY(0);
}

.category-name-modern {
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 10px 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.category-count-modern {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========================================
   FEATURE CARDS - PREMIUM
   ======================================== */

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.feature-card-modern {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(10, 102, 56, 0.08);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-premium);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl), var(--glow-emerald);
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-icon-modern {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-premium);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-md), var(--glow-premium);
}

.feature-card-modern:hover .feature-icon-modern {
    transform: rotateY(180deg) scale(1.1);
    background: var(--gradient-gold);
}

.feature-title-modern {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature-desc-modern {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ========================================
   CTA SECTION - PREMIUM
   ======================================== */

.cta-section-modern {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 30%, rgba(10, 102, 56, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-modern {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cta-desc-modern {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   BLOG CARDS - PREMIUM
   ======================================== */

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.blog-card-modern {
    background: white;
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: block;
    height: 100%;
    box-shadow: var(--shadow-lg);
}

.blog-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    border-color: rgba(10, 102, 56, 0.3);
}

.blog-media-modern {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.blog-img-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.blog-card-modern:hover .blog-img-modern {
    transform: scale(1.15);
    filter: brightness(1.05);
}

.blog-date-modern {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-premium);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.blog-content-modern {
    padding: 30px;
    position: relative;
}

.blog-category-modern {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(10, 102, 56, 0.1);
    color: var(--emerald-base);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.blog-title-modern {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.blog-title-modern a {
    color: inherit;
    transition: var(--transition);
}

.blog-title-modern a:hover {
    color: var(--emerald-base);
}

.blog-excerpt-modern {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.blog-meta-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(10, 102, 56, 0.1);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   FOOTER - PREMIUM MODERN
   ======================================== */

.footer-premium {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--emerald-base), transparent);
}

.footer-top {
    margin-bottom: 60px;
}

.footer-logo-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo-box {
    width: 60px;
    height: 60px;
    background: var(--gradient-premium);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    margin-top: 5px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

.social-links-premium {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gradient-premium);
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.payment-icon {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
}

/* ========================================
   MOBILE NAVIGATION - PREMIUM
   ======================================== */

.mobile-nav-premium {
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(10, 102, 56, 0.1);
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    display: none;
}

.mobile-nav-item-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 10px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    flex: 1;
}

.mobile-nav-item-premium:hover,
.mobile-nav-item-premium.active {
    color: var(--emerald-base);
    background: rgba(10, 102, 56, 0.05);
    transform: translateY(-5px);
}

.mobile-nav-icon {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.mobile-nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-badge-premium {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: var(--gradient-danger);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-glass);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }
}

@media (max-width: 1200px) {
    .search-wrapper-premium {
        max-width: 450px;
    }

    .hero-title-modern {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }

    .section-title-modern {
        font-size: clamp(2.2rem, 4vw, 3rem);
    }
}

@media (max-width: 992px) {
    .main-header-premium {
        padding: 15px 0;
    }

    .logo-box-premium {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .logo-title {
        font-size: 1.6rem;
    }

    .search-wrapper-premium {
        display: none;
    }

    .promo-badges-premium {
        display: none;
    }

    .main-nav-premium {
        display: none;
    }

    .mobile-nav-premium {
        display: flex;
    }

    .hero-slider-modern {
        min-height: auto;
    }

    .hero-slide-modern {
        padding: 100px 0;
    }

    .hero-title-modern {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .hero-subtitle-modern {
        font-size: 1.1rem;
        padding: 15px;
    }

    .features-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .feature-card-modern {
        padding: 30px;
    }

    .product-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-banner-premium {
        padding: 12px 0;
        font-size: 0.85rem;
    }

    .promo-badge-premium {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 15px;
        display: inline-block;
    }

    .marquee-container-premium {
        gap: 30px;
        padding-right: 30px;
    }

    .header-icons-premium {
        gap: 8px;
    }

    .icon-wrapper-premium {
        width: 48px;
        height: 48px;
    }

    .hero-image-frame-modern {
        transform: none;
    }

    .hero-image-frame-modern:hover {
        transform: scale(1.02);
    }

    .btn-modern-primary,
    .btn-modern-outline {
        padding: 18px 36px;
        font-size: 1rem;
    }

    .section-spacing {
        --section-spacing: 80px;
    }

    .category-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .category-card-modern {
        height: 350px;
    }

    .category-name-modern {
        font-size: 1.6rem;
    }

    .footer-premium {
        padding: 60px 0 30px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .hero-slide-modern {
        padding: 80px 0;
    }

    .hero-badge-modern {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .hero-title-modern {
        font-size: 2.5rem;
    }

    .hero-subtitle-modern {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .section-header-modern {
        margin-bottom: 40px;
    }

    .section-subtitle-modern {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .section-desc-modern {
        font-size: 1rem;
    }

    .product-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-grid-modern {
        grid-template-columns: 1fr;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
    .logo-title {
        font-size: 1.4rem;
    }

    .logo-box-premium {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .hero-title-modern {
        font-size: 2.2rem;
    }

    .btn-modern-primary,
    .btn-modern-outline {
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .icon-wrapper-premium {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
}

/* ========================================
   ANIMATIONS & KEYFRAMES
   ======================================== */

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Utility Classes */
.animate-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-fill-mode: both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

.delay-7 {
    animation-delay: 0.7s;
}

.delay-8 {
    animation-delay: 0.8s;
}

.delay-9 {
    animation-delay: 0.9s;
}

.delay-10 {
    animation-delay: 1s;
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gradient);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-premium);
    border-radius: 6px;
    border: 3px solid var(--bg-body);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--emerald-light), var(--gold-light));
}

/* ========================================
   LOADING STATES & SKELETONS
   ======================================== */

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-title {
    height: 2em;
    margin-bottom: 1em;
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */

.toast-premium {
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    padding: 20px;
    min-width: 300px;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toast-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-premium);
}

.toast-success::before {
    background: var(--gradient-emerald);
}

.toast-error::before {
    background: var(--gradient-danger);
}

.toast-warning::before {
    background: var(--gradient-gold);
}

/* ========================================
   FORM ELEMENTS - PREMIUM
   ======================================== */

.form-group-premium {
    margin-bottom: 30px;
    position: relative;
}

.form-label-premium {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-premium {
    width: 100%;
    padding: 18px 24px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    font-weight: 500;
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--emerald-base);
    box-shadow: var(--glow-emerald);
    background: white;
}

.form-control-premium::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

/* ========================================
   MODALS - PREMIUM
   ======================================== */

.modal-premium {
    background: var(--bg-glass);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--glow-premium);
    overflow: hidden;
}

.modal-header-premium {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(10, 102, 56, 0.1);
    background: linear-gradient(135deg, rgba(10, 102, 56, 0.05), rgba(212, 175, 55, 0.05));
}

.modal-title-premium {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
}

.modal-body-premium {
    padding: 40px;
}

.modal-footer-premium {
    padding: 30px 40px;
    border-top: 1px solid rgba(10, 102, 56, 0.1);
    background: linear-gradient(135deg, rgba(10, 102, 56, 0.02), rgba(212, 175, 55, 0.02));
}

/* ========================================
   PROGRESS BARS - PREMIUM
   ======================================== */

.progress-premium {
    height: 12px;
    background: rgba(10, 102, 56, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-bar-premium {
    height: 100%;
    background: var(--gradient-premium);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* ========================================
   TABS - PREMIUM
   ======================================== */

.tabs-premium {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid rgba(10, 102, 56, 0.1);
    margin-bottom: 40px;
}

.tab-premium {
    padding: 16px 32px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.tab-premium:hover {
    color: var(--emerald-base);
    background: rgba(10, 102, 56, 0.05);
}

.tab-premium.active {
    color: var(--emerald-base);
    font-weight: 700;
}

.tab-premium.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-premium);
    border-radius: 2px 2px 0 0;
}

/* ========================================
   ALERTS - PREMIUM
   ======================================== */

.alert-premium {
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 24px 30px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.alert-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-premium);
}

.alert-success {
    border-color: rgba(10, 102, 56, 0.2);
}

.alert-success::before {
    background: var(--gradient-emerald);
}

.alert-warning {
    border-color: rgba(212, 175, 55, 0.2);
}

.alert-warning::before {
    background: var(--gradient-gold);
}

.alert-error {
    border-color: rgba(220, 38, 38, 0.2);
}

.alert-error::before {
    background: var(--gradient-danger);
}

/* ========================================
   TOOLTIPS - PREMIUM
   ======================================== */

.tooltip-premium {
    background: var(--bg-dark);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    position: absolute;
    z-index: 1000;
    max-width: 300px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
}

.tooltip-premium.show {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-premium::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--bg-dark);
}

/* ========================================
   PAGINATION - PREMIUM
   ======================================== */

.pagination-premium {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 60px;
}

.page-link-premium {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.page-link-premium:hover {
    background: var(--gradient-premium);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.page-link-premium.active {
    background: var(--gradient-premium);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

/* ========================================
   ACCORDION - PREMIUM
   ======================================== */

.accordion-premium {
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accordion-item-premium {
    border-bottom: 1px solid rgba(10, 102, 56, 0.1);
}

.accordion-item-premium:last-child {
    border-bottom: none;
}

.accordion-header-premium {
    padding: 24px 30px;
    background: var(--bg-glass);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.accordion-header-premium:hover {
    background: rgba(10, 102, 56, 0.05);
}

.accordion-title-premium {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.accordion-icon-premium {
    font-size: 1.2rem;
    color: var(--emerald-base);
    transition: var(--transition);
}

.accordion-header-premium.active .accordion-icon-premium {
    transform: rotate(180deg);
}

.accordion-content-premium {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header-premium.active+.accordion-content-premium {
    padding: 0 30px 30px;
    max-height: 1000px;
}

/* ========================================
   RATING STARS - PREMIUM
   ======================================== */

.rating-stars-premium {
    display: flex;
    gap: 2px;
}

.star-premium {
    font-size: 1.2rem;
    color: #E5E7EB;
    transition: var(--transition);
}

.star-premium.filled {
    color: #FBBF24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.star-premium.half-filled {
    background: linear-gradient(90deg, #FBBF24 50%, #E5E7EB 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   COUNTERS & STATS - PREMIUM
   ======================================== */

.counter-premium {
    text-align: center;
    padding: 40px;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(10, 102, 56, 0.1);
    transition: var(--transition);
}

.counter-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    border-color: rgba(10, 102, 56, 0.2);
}

.counter-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.counter-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CUSTOM SELECT - PREMIUM
   ======================================== */

.select-premium {
    position: relative;
}

.select-header-premium {
    padding: 18px 24px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    font-weight: 500;
}

.select-header-premium:hover {
    border-color: var(--emerald-base);
}

.select-header-premium.open {
    border-color: var(--emerald-base);
    box-shadow: var(--glow-emerald);
}

.select-options-premium {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: var(--transition);
}

.select-options-premium.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.select-option-premium {
    padding: 16px 24px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(10, 102, 56, 0.05);
}

.select-option-premium:hover {
    background: rgba(10, 102, 56, 0.05);
}

.select-option-premium.selected {
    background: rgba(10, 102, 56, 0.1);
    color: var(--emerald-base);
    font-weight: 600;
}

.select-option-premium:last-child {
    border-bottom: none;
}

/* ========================================
   RANGE SLIDER - PREMIUM
   ======================================== */

.range-slider-premium {
    position: relative;
    padding: 30px 0 40px;
}

.slider-track-premium {
    height: 8px;
    background: rgba(10, 102, 56, 0.1);
    border-radius: 4px;
    position: relative;
}

.slider-range-premium {
    height: 100%;
    background: var(--gradient-premium);
    border-radius: 4px;
    position: absolute;
    top: 0;
}

.slider-thumb-premium {
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid var(--emerald-base);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.slider-thumb-premium:hover {
    transform: translateY(-50%) scale(1.2);
    box-shadow: var(--shadow-lg), var(--glow-emerald);
}

.slider-values-premium {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ========================================
   COLOR SWATCHES - PREMIUM
   ======================================== */

.color-swatches-premium {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-swatch-premium {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.color-swatch-premium:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-md);
}

.color-swatch-premium.selected {
    transform: scale(1.2);
    box-shadow: var(--shadow-md), var(--glow-emerald);
}

.color-swatch-premium.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 900;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SIZE SELECTOR - PREMIUM
   ======================================== */

.size-selector-premium {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option-premium {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.size-option-premium:hover {
    border-color: var(--emerald-base);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.size-option-premium.selected {
    background: var(--gradient-premium);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   QUANTITY SELECTOR - PREMIUM
   ======================================== */

.quantity-selector-premium {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 150px;
}

.quantity-btn-premium {
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    border: none;
    color: var(--emerald-base);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn-premium:hover {
    background: rgba(10, 102, 56, 0.1);
}

.quantity-input-premium {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    background: transparent;
}

.quantity-input-premium:focus {
    outline: none;
}

/* ========================================
   IMAGE GALLERY - PREMIUM
   ======================================== */

.gallery-main-premium {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.gallery-thumbnails-premium {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px;
}

.gallery-thumbnail-premium {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    flex-shrink: 0;
    border: 2px solid transparent;
}

.gallery-thumbnail-premium:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.gallery-thumbnail-premium.active {
    opacity: 1;
    border-color: var(--emerald-base);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   LOADING SPINNER - PREMIUM
   ======================================== */

.spinner-premium {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(10, 102, 56, 0.1);
    border-top-color: var(--emerald-base);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   BACK TO TOP BUTTON - PREMIUM
   ======================================== */

.back-to-top-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-premium);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg), var(--glow-premium);
    z-index: 100;
    font-size: 1.2rem;
}

.back-to-top-premium.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-premium:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(10, 102, 56, 0.4);
}

/* ========================================
   BREADCRUMBS - PREMIUM
   ======================================== */

.breadcrumbs-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.breadcrumb-item-premium {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-item-premium:last-child {
    color: var(--emerald-base);
    font-weight: 600;
}

.breadcrumb-item-premium a {
    color: inherit;
    transition: var(--transition);
}

.breadcrumb-item-premium a:hover {
    color: var(--emerald-base);
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   STICKY ELEMENTS - PREMIUM
   ======================================== */

.sticky-element-premium {
    position: sticky;
    top: 100px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-element-premium:hover {
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    border-color: rgba(10, 102, 56, 0.2);
}

/* ========================================
   VIDEO PLAYER - PREMIUM
   ======================================== */

.video-player-premium {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-container-premium {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: var(--bg-dark);
}

.video-container-premium video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: var(--transition);
}

.video-player-premium:hover .video-controls-premium {
    opacity: 1;
}

.video-btn-premium {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-premium);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.video-btn-premium:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.video-timeline-premium {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-progress-premium {
    height: 100%;
    background: var(--gradient-premium);
    width: 0%;
    transition: width 0.1s linear;
}

/* ========================================
   COUNTDOWN TIMER - PREMIUM
   ======================================== */

.countdown-premium {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.countdown-item-premium {
    text-align: center;
    min-width: 100px;
}

.countdown-value-premium {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.countdown-label-premium {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   TESTIMONIAL CARDS - PREMIUM
   ======================================== */

.testimonial-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.testimonial-card-premium {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    border-color: rgba(10, 102, 56, 0.2);
}

.testimonial-card-premium::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    color: rgba(10, 102, 56, 0.05);
    font-family: 'Georgia', serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--emerald-base);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========================================
   PRICING TABLES - PREMIUM
   ======================================== */

.pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.pricing-card-premium {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(10, 102, 56, 0.1);
}

.pricing-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    border-color: rgba(10, 102, 56, 0.2);
}

.pricing-card-premium.featured {
    border: 3px solid var(--emerald-base);
    transform: translateY(-5px);
}

.pricing-card-premium.featured:hover {
    transform: translateY(-20px);
}

.pricing-header-premium {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 102, 56, 0.05), rgba(212, 175, 55, 0.05));
    border-bottom: 1px solid rgba(10, 102, 56, 0.1);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-body-premium {
    padding: 40px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 102, 56, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--emerald-base);
    font-size: 1.2rem;
}

.pricing-footer-premium {
    padding: 0 40px 40px;
    text-align: center;
}

/* ========================================
   TEAM MEMBER CARDS - PREMIUM
   ======================================== */

.team-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.team-card-premium {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(10, 102, 56, 0.1);
}

.team-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    border-color: rgba(10, 102, 56, 0.2);
}

.team-media-premium {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.team-img-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-premium:hover .team-img-premium {
    transform: scale(1.1);
}

.team-content-premium {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.team-position {
    font-size: 0.95rem;
    color: var(--emerald-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link-team {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 102, 56, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-base);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link-team:hover {
    background: var(--gradient-premium);
    color: white;
    transform: translateY(-3px);
}

/* ========================================
   STATISTICS COUNTER - PREMIUM
   ======================================== */

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.stat-card-premium {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(10, 102, 56, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    border-color: rgba(10, 102, 56, 0.2);
}

.stat-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-premium);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.stat-card-premium:hover::before {
    transform: scaleX(1);
}

.stat-icon-premium {
    font-size: 3rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.stat-value-premium {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label-premium {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   PARALLAX SECTIONS - PREMIUM
   ======================================== */

.parallax-section-premium {
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4);
    z-index: 1;
}

.parallax-content-premium {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   GRADIENT BACKGROUNDS - PREMIUM
   ======================================== */

.bg-gradient-premium {
    background: var(--gradient-premium);
    color: white;
}

.bg-gradient-emerald {
    background: var(--gradient-emerald);
    color: white;
}

.bg-gradient-gold {
    background: var(--gradient-gold);
    color: var(--emerald-dark);
}

.bg-gradient-dark {
    background: var(--bg-gradient-dark);
    color: white;
}

/* ========================================
   WAVY DIVIDERS - PREMIUM
   ======================================== */

.wave-divider-premium {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-divider-premium svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider-premium .shape-fill {
    fill: var(--bg-body);
}

.wave-divider-top {
    top: -1px;
    bottom: auto;
    transform: rotate(180deg);
}

/* ========================================
   PARTICLE BACKGROUND - PREMIUM
   ======================================== */

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ========================================
   CUSTOM CHECKBOX & RADIO - PREMIUM
   ======================================== */

.checkbox-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    min-height: 28px;
}

.checkbox-input-premium {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom-premium {
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(10, 102, 56, 0.2);
    border-radius: var(--radius-sm);
    background: white;
    transition: var(--transition);
}

.checkbox-premium:hover .checkbox-custom-premium {
    border-color: var(--emerald-base);
}

.checkbox-input-premium:checked+.checkbox-custom-premium {
    background: var(--gradient-premium);
    border-color: transparent;
}

.checkbox-input-premium:checked+.checkbox-custom-premium::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 900;
    font-size: 0.9rem;
}

.radio-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    min-height: 28px;
}

.radio-input-premium {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom-premium {
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(10, 102, 56, 0.2);
    border-radius: 50%;
    background: white;
    transition: var(--transition);
}

.radio-premium:hover .radio-custom-premium {
    border-color: var(--emerald-base);
}

.radio-input-premium:checked+.radio-custom-premium {
    border-color: var(--emerald-base);
}

.radio-input-premium:checked+.radio-custom-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--gradient-premium);
    border-radius: 50%;
}

/* ========================================
   SWITCH TOGGLE - PREMIUM
   ======================================== */

.switch-premium {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch-input-premium {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider-premium {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 102, 56, 0.1);
    transition: var(--transition);
    border-radius: 34px;
}

.switch-slider-premium::before {
    position: absolute;
    content: '';
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.switch-input-premium:checked+.switch-slider-premium {
    background: var(--gradient-premium);
}

.switch-input-premium:checked+.switch-slider-premium::before {
    transform: translateX(26px);
}

/* ========================================
   FILE UPLOAD - PREMIUM
   ======================================== */

.file-upload-premium {
    position: relative;
    border: 2px dashed rgba(10, 102, 56, 0.2);
    border-radius: var(--radius-lg);
    padding: 60px 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-glass);
}

.file-upload-premium:hover {
    border-color: var(--emerald-base);
    background: rgba(10, 102, 56, 0.05);
}

.file-upload-premium.dragover {
    border-color: var(--emerald-base);
    background: rgba(10, 102, 56, 0.1);
    transform: scale(1.02);
}

.file-input-premium {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-icon-premium {
    font-size: 3rem;
    color: var(--emerald-base);
    margin-bottom: 20px;
}

.file-label-premium {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.file-hint-premium {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========================================
   PROGRESS STEPS - PREMIUM
   ======================================== */

.progress-steps-premium {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 60px 0;
}

.progress-steps-premium::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(10, 102, 56, 0.1);
    z-index: 1;
}

.progress-line-premium {
    position: absolute;
    top: 24px;
    left: 0;
    height: 3px;
    background: var(--gradient-premium);
    z-index: 2;
    transition: width 0.4s ease;
}

.step-premium {
    position: relative;
    z-index: 3;
    text-align: center;
    flex: 1;
}

.step-icon-premium {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid rgba(10, 102, 56, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition);
}

.step-premium.active .step-icon-premium {
    background: var(--gradient-premium);
    color: white;
    border-color: var(--emerald-base);
    transform: scale(1.1);
}

.step-premium.completed .step-icon-premium {
    background: var(--gradient-emerald);
    color: white;
    border-color: var(--emerald-base);
}

.step-label-premium {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-premium.active .step-label-premium {
    color: var(--emerald-base);
    font-weight: 700;
}

/* ========================================
   TIMELINE - PREMIUM
   ======================================== */

.timeline-premium {
    position: relative;
    padding: 40px 0;
}

.timeline-premium::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(10, 102, 56, 0.1);
    transform: translateX(-50%);
}

.timeline-item-premium {
    position: relative;
    width: 50%;
    padding: 0 60px 60px 0;
    margin-bottom: 40px;
}

.timeline-item-premium:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 60px 60px;
}

.timeline-content-premium {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 102, 56, 0.1);
    position: relative;
    transition: var(--transition);
}

.timeline-content-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow-emerald);
    border-color: rgba(10, 102, 56, 0.2);
}

.timeline-marker-premium {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--emerald-base);
    z-index: 2;
}

.timeline-item-premium:nth-child(odd) .timeline-marker-premium {
    right: -10px;
}

.timeline-item-premium:nth-child(even) .timeline-marker-premium {
    left: -10px;
}

.timeline-date-premium {
    font-size: 0.9rem;
    color: var(--emerald-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-title-premium {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.timeline-desc-premium {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   DATA TABLE - PREMIUM
   ======================================== */

.data-table-premium {
    width: 100%;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 102, 56, 0.1);
}

.table-header-premium {
    background: linear-gradient(135deg, rgba(10, 102, 56, 0.05), rgba(212, 175, 55, 0.05));
    padding: 20px 30px;
    border-bottom: 1px solid rgba(10, 102, 56, 0.1);
}

.table-title-premium {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.table-body-premium {
    overflow-x: auto;
}

.table-premium {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.table-premium th {
    padding: 20px 30px;
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(10, 102, 56, 0.02);
    border-bottom: 1px solid rgba(10, 102, 56, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.table-premium td {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(10, 102, 56, 0.05);
    color: var(--text-secondary);
    font-weight: 500;
}

.table-premium tr:hover td {
    background: rgba(10, 102, 56, 0.02);
}

.table-premium tr:last-child td {
    border-bottom: none;
}

.table-actions-premium {
    display: flex;
    gap: 10px;
}

/* ========================================
   CALENDAR - PREMIUM
   ======================================== */

.calendar-premium {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 102, 56, 0.1);
}

.calendar-header-premium {
    padding: 30px;
    background: linear-gradient(135deg, rgba(10, 102, 56, 0.05), rgba(212, 175, 55, 0.05));
    border-bottom: 1px solid rgba(10, 102, 56, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calendar-title-premium {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}