/* Lentesxel Custom Styles - Light, Fresh, Minimalist with Colorful Gradients */

:root {
    --lx-gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --lx-gradient-secondary: linear-gradient(135deg, #4E65FF 0%, #92EFFD 100%);
    --lx-gradient-accent: linear-gradient(135deg, #A8FF78 0%, #78FFD6 100%);
    --lx-bg-light: #F9FAFB;
    --lx-text-main: #2D3748;
    --lx-text-muted: #718096;
    --lx-shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.05);
    --lx-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --lx-radius: 12px;
}

body {
    background-color: var(--lx-bg-light);
    color: var(--lx-text-main);
    font-family: 'Inter', 'Outfit', sans-serif !important;
}

/* Top Bar Promotion */
.lentesxel-top-bar {
    background: var(--lx-gradient-primary);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 100;
}
.lentesxel-top-bar p {
    margin: 0;
    line-height: 1.4;
}

/* Buttons Modernization */
.button, 
.ast-button, 
input[type="submit"], 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
    background: var(--lx-gradient-secondary) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: var(--lx-shadow-soft) !important;
    transition: all 0.3s ease !important;
}

.button:hover, 
.ast-button:hover, 
input[type="submit"]:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 25px rgba(78, 101, 255, 0.3) !important;
    background: linear-gradient(135deg, #5B70FF 0%, #A0F3FF 100%) !important;
}

/* Product Cards Hover Animations (Levitate + Zoom) */
.ast-article-post, 
.woocommerce-js ul.products li.product, 
.woocommerce ul.products li.product {
    background: #ffffff !important;
    border-radius: var(--lx-radius) !important;
    box-shadow: var(--lx-shadow-soft) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    overflow: hidden !important;
    border: 1px solid rgba(0,0,0,0.02) !important;
}

.ast-article-post:hover, 
.woocommerce-js ul.products li.product:hover, 
.woocommerce ul.products li.product:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--lx-shadow-hover) !important;
}

/* Image Zoom */
.woocommerce ul.products li.product img,
.ast-article-post .ast-article-image-container img {
    transition: transform 0.5s ease !important;
}

.woocommerce ul.products li.product:hover img,
.ast-article-post:hover .ast-article-image-container img {
    transform: scale(1.08) !important;
}

/* Trust Section in Footer */
.lentesxel-trust-section {
    padding: 60px 20px;
    background: white;
    border-radius: var(--lx-radius);
    margin: 40px auto;
    box-shadow: var(--lx-shadow-soft);
}
.lx-trust-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 40px;
}
.lx-feature {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    background: var(--lx-bg-light);
    border-radius: var(--lx-radius);
    transition: transform 0.3s ease;
}
.lx-feature:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255,107,107,0.05) 0%, rgba(78,101,255,0.05) 100%);
    box-shadow: var(--lx-shadow-soft);
}
.lx-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
}
.lx-feature h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--lx-text-main);
    font-weight: 700;
}
.lx-feature p {
    margin: 0;
    color: var(--lx-text-muted);
    font-size: 14px;
}
.lx-seo-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--lx-text-muted);
    line-height: 1.8;
    font-size: 15px;
}
.lx-seo-text strong {
    color: var(--lx-text-main);
}

/* Glassmorphism elements for emphasis */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--lx-radius);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Outfit', sans-serif !important;
    letter-spacing: -0.5px !important;
}

/* Price color modernization */
.woocommerce div.product p.price, .woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
    color: #FF6B6B !important;
    font-weight: 700 !important;
}
