﻿/* ============================================================
   GOLD MACHINE - ANTIGRAVITY DESIGN SYSTEM v2.0
   Industrial Luxury E-commerce Theme - Enhanced Edition
   ============================================================ */

/* ============================================================
   PART 1: CSS VARIABLES - DYNAMIC THEMING SYSTEM
   ============================================================ */
:root {
    /* === Primary Colors === */
    --color-primary: #1a1f2c;
    --color-primary-light: #2a3142;

    /* === Metallic Gold Color Palette === */
    --color-accent: #D4A94A;
    --color-accent-hover: #B8922F;
    --color-accent-light: #F4D87C;
    --color-accent-dark: #8A6E2F;
    --color-gold-shine: #FFD700;
    --color-gold-deep: #9f7928;

    --color-bg-body: #f8f9fa;
    --color-surface: #ffffff;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    /* === RGB Variants for RGBA Usage === */
    --rgb-primary: 26, 31, 44;
    --rgb-accent: 212, 169, 74;
    --rgb-surface: 255, 255, 255;
    --rgb-bg-body: 248, 249, 250;

    /* === Typography === */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* === Spacing & Sizing === */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* === Premium Shadows (Multi-layer Antigravity Effect) === */
    --shadow-float:
        0 2px 4px rgba(var(--rgb-primary), 0.02),
        0 4px 8px rgba(var(--rgb-primary), 0.04),
        0 8px 16px rgba(var(--rgb-primary), 0.06),
        0 16px 32px rgba(var(--rgb-primary), 0.08);
    --shadow-float-hover:
        0 4px 8px rgba(var(--rgb-primary), 0.03),
        0 8px 16px rgba(var(--rgb-primary), 0.06),
        0 16px 32px rgba(var(--rgb-primary), 0.09),
        0 32px 64px rgba(var(--rgb-primary), 0.12);
    --shadow-subtle: 0 2px 8px rgba(var(--rgb-primary), 0.04);
    --shadow-glow: 0 0 20px rgba(212, 169, 74, 0.5);
    --shadow-glow-strong: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(212, 169, 74, 0.4);
    --shadow-gold: 0 4px 15px rgba(212, 169, 74, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    --shadow-inset: inset 0 2px 4px rgba(var(--rgb-primary), 0.06);

    /* === Metallic Gold Gradients === */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #D4A94A 25%, #B8922F 50%, #D4A94A 75%, #FFD700 100%);
    --gradient-gold-shine: linear-gradient(135deg, #FEDB37 0%, #FDB931 15%, #D4A94A 40%, #B8922F 60%, #D4A94A 85%, #FFD700 100%);
    --gradient-gold-text: linear-gradient(135deg, #FFD700 0%, #FFED4E 20%, #D4A94A 45%, #B8922F 55%, #D4A94A 80%, #FFD700 100%);
    --gradient-accent: linear-gradient(135deg, #FEDB37 0%, #D4A94A 50%, #8A6E2F 100%);
    --gradient-accent-reverse: linear-gradient(135deg, #8A6E2F 0%, #D4A94A 50%, #FEDB37 100%);
    --gradient-shine: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(var(--rgb-primary), 0.7) 100%);

    /* === Transitions === */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================================
   PART 2: BASE STYLES - TYPOGRAPHY & BODY
   ============================================================ */
body {
    font-family: var(--font-body);
    color: rgba(var(--rgb-primary), 0.8);
    background-color: var(--color-bg-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--color-accent);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-accent-hover);
}

/* Utility Classes */
.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.text-accent {
    color: var(--color-accent) !important;
}

/* Metallic Gold Text Effect */
.text-gold-metallic {
    background: var(--gradient-gold-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

.text-gold {
    color: var(--color-accent) !important;
    text-shadow: 0 1px 2px rgba(138, 110, 47, 0.3);
}

@keyframes goldShimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.bg-accent {
    background-color: var(--color-accent) !important;
}

/* Metallic Gold Background */
.bg-gold-metallic {
    background: var(--gradient-gold-shine);
    position: relative;
    overflow: hidden;
}

.bg-gold-metallic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: goldSweep 3s ease-in-out infinite;
}

@keyframes goldSweep {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 150%;
    }
}

.text-primary-dark {
    color: var(--color-primary) !important;
}

/* ============================================================
   PART 3: MAIN NAVBAR - GLASSMORPHISM
   ============================================================ */
.top-bar {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    padding: 8px 0;
}

.main-navbar {
    background: rgba(var(--rgb-surface), 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(var(--rgb-primary), 0.05);
    padding: 0.5rem 0;
    transition: all 0.3s ease, transform 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navbar.scrolled {
    background: rgba(var(--rgb-surface), 0.98);
    box-shadow: 0 2px 20px rgba(var(--rgb-primary), 0.06);
    padding: 0.35rem 0;
}

.main-navbar.nav-hidden {
    transform: translateY(-100%);
}

.main-navbar .navbar-brand img {
    height: 40px;
    transition: height 0.3s ease;
}

.main-navbar.scrolled .navbar-brand img {
    height: 32px;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.navbar-brand i {
    color: var(--color-accent);
}

.small-nav .nav-link {
    color: var(--color-primary) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.6rem 1rem !important;
    position: relative;
    letter-spacing: 0.3px;
}

.small-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), rgba(var(--rgb-accent), 0.5));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.small-nav .nav-link:hover::after,
.small-nav .nav-link.active::after {
    transform: scaleX(1);
}

.small-nav .nav-link:hover,
.small-nav .nav-link.active {
    color: var(--color-accent) !important;
}

.action-buttons i {
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: var(--transition-fast);
    cursor: pointer;
}

.action-buttons i:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Language Toggle Buttons */
.language-toggle {
    display: flex;
    gap: 2px;
    background: rgba(var(--rgb-primary), 0.05);
    border-radius: var(--radius-full);
    padding: 3px;
}

.btn-lang {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border: none;
    background: transparent;
    color: rgba(var(--rgb-primary), 0.6);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-lang:hover {
    color: var(--color-primary);
}

.btn-lang.active {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(var(--rgb-accent), 0.3);
}

/* ============================================================
   PART 4: BUTTONS - METALLIC GOLD ACCENT
   ============================================================ */
.btn-accent {
    background: var(--gradient-gold-shine);
    background-size: 200% 100%;
    color: #1a1f2c;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    box-shadow:
        0 4px 15px rgba(212, 169, 74, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(138, 110, 47, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-accent:hover {
    color: #1a1f2c;
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(212, 169, 74, 0.5),
        0 0 50px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(138, 110, 47, 0.3);
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:active {
    transform: translateY(-1px);
}

.btn-outline-accent {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    background: transparent;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-outline-accent:hover {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 8px 25px rgba(var(--rgb-accent), 0.4);
    transform: translateY(-2px);
}

.btn-dark-primary {
    background: var(--color-primary);
    color: #fff;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.btn-dark-primary:hover {
    background: rgba(var(--rgb-primary), 0.9);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--rgb-primary), 0.3);
}

/* ============================================================
   PART 5: PRODUCT CARD - ANTIGRAVITY FLOATING EFFECT
   ============================================================ */
.product-card-modern {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(var(--rgb-primary), 0.05);
    box-shadow: var(--shadow-float);
    transition: var(--transition-smooth);
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float-hover);
    border-color: rgba(var(--rgb-accent), 0.2);
}

.product-img-wrap {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-bg-body) 0%, var(--color-surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.product-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card-modern:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge-new {
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-sale {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.badge-featured {
    background: var(--color-primary);
    color: var(--color-accent);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}


.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
}

.product-card-modern:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--color-surface);
    color: var(--color-primary);
    box-shadow: var(--shadow-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-actions button:hover {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
}

.product-details {
    padding: 1.5rem;
    text-align: center;
}

.product-cat {
    color: rgba(var(--rgb-primary), 0.5);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.product-title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
    line-height: 1.5;
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.15rem;
}

.old-price {
    text-decoration: line-through;
    color: rgba(var(--rgb-primary), 0.35);
    font-weight: 400;
    font-size: 0.9rem;
    margin-right: 8px;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-surface) 0%, rgba(var(--rgb-accent), 0.08) 100%);
    color: var(--color-primary);
    border: none;
    border-top: 1px solid rgba(var(--rgb-accent), 0.1);
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn i {
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: scale(1.2);
}

.product-card-modern:hover .add-to-cart-btn {
    background: var(--gradient-gold-shine);
    color: var(--color-primary);
    box-shadow: 0 -4px 15px rgba(var(--rgb-accent), 0.2);
}

.add-to-cart-btn:hover {
    background: var(--gradient-gold) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--rgb-accent), 0.4);
}

/* ============================================================
   PART 6: CATEGORY CARDS - COMPACT 6-COLUMN LAYOUT
   ============================================================ */
.category-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(var(--rgb-primary), 0.05);
    box-shadow: var(--shadow-float);
    transition: var(--transition-smooth);
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float-hover);
    border-color: rgba(var(--rgb-accent), 0.3);
}

.cat-img-wrapper {
    height: 100px;
    background: linear-gradient(135deg, var(--color-bg-body) 0%, rgba(var(--rgb-accent), 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    padding: 15px;
}

.cat-img-wrapper img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
}

.category-card:hover .cat-img-wrapper {
    background: linear-gradient(135deg, rgba(var(--rgb-accent), 0.1) 0%, rgba(var(--rgb-accent), 0.15) 100%);
}

.category-card h6 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    margin: 0;
    padding: 0.85rem 0.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   PART 7: AUTH CARD - SPLIT SCREEN LUXURY
   ============================================================ */
.auth-card {
    background: var(--color-surface);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(var(--rgb-primary), 0.15),
        0 50px 100px rgba(var(--rgb-primary), 0.1);
}

.auth-bg-image {
    background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 550px;
}

.auth-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(var(--rgb-primary), 0.9) 0%,
            rgba(var(--rgb-primary), 0.7) 50%,
            rgba(var(--rgb-accent), 0.5) 100%);
}

.auth-caption {
    position: relative;
    z-index: 2;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.auth-caption h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.auth-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.auth-form-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-section h3 {
    color: var(--color-primary);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.auth-form-section p {
    color: rgba(var(--rgb-primary), 0.6);
    margin-bottom: 2rem;
}

/* ============================================================
   PART 8: FORM CONTROLS - PREMIUM INPUTS
   ============================================================ */
.form-control {
    background: var(--color-surface);
    border: 1px solid rgba(var(--rgb-primary), 0.1);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.form-control:focus {
    background: var(--color-surface);
    border-color: var(--color-accent);
    box-shadow:
        0 0 0 4px rgba(var(--rgb-accent), 0.1),
        0 4px 12px rgba(var(--rgb-accent), 0.15);
    outline: none;
}

.form-control::placeholder {
    color: rgba(var(--rgb-primary), 0.4);
}

.form-floating>.form-control {
    padding: 1.25rem 1rem 0.625rem;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating>label {
    color: rgba(var(--rgb-primary), 0.5);
    font-family: var(--font-body);
    padding: 1rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--color-accent);
    opacity: 1;
}

.form-select {
    background-color: var(--color-surface);
    border: 1px solid rgba(var(--rgb-primary), 0.1);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.form-select:focus {
    border-color: var(--color-accent);
    box-shadow:
        0 0 0 4px rgba(var(--rgb-accent), 0.1),
        0 4px 12px rgba(var(--rgb-accent), 0.15);
}

.form-check-input:checked {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.form-check-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(var(--rgb-accent), 0.15);
}

/* ============================================================
   PART 9: SWIPER / HERO SLIDER
   ============================================================ */

/* Slider Karartmalarını Kaldırma */

.main-swiper .swiper-slide::after,
.main-swiper .swiper-slide::before {
    display: none !important;
    /* Siyah perdeyi (overlay) gizle */
    content: none !important;
}

.main-swiper .swiper-slide img {
    filter: none !important;
    /* Parlaklık düşüren filtreleri kaldır */
    opacity: 1 !important;
    /* Resmi tam opak yap */
}

/* Antigravity temasından gelen gölgeleri slider resminde istemiyorsak */
.slider-img-raw {
    box-shadow: none !important;
    border-radius: 0 !important;
    /* Slider genelde köşeli olur */
}

.main-swiper {
    height: 650px;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 10;
    max-width: 650px;
}

.slider-content h2 {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.slider-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-accent);
    width: 50px;
    height: 50px;
    background: rgba(var(--rgb-surface), 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-accent);
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* ============================================================
   PART 10: MODERN FOOTER
   ============================================================ */
.modern-footer {
    background: linear-gradient(180deg, #0d0f14 0%, #080a0e 100%);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--rgb-accent), 0.3), transparent);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--color-accent);
}

.footer-description {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--rgb-accent), 0.3);
}

.newsletter-input {
    display: flex;
    gap: 10px;
}

.newsletter-input input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    flex: 1;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-accent);
    box-shadow: none;
    outline: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ============================================================
   PART 11: SECTION STYLING
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: rgba(var(--rgb-primary), 0.6);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), rgba(var(--rgb-accent), 0.3));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ============================================================
   PART 12: CARDS - GENERIC FLOATING
   ============================================================ */
.floating-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(var(--rgb-primary), 0.05);
    box-shadow: var(--shadow-float);
    transition: var(--transition-smooth);
    padding: 2rem;
}

.floating-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float-hover);
}

/* ============================================================
   PART 13: BREADCRUMB
   ============================================================ */
.breadcrumb-modern {
    background: transparent;
    padding: 1rem 0;
}

.breadcrumb-modern .breadcrumb-item a {
    color: rgba(var(--rgb-primary), 0.6);
    font-size: 0.9rem;
}

.breadcrumb-modern .breadcrumb-item a:hover {
    color: var(--color-accent);
}

.breadcrumb-modern .breadcrumb-item.active {
    color: var(--color-primary);
    font-weight: 600;
}

.breadcrumb-modern .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(var(--rgb-primary), 0.3);
}

/* ============================================================
   PART 14: LOADING & ANIMATIONS
   ============================================================ */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(var(--rgb-accent), 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(var(--rgb-accent), 0.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -8px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -4px, 0);
    }

    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out forwards;
}

.animate-bounce {
    animation: bounce 1s ease infinite;
}

/* ============================================================
   PART 14.1: WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    box-shadow:
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 8px 40px rgba(37, 211, 102, 0.2);
    transition: var(--transition-smooth);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 8px 30px rgba(37, 211, 102, 0.5),
        0 12px 50px rgba(37, 211, 102, 0.3);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(1.05);
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

/* WhatsApp Tooltip */
.whatsapp-float::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #25D366;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   PART 15: UTILITIES
   ============================================================ */
.op-1 {
    opacity: 0.1;
}

.op-2 {
    opacity: 0.2;
}

.op-3 {
    opacity: 0.3;
}

.op-5 {
    opacity: 0.5;
}

.op-7 {
    opacity: 0.7;
}

.glass-effect {
    background: rgba(var(--rgb-surface), 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--rgb-primary), 0.08);
}

.glass-dark {
    background: rgba(var(--rgb-primary), 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ============================================================
   PART 16: RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 991px) {
    .main-swiper {
        height: 500px;
    }

    .slider-content h2 {
        font-size: 2.5rem;
    }

    .slider-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .auth-bg-image {
        min-height: 300px;
    }

    .auth-caption h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .main-swiper {
        height: 400px;
    }

    .slider-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .slider-content h2 {
        font-size: 1.75rem;
    }

    .top-bar {
        display: none;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .product-img-wrap {
        height: 220px;
    }

    .auth-card {
        border-radius: var(--radius-md);
    }

    .auth-bg-image {
        min-height: 250px;
    }

    .auth-form-section {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-accent,
    .btn-outline-accent {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .slider-content h2 {
        font-size: 1.5rem;
    }

    .product-details {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.9rem;
        min-height: 42px;
    }

    .newsletter-input {
        flex-direction: column;
    }
}

/* ============================================================
   PREMIUM SLIDER STYLES
   ============================================================ */
.slider-section {
    position: relative;
    overflow: hidden;
}

.main-swiper {
    height: 600px;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(var(--rgb-primary), 0.95) 100%);
}

.main-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.main-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(var(--rgb-primary), 0.6) 0%,
            rgba(var(--rgb-primary), 0.3) 50%,
            rgba(var(--rgb-accent), 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.main-swiper .slider-img-raw {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.main-swiper .swiper-slide-active .slider-img-raw {
    transform: scale(1);
}

/* Slider Content Overlay */
.slider-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 90%;
    color: #fff;
}

.slider-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slider-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Swiper Navigation */
.main-swiper .swiper-button-next,
.main-swiper .swiper-button-prev {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.main-swiper .swiper-button-next::after,
.main-swiper .swiper-button-prev::after {
    font-size: 1.25rem;
    color: #fff;
    font-weight: bold;
}

.main-swiper .swiper-button-next:hover,
.main-swiper .swiper-button-prev:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.main-swiper .swiper-button-next {
    right: 30px;
}

.main-swiper .swiper-button-prev {
    left: 30px;
}

/* Swiper Pagination */
.main-swiper .swiper-pagination {
    bottom: 30px;
}

.main-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 6px;
    transition: var(--transition-fast);
}

.main-swiper .swiper-pagination-bullet-active {
    background: var(--color-accent);
    width: 36px;
    border-radius: 6px;
}

/* Slider Stats/Features Bar */
.slider-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(var(--rgb-primary), 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(var(--rgb-accent), 0.3);
}

.slider-stats .stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-stats .stat-item:last-child {
    border-right: none;
}

.slider-stats .stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.slider-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* Slider Responsive */
@media (max-width: 991px) {
    .main-swiper {
        height: 500px;
    }

    .slider-content h2 {
        font-size: 2.5rem;
    }

    .slider-content p {
        font-size: 1rem;
    }

    .main-swiper .swiper-button-next,
    .main-swiper .swiper-button-prev {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 576px) {
    .main-swiper {
        height: 400px;
    }

    .slider-content h2 {
        font-size: 1.75rem;
    }

    .slider-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .main-swiper .swiper-button-next,
    .main-swiper .swiper-button-prev {
        display: none !important;
    }
}

/* ============================================================
   LIGHTBOX - PRODUCT IMAGE GALLERY
   ============================================================ */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.5rem;
}

.lightbox-thumb {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.lightbox-thumb:hover,
.lightbox-thumb.active {
    border-color: var(--color-accent);
    opacity: 1;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-thumb {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
}

/* Image Zoom Cursor */
.zoomable-image {
    cursor: zoom-in;
}

.lightbox-image {
    cursor: zoom-out;
}

/* ============================================================
   MEGA MENU STYLES
   ============================================================ */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    max-width: 900px;
    margin: 0 auto;
    background: white;
}

.mega-menu-inner {
    background: white;
}

.mega-menu-sidebar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-right: 1px solid #dee2e6;
}

.mega-quick-link {
    color: var(--color-primary);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 14px;
}

.mega-quick-link:hover {
    background: var(--color-accent);
    color: white;
    transform: translateX(5px);
}

.mega-quick-link i {
    width: 20px;
    color: var(--color-accent);
    transition: color 0.2s ease;
}

.mega-quick-link:hover i {
    color: white;
}

.mega-category-link {
    display: block;
    color: var(--color-primary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.mega-category-link:hover {
    background: rgba(var(--rgb-accent), 0.1);
    color: var(--color-accent);
    transform: translateX(3px);
}

.mega-category-link i {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mega-category-link:hover i {
    opacity: 1;
}

/* Mega Menu Animation */
.mega-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block !important;
}

.mega-dropdown:hover .dropdown-menu,
.mega-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menu Responsive */
@media (max-width: 991px) {
    .mega-menu {
        max-width: 100%;
        position: relative !important;
    }

    .mega-menu-sidebar {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }

    .mega-dropdown .dropdown-menu {
        display: none !important;
    }

    .mega-dropdown .dropdown-menu.show {
        display: block !important;
    }
}

/* ============================================================
   FEATURES BAR - Homepage Highlights Section
   ============================================================ */
.features-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.features-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 169, 74, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 169, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feature-item {
    padding: 1rem 0.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 169, 74, 0.3), transparent);
}

@media (max-width: 767px) {
    .feature-item::after {
        display: none;
    }
}

.feature-icon {
    color: var(--color-accent);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(212, 169, 74, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(212, 169, 74, 0.5));
}

.feature-title {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.feature-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.3;
}