﻿/* ==========================
   ROCKY SIMULATORS CUSTOM CSS
   Neon Green Gamer Theme
   ========================== */

/* Configurator Area */
.al-config-area {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.al-config-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,255,68,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.5;
}

.al-config-container {
    position: relative;
    z-index: 1;
}

.al-config-header {
    text-align: center;
    margin-bottom: 50px;
}

.al-config-header .subtitle {
    color: #00ff44;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.al-config-header .subtitle::before,
.al-config-header .subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #00ff44;
    box-shadow: 0 0 10px #00ff44;
}

.al-config-header h2 {
    color: #fff !important;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 68, 0.5);
}

.al-config-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.al-config-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.al-config-step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
}

.al-config-step.active {
    color: #00ff44;
}

.al-config-step .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.al-config-step.active .step-num {
    background: #00ff44;
    border-color: #00ff44;
    color: #000;
    box-shadow: 0 0 20px #00ff44;
}

.al-config-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .al-config-main {
        grid-template-columns: 1fr;
    }
}

.al-config-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.al-config-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.al-config-option:hover {
    border-color: #00ff44;
    background: rgba(0, 255, 68, 0.05);
}

.al-config-option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.al-config-option-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00ff44, #00cc33);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.4);
}

.al-config-option-title {
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 !important;
}

.al-config-option select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(0, 255, 68, 0.2) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2300ff44' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 24px !important;
}

.al-config-option select:focus {
    border-color: #00ff44 !important;
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.3);
}

.al-config-option select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.al-config-preview-card {
    background: linear-gradient(145deg, #252525, #1a1a1a);
    border: 2px solid rgba(0, 255, 68, 0.3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.al-config-preview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.al-config-preview-image {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}

.al-config-preview-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.al-config-preview-image:hover img {
    transform: scale(1.05);
}

.al-config-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.al-config-summary-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 15px;
}

.al-config-summary-item label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.al-config-summary-item span {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.al-config-total-box {
    background: linear-gradient(135deg, #00ff44, #00cc33);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 68, 0.4);
}

.al-config-total-label {
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.al-config-total-price {
    color: #000;
    font-size: 42px;
    font-weight: 800;
    font-style: italic;
}

.al-config-total-price span {
    font-size: 24px;
    opacity: 0.8;
}

.al-config-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.al-config-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.al-config-badge i {
    color: #00ff44;
}

.al-config-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.al-config-btn {
    flex: 1;
    min-width: 180px;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.al-config-btn-primary {
    background: linear-gradient(135deg, #00ff44, #00cc33);
    color: #000 !important;
    border: none;
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.5);
}

.al-config-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 68, 0.6);
}

.al-config-btn-secondary {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.al-config-btn-secondary:hover {
    border-color: #00ff44;
    background: rgba(0, 255, 68, 0.1);
}

.al-config-upsell {
    margin-top: 20px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    color: #ffcc00;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.al-config-upsell i {
    font-size: 24px;
}

/* Compare Area */
.al-compare-area {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 50px 30px;
    border-radius: 20px;
    margin: 60px 0;
    border: 2px solid rgba(0, 255, 68, 0.2);
    box-shadow: 0 0 40px rgba(0, 255, 68, 0.1);
}

.al-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .al-compare-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .al-compare-grid {
        grid-template-columns: 1fr;
    }
}

.al-compare-pill {
    background: #00ff44;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.al-compare-card {
    background: rgba(0, 255, 68, 0.05);
    border: 2px solid rgba(0, 255, 68, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.al-compare-card:hover {
    border-color: #00ff44;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 68, 0.2);
}

.al-compare-title-strong {
    color: #00ff44;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 255, 68, 0.5);
}

.al-compare-price {
    font-size: 32px;
    font-weight: 800;
    color: #00ff44;
    margin: 15px 0;
    text-shadow: 0 0 20px rgba(0, 255, 68, 0.5);
}

.al-compare-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.al-compare-list li {
    color: #ccc;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.al-compare-list i {
    color: #00ff44;
}

.al-compare-cta {
    background: linear-gradient(135deg, #00ff44, #00cc33);
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.4);
}

.al-compare-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 68, 0.6);
    color: #000;
}

/* Hero Styles */
.al-hero-badge {
    background: rgba(0, 255, 68, 0.1);
    border: 1px solid #00ff44;
    color: #00ff44;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 8px 8px 0;
    box-shadow: 0 0 15px rgba(0, 255, 68, 0.2);
}

.al-hero-social-proof .dot {
    width: 12px;
    height: 12px;
    background: #00ff44;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff44;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Testimonials */
.al-testimonials-area {
    background: linear-gradient(180deg, #e8ecef 0%, #dce1e5 100%);
    position: relative;
    overflow: hidden;
}

.al-testimonials-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00ff44, #00cc33, #00ff44);
}

.al-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.al-testimonials-header .subtitle {
    color: #00ff44;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.al-testimonials-header .subtitle::before,
.al-testimonials-header .subtitle::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #00ff44;
}

.al-testimonials-header h2 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    color: #111 !important;
    margin-bottom: 15px;
}

.al-testimonials-header p {
    color: #555;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.al-testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.al-testimonials-stat {
    text-align: center;
}

.al-testimonials-stat-number {
    font-size: 56px;
    font-weight: 800;
    font-style: italic;
    color: #00ff44;
    line-height: 1;
    display: block;
    text-shadow: 0 0 20px rgba(0, 255, 68, 0.5);
}

.al-testimonials-stat-label {
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.al-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .al-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .al-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .al-testimonials-stats {
        gap: 30px;
    }

    .al-testimonials-stat-number {
        font-size: 42px;
    }
}

.al-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.al-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-bottom-color: #00ff44;
}

.al-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: #00ff44;
    opacity: 0.15;
    line-height: 1;
}

.al-testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.al-testimonial-rating i {
    color: #ffcc00;
    font-size: 16px;
}

.al-testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.al-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.al-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00ff44;
    box-shadow: 0 0 15px rgba(0, 255, 68, 0.3);
}

.al-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.al-testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111 !important;
    margin: 0 0 4px 0 !important;
    text-transform: none !important;
    font-style: normal !important;
}

.al-testimonial-info span {
    font-size: 13px;
    color: #666;
}

.al-testimonial-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, #00ff44, #00cc33);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.al-testimonial-featured {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .al-testimonial-featured {
        grid-template-columns: 1fr;
    }
}

.al-testimonial-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000;
}

.al-testimonial-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.al-testimonial-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #00ff44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.al-testimonial-video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #00cc33;
}

.al-testimonial-featured-content {
    color: #fff;
}

.al-testimonial-featured-content .al-testimonial-rating i {
    font-size: 20px;
}

.al-testimonial-featured-content .al-testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.8;
}

.al-testimonial-featured-content .al-testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.al-testimonial-featured-content .al-testimonial-info h4 {
    color: #fff !important;
}

.al-testimonial-featured-content .al-testimonial-info span {
    color: rgba(255, 255, 255, 0.6);
}

.al-testimonial-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 68, 0.2);
    color: #00ff44;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Positions Area */
.al-positions-area {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.al-positions-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 68, 0.1) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(0, 255, 68, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.al-positions-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.al-positions-header .subtitle {
    color: #00ff44;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.al-positions-header .subtitle::before,
.al-positions-header .subtitle::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #00ff44;
    box-shadow: 0 0 10px #00ff44;
}

.al-positions-header h2 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    color: #fff !important;
    margin-bottom: 15px;
}

.al-positions-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.al-positions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .al-positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .al-positions-grid {
        grid-template-columns: 1fr;
    }

    .al-positions-header h2 {
        font-size: 32px;
    }
}

.al-position-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Hace que todas las cards tengan la misma altura */
    display: flex;
    flex-direction: column;
}

.al-position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color, #00ff44), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.al-position-card:hover::before {
    opacity: 1;
}

.al-position-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--card-color, #00ff44);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.al-position-card.gt {
    --card-color: #00ff44;
}

.al-position-card.rally {
    --card-color: #00ffaa;
}

.al-position-card.grandsport {
    --card-color: #44ff88;
}

.al-position-card.formula {
    --card-color: #00ff66;
}

.al-position-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--card-color, #00ff44), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    position: relative;
}

.al-position-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--card-color, #00ff44);
    opacity: 0.3;
}

.al-position-title {
    color: #fff !important;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 8px !important;
}

.al-position-subtitle {
    color: var(--card-color, #00ff44);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.al-position-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 70px;
    /* Altura mínima para uniformizar */
    flex-grow: 1;
    /* Permite que crezca para llenar espacio */
}

.al-position-cockpit {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.al-position-cockpit-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.al-position-cockpit-name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.al-position-image {
    width: 100%;
    height: 150px;
    /* Altura fija para uniformizar */
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s;
}

.al-position-card:hover .al-position-image {
    transform: scale(1.08);
}

.al-position-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.al-position-feature {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.al-position-posture {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.al-position-card:hover .al-position-posture {
    border-color: var(--card-color, #00ff44);
}

.al-position-posture-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.al-position-posture-img {
    width: 100%;
    height: 180px;
    /* Altura fija uniforme para todas las posturas */
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.al-position-posture-placeholder {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 32px;
}

/* Gallery Slider */
.al-gallery-slider-area {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.al-gallery-slider-area::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00ff44, #00cc33, #00ff44);
}

.al-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.al-gallery-header .subtitle {
    color: #00ff44;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.al-gallery-header .subtitle::before,
.al-gallery-header .subtitle::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #00ff44;
    box-shadow: 0 0 10px #00ff44;
}

.al-gallery-header h2 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    color: #fff !important;
    margin-bottom: 15px;
}

.al-gallery-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.al-gallery-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 68, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.al-gallery-slides {
    display: flex;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
}

.al-gallery-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
    overflow: hidden;
}

.al-gallery-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ff44, #00ff88, #00ff44);
    background-size: 200% 100%;
    animation: progressGradient 2s linear infinite;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px #00ff44;
}

@keyframes progressGradient {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.al-gallery-slide {
    min-width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.al-gallery-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 6s ease-out;
}

.al-gallery-slide.active img {
    animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

@media (max-width: 767px) {
    .al-gallery-slide img {
        height: 320px;
    }

    .al-gallery-header h2 {
        font-size: 28px;
    }
}

.al-gallery-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 35px 35px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.al-gallery-slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 68, 0.5), transparent);
}

.al-gallery-slide-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.al-gallery-slide-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.al-gallery-slide-desc::before {
    content: '';
    width: 20px;
    height: 2px;
    background: #00ff44;
}

.al-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 68, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.al-gallery-nav:hover {
    background: #00ff44;
    border-color: #00ff44;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 30px rgba(0, 255, 68, 0.6);
    color: #000;
}

.al-gallery-prev {
    left: 25px;
}

.al-gallery-next {
    right: 25px;
}

.al-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 35px;
}

.al-gallery-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.al-gallery-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.al-gallery-dot.active {
    background: #00ff44;
    border-color: #00ff44;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 68, 0.6);
}

.al-gallery-dot.active::before {
    border-color: rgba(0, 255, 68, 0.3);
    animation: dotPulse 2s ease-out infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.al-gallery-dot:hover {
    background: rgba(0, 255, 68, 0.5);
    border-color: rgba(0, 255, 68, 0.5);
}

.al-gallery-thumbs {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.al-gallery-thumb {
    width: 110px;
    height: 75px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
}

.al-gallery-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 68, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.al-gallery-thumb.active {
    opacity: 1;
    border-color: #00ff44;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 68, 0.4);
}

.al-gallery-thumb:hover {
    opacity: 0.85;
    transform: translateY(-3px) scale(1.05);
}

.al-gallery-thumb:hover::before {
    opacity: 1;
}

.al-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.al-gallery-thumb:hover img {
    transform: scale(1.1);
}

.al-gallery-counter {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
}

.al-gallery-counter span {
    color: #00ff44;
}

/* FAQ Area */
.al-faq-area {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.al-faq-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00ff44, #00cc33, #00ff44, transparent);
}

.al-faq-area::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 68, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.al-faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.al-faq-header .subtitle {
    color: #00ff44;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.al-faq-header .subtitle::before,
.al-faq-header .subtitle::after {
    content: '';
    width: 50px;
    height: 2px;
}

.al-faq-header .subtitle::before {
    background: linear-gradient(90deg, transparent, #00ff44);
}

.al-faq-header .subtitle::after {
    background: linear-gradient(90deg, #00ff44, transparent);
}

.al-faq-header h2 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    color: #fff !important;
    margin-bottom: 15px;
}

.al-faq-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.al-faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.al-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.al-faq-item:hover {
    border-color: rgba(0, 255, 68, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(5px);
}

.al-faq-item[open] {
    border-color: #00ff44;
    background: linear-gradient(135deg, rgba(0, 255, 68, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 68, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.al-faq-item summary {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    list-style: none;
    transition: all 0.3s;
    position: relative;
}

.al-faq-item summary::-webkit-details-marker {
    display: none;
}

.al-faq-item summary:hover {
    color: #66ff88;
}

.al-faq-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0, 255, 68, 0.2), rgba(0, 255, 68, 0.05));
    border: 1px solid rgba(0, 255, 68, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff44;
    font-size: 18px;
    transition: all 0.3s;
}

.al-faq-item[open] .al-faq-icon {
    background: #00ff44;
    color: #000;
    border-color: #00ff44;
    box-shadow: 0 5px 20px rgba(0, 255, 68, 0.4);
}

.al-faq-toggle {
    margin-left: auto;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: relative;
}

.al-faq-toggle::before,
.al-faq-toggle::after {
    content: '';
    position: absolute;
    background: #00ff44;
    transition: all 0.3s;
}

.al-faq-toggle::before {
    width: 12px;
    height: 2px;
}

.al-faq-toggle::after {
    width: 2px;
    height: 12px;
}

.al-faq-item[open] .al-faq-toggle {
    background: rgba(0, 255, 68, 0.2);
    border-color: #00ff44;
    transform: rotate(45deg);
}

.al-faq-content {
    padding: 0 30px 24px 94px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.al-faq-content p {
    margin: 0;
}

.al-faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(0, 255, 68, 0.3);
    border-radius: 20px;
}

.al-faq-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 20px;
}

.al-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00ff44, #00cc33);
    color: #000;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 255, 68, 0.3);
}

.al-faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 68, 0.4);
    color: #000;
}

@media (max-width: 767px) {
    .al-faq-header h2 {
        font-size: 28px;
    }

    .al-faq-item summary {
        padding: 20px;
        font-size: 15px;
        gap: 15px;
    }

    .al-faq-content {
        padding: 0 20px 20px 79px;
    }

    .al-faq-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* ==========================
   TYPOGRAPHY & NAVIGATION
   ========================== */

/* Racing Typography */
body {
    font-family: 'Rajdhani', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700;
}

/* Header & Navigation Styles */
.tp-header-area {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 255, 68, 0.2);
}

.tp-header-area.sticky {
    box-shadow: 0 5px 30px rgba(0, 255, 68, 0.15);
}

.tp-main-menu ul li a {
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.tp-main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00ff44, #00cc33);
    transition: width 0.3s;
    box-shadow: 0 0 10px #00ff44;
}

.tp-main-menu ul li a:hover,
.tp-main-menu ul li a.active {
    color: #00ff44 !important;
    text-shadow: 0 0 10px rgba(0, 255, 68, 0.5);
}

.tp-main-menu ul li a:hover::after {
    width: 100%;
}

.tp-header-pb-cart-icon svg path {
    stroke: #00ff44;
    transition: all 0.3s;
}

.tp-header-pb-cart-icon:hover svg path {
    stroke: #00ff88;
    filter: drop-shadow(0 0 5px #00ff44);
}

.tp-header-pb-cart-count {
    background: linear-gradient(135deg, #00ff44, #00cc33) !important;
    color: #000 !important;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 255, 68, 0.5);
}

.tp-header-pb-helpline-numbar a {
    color: #00ff44 !important;
    text-shadow: 0 0 10px rgba(0, 255, 68, 0.3);
}

.tp-header-pb-helpline-numbar a:hover {
    color: #00ff88 !important;
}

/* Footer Styles */
.al-footer-shop-area {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 3px solid #00ff44;
    box-shadow: 0 -5px 30px rgba(0, 255, 68, 0.1);
    position: relative;
}

.al-footer-shop-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff44, #00cc33, #00ff44, transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.al-footer-shop-widget-title {
    color: #00ff44 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.al-footer-shop-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00ff44, transparent);
    box-shadow: 0 0 10px #00ff44;
}

.al-footer-shop-widget ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.al-footer-shop-widget ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00ff44;
    opacity: 0;
    transition: all 0.3s;
}

.al-footer-shop-widget ul li a:hover {
    color: #00ff44 !important;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 255, 68, 0.5);
}

.al-footer-shop-widget ul li a:hover::before {
    opacity: 1;
}

.al-footer-shop-talk h4 a {
    color: #00ff44 !important;
    text-shadow: 0 0 15px rgba(0, 255, 68, 0.5);
}

.al-footer-shop-contact-icon svg path {
    stroke: #00ff44;
}

.al-footer-shop-contact a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s;
}

.al-footer-shop-contact a:hover {
    color: #00ff44 !important;
    text-shadow: 0 0 10px rgba(0, 255, 68, 0.3);
}

.al-footer-shop-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 68, 0.1);
    border: 2px solid rgba(0, 255, 68, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00ff44;
    transition: all 0.3s;
    margin-right: 10px;
}

.al-footer-shop-social a:hover {
    background: #00ff44;
    color: #000;
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 20px rgba(0, 255, 68, 0.5);
}

.al-shop-btn {
    background: linear-gradient(135deg, #00ff44, #00cc33);
    color: #000 !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0, 255, 68, 0.3);
}

.al-shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 68, 0.5);
    color: #000 !important;
}

.al-shop-btn-border {
    background: transparent;
    border: 2px solid #00ff44;
    color: #00ff44 !important;
}

.al-shop-btn-border:hover {
    background: rgba(0, 255, 68, 0.1);
    color: #00ff44 !important;
}

/* Offcanvas Sidebar */
.tp-offcanvas {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-left: 3px solid #00ff44;
}

.tp-offcanvas-title {
    color: #00ff44 !important;
    text-shadow: 0 0 15px rgba(0, 255, 68, 0.5);
}

.tp-offcanvas p {
    color: rgba(255, 255, 255, 0.7);
}

.close-btn {
    color: #00ff44 !important;
    border: 2px solid #00ff44;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-btn:hover {
    background: #00ff44;
    color: #000 !important;
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.5);
}

/* Header Help Section - Light Theme Fix */
.tp-header-pb-helpline {
    border-left: 2px solid rgba(0, 255, 68, 0.3);
}

.tp-header-pb-helpline-numbar span {
    color: #00ff44 !important;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 255, 68, 0.3);
}

.tp-header-area {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%) !important;
}

.tp-header-area .tp-text-common-black-1 {
    color: #fff !important;
}

.tp-header-pb-logobg {
    background: transparent !important;
}

/* Hero Slides - Light Background Fix */
.al-hero-shop-item[data-bg-color="#f4f1ea"] {
    background-color: #f0f2f5 !important;
}

.swiper-slide[data-bg-color="#f4f1ea"] {
    background-color: #f0f2f5 !important;
}

.al-hero-shop-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%) !important;
}

.al-hero-shop-content span {
    color: #00ff44 !important;
    text-shadow: 0 0 10px rgba(0, 255, 68, 0.5);
}

.al-hero-shop-title {
    color: #111 !important;
}

/* Product Area Background */
.tp-product-area {
    background: linear-gradient(180deg, #f5f7fa 0%, #eef1f4 100%);
}

.tp-product-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.tp-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 68, 0.15);
}

.tp-product-add-cart-btn-large {
    background: linear-gradient(135deg, #00ff44, #00cc33) !important;
    color: #000 !important;
    font-weight: 700;
}

.tp-product-add-cart-btn-large:hover {
    box-shadow: 0 5px 20px rgba(0, 255, 68, 0.5);
}

.product-discount {
    background: #00ff44 !important;
    color: #000 !important;
    font-weight: 700;
}

.product-discount.on-sale {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a) !important;
    color: #fff !important;
}

/* Section Title Styling */
.al-section-shop-subtitle {
    color: #00ff44 !important;
}

.al-section-shop-title {
    color: #111 !important;
}

.al-product-tab .nav-link {
    color: #555 !important;
    border: 2px solid transparent;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s;
}

.al-product-tab .nav-link:hover {
    border-color: rgba(0, 255, 68, 0.3);
    color: #00ff44 !important;
}

.al-product-tab .nav-link.active {
    background: linear-gradient(135deg, #00ff44, #00cc33) !important;
    color: #000 !important;
    border-color: #00ff44;
}

.al-product-tab-tooltip {
    background: #00ff44 !important;
    color: #000 !important;
}

/* Logo Position and Size Fix */
.tp-header-pb-logo {
    padding-left: 100px !important;
    /* Mueve el logo a la derecha */
}

/* Forzar tamaño del logo y evitar que se encoja */
.tp-header-pb-logo img {
    width: 150px !important;
    /* Mismo tamaño que el footer */
    max-width: none !important;
    height: auto !important;
}

/* Logo del footer - mismo tamaño */
.al-footer-shop-logo img {
    width: 150px !important;
    height: auto !important;
}

.tp-offcanvas-logo {
    padding-left: 20px;
}

@media (max-width: 1400px) {
    .tp-header-pb-logo {
        padding-left: 60px !important;
    }

    .tp-header-pb-logo img {
        width: 130px !important;
    }
}

@media (max-width: 1199px) {
    .tp-header-pb-logo {
        padding-left: 40px !important;
    }

    .tp-header-pb-logo img {
        width: 180px !important;
    }
}

@media (max-width: 767px) {
    .tp-header-pb-logo {
        padding-left: 20px !important;
    }

    .tp-header-pb-logo img {
        width: 150px !important;
    }
}

/* Uniform Product Grid Styles */
.tp-product-thumb {
    height: 300px;
    /* Altura fija para el contenedor de imagen */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    /* Fondo transparente por si acaso */
    overflow: hidden;
    margin-bottom: 20px !important;
}

.tp-product-thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain !important;
    /* Ajusta la imagen sin cortarla */
    width: auto !important;
    /* Sobrescribe w-100 para simetría */
    height: auto !important;
}

/* Make all product cards same height and align content */
.tp-product-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    /* Espacio extra abajo */
}

.tp-product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Empuja el precio hacia abajo si hay diferencia de texto */
    align-items: center;
    /* Centra el texto */
    text-align: center;
}

.tp-product-title {
    margin-bottom: 15px;
    min-height: 50px;
    /* Reserva espacio para títulos de 2 líneas */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scroll To Top - White Theme Fix */
.scrollToTop {
    background-color: #ffffff !important;
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.4);
    border-radius: 50%;
}

.scrollToTop::after {
    color: #000000 !important;
    /* Flecha negra */
}

.scrollToTop svg path {
    stroke: #000000 !important;
    /* Progreso en negro */
}

.scrollToTop:hover {
    background-color: #f0f0f0 !important;
    transform: translateY(-5px);
}

/* Smooth Scroll & Anchor Fix */
html {
    scroll-behavior: smooth !important;
}

/* Adjust anchor position for sticky header */
#simuladores,
#configurador,
#galeria,
#sobre-nosotros,
#faq,
#contacto {
    scroll-margin-top: 100px;
}