/* ============================================
   LAES - DISEÑO MEJORADO Y LIMPIO
   ============================================ */

:root {
    --primary-color: #F5A623;
    --secondary-color: #1A1A1A;
    --accent-color: #FFB84D;
    --dark-color: #000000;
    --light-color: #F8F9FA;
    --text-color: #2C2C2C;
    --text-light: #6B6B6B;
    --border-color: #E0E0E0;
    --success-color: #27AE60;
    --warning-color: #F5A623;
    --error-color: #E74C3C;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #F5A623 0%, #FFB84D 100%);
    --gradient-secondary: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SECTION STYLES - CONSISTENT SPACING
   ============================================ */

section {
    padding: 50px 0;
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0.2) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   HERO SECTION - IMPROVED
   ============================================ */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
    margin-top: 90px;
    padding: 50px 0;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 26, 26, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 22px;
    font-weight: 500;
    font-size: 0.85rem;
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
    transition: opacity 0.3s;
}

.hero-scroll a:hover {
    opacity: 1;
}

/* Ocultar flecha hacia abajo para evitar solapamientos */
.hero-scroll {
    display: none;
}

/* Contact title white */
.contact-section .section-title {
    color: #fff;
}

/* Anchor scroll offset so titles aren't hidden under navbar */
section[id] {
    scroll-margin-top: 120px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   BUTTONS - IMPROVED
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

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

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

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

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

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-text:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
    background: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 25px;
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card:hover .benefit-icon::after {
    opacity: 0.3;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.benefit-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: var(--light-color);
    opacity: 0.3;
}

/* ============================================
   CATEGORIES SHOWCASE
   ============================================ */

.categories-showcase {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-showcase-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
}

.category-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: opacity 0.3s;
}

.category-showcase-card:hover .category-image::before {
    opacity: 0.8;
}

.category-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s;
}

.category-showcase-card:hover .category-icon {
    transform: scale(1.2) rotate(10deg);
    color: rgba(255, 255, 255, 0.5);
}

.category-content {
    padding: 30px;
}

.category-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.category-content>p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.category-features {
    list-style: none;
    margin-bottom: 25px;
}

.category-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.category-features i {
    color: var(--success-color);
    font-size: 0.9rem;
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */

.featured-products-section {
    background: var(--light-color);
}

.featured-products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.featured-product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-product-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--light-color);
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.featured-product-card:hover .featured-overlay {
    opacity: 1;
}

.featured-product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(245, 166, 35, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.featured-product-info h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-product-info>p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.featured-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
    background: var(--white);
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 1.1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    align-items: stretch;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: var(--light-color);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-category {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 45px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-add-cart {
    padding: 10px 24px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 26, 26, 0.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--light-color);
    position: relative;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 26, 26, 0.05) 0%, transparent 50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    align-items: center;
}

.about-main-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.about-image-wrapper {
    height: 500px;
    background: var(--gradient-secondary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-decoration {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.15);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-stats-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.mini-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.mini-stat-label {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
}

.about-text {
    text-align: left;
}

.about-intro {
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.8;
}

.about-intro p {
    margin-bottom: 15px;
}

/* Tabs Styles */
.about-tabs {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.tabs-nav {
    display: flex;
    background: var(--light-color);
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 18px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
}

.tab-btn:hover {
    background: rgba(245, 166, 35, 0.05);
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    background: var(--white);
    border-bottom-color: var(--primary-color);
}

.tab-btn i {
    font-size: 1.2rem;
}

.tabs-content {
    padding: 35px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-pane h3 i {
    color: var(--primary-color);
}

.tab-pane p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Valores Grid */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.valor-item {
    padding: 20px;
    background: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.valor-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.valor-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.valor-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.valor-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.about-text .section-tag {
    margin-bottom: 20px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-description {
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.highlight-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.about-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    background: var(--white);
    padding: 80px 0;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.trust-item h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--light-color);
    position: relative;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: var(--gradient-dark);
}

.contact-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-info-card.highlight h3,
.contact-info-card.highlight p {
    color: var(--white);
}

.contact-info-card.highlight .contact-link {
    color: var(--white);
    border-color: var(--white);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-card.highlight .contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.contact-link:hover {
    gap: 10px;
    border-bottom-color: currentColor;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-input-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-input-group label i {
    color: var(--primary-color);
}

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--light-color);
}

.form-input-group input:focus,
.form-input-group select:focus,
.form-input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
}

.form-input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-color);
    color: #ccc;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none !important;
    border: none;
    outline: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8);
    }
}

/* ============================================
   HEADER (inherited from original)
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    margin-right: 25px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.navbar {
    padding: 18px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-bar {
    display: block;
    width: 100%;
    padding: 36px 0;
    /* 3x grosor aproximado */
    background: #000;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
}

.promo-bar .cards img {
    height: 26px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
}

.promo-bar i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark-color);
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cart-link {
    position: relative;
    font-size: 1.4rem;
}

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

/* User Menu Styles */
.user-menu-wrapper .user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0.2) 100%);
    border-radius: 50px;
    transition: all 0.3s;
}

.user-menu-wrapper .user-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.user-menu-wrapper .user-link i {
    font-size: 1.3rem;
}

.user-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.login-link {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}

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

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Pantallas medianas-grandes (1200-1366px) */
@media (max-width: 1366px) {
    .container {
        max-width: 1100px;
    }

    .hero-title {
        font-size: 2.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    section {
        padding: 45px 0;
    }
}

/* Pantallas medianas (1024-1199px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .logo-image {
        height: 56px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    section {
        padding: 40px 0;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 45px 0;
    }

    .hero {
        min-height: 65vh;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .benefit-card h3 {
        font-size: 1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    .category-showcase-card h3 {
        font-size: 1.1rem;
    }

    .category-showcase-card p {
        font-size: 0.85rem;
    }

    .product-card {
        font-size: 0.9rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .btn-large {
        font-size: 1rem;
        padding: 12px 28px;
    }

    .top-bar {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .login-link,
    .user-name {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .benefits-grid,
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row-group {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo-image {
        height: 44px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s;
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .about-image-wrapper {
        height: 350px;
    }

    .about-decoration {
        font-size: 10rem;
    }

    .trust-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    .section-tag {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 0.95rem;
    }

    .benefit-card p {
        font-size: 0.8rem;
    }

    .category-showcase-card h3 {
        font-size: 1rem;
    }

    .category-showcase-card p {
        font-size: 0.8rem;
    }

    .product-title {
        font-size: 0.95rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 9px 18px;
    }

    .contact-form-wrapper,
    .contact-info-cards {
        padding: 25px 20px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .top-bar {
        font-size: 0.7rem;
    }

    .container {
        padding: 0 15px;
    }

    font-size: 1.8rem;
    bottom: 20px;
    right: 20px;
}
}

/* Map Modal */
.map-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.map-modal.active {
    display: flex;
}

.map-modal-content {
    background: #fff;
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--dark-color);
    color: #fff;
}

.map-modal-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.map-modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.map-frame {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.no-products i {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.3;
}


   
/* ============================================
   PROMO BANNERS - CINTAS PROMOCIONALES
   ============================================ */

.promo-banner {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: 50px 0;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.promo-banner .container {
    position: relative;
    z-index: 1;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.promo-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

.promo-icon i {
    font-size: 40px;
    color: var(--white);
}

.promo-info {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.promo-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.promo-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.promo-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.promo-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.promo-logos .logo-mp {
    height: 45px;
    filter: brightness(0) invert(1);
}

.promo-logos .cards-group {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.promo-logos .card-logo {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.promo-logos .card-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Shipping Banner Specific */
.promo-banner--shipping {
    background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
}

.promo-banner--shipping::before {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.promo-banner--shipping .promo-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Payments Banner Specific */
.promo-banner--payments {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
}

.promo-banner--payments::before {
    background: radial-gradient(circle at 50% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
}

.promo-banner--payments .promo-icon {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

/* Responsive - Promo Banners */
@media (max-width: 768px) {
    .promo-banner {
        padding: 35px 0;
        margin: 25px 0;
    }

    .promo-content {
        gap: 25px;
        flex-direction: column;
        text-align: center;
    }

    .promo-icon {
        width: 70px;
        height: 70px;
    }

    .promo-icon i {
        font-size: 32px;
    }

    .promo-info h3 {
        font-size: 1.4rem;
    }

    .promo-info p {
        font-size: 0.9rem;
    }

    .promo-logos {
        justify-content: center;
        gap: 20px;
    }

    .promo-logos .logo-mp {
        height: 35px;
    }

    .promo-logos .card-logo {
        height: 26px;
    }

    .promo-logos .cards-group {
        gap: 10px;
        padding: 10px 15px;
    }
}

/* ============================================
   PASSWORD TOGGLE STYLES
   ============================================ */
.input-wrapper {
    position: relative;
}

.input-wrapper .toggle-password,
.input-wrapper button[id*="toggle"],
.input-wrapper button[id*="Toggle"] {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    color: #999 !important;
    cursor: pointer !important;
    padding: 8px !important;
    font-size: 1.1rem !important;
    transition: color 0.3s !important;
    z-index: 2 !important;
}

.input-wrapper .toggle-password:hover,
.input-wrapper button[id*="toggle"]:hover,
.input-wrapper button[id*="Toggle"]:hover {
    color: #666 !important;
}