/* Variables Globales de Colores y Fuentes (Edita los códigos de color aquí para cambiar toda la web) */
:root {
    --ft-red: #D31E1E;          /* Color de acento rojo principal */
    --ft-red-hover: #B21818;    /* Rojo al pasar el cursor (hover) */
    --ft-dark-bg: #1B1B1B;      /* Fondo ultra oscuro de la web */
    --ft-card-bg: #2D2D2D;      /* Fondo de las tarjetas y secciones */
    --ft-border: #2E2E2E;       /* Color de bordes y líneas divisorias */
    --text-white: #FFFFFF;      /* Texto principal */
    --text-gray: #A0A0A0;       /* Texto secundario y descripciones */
    --font-family: 'Montserrat', sans-serif, arial;
}

/* Reseteo General de Estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #111;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Barra de Desplazamiento Personalizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--ft-dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--ft-red);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--ft-red-hover);
}

/* Contenedor Límitador de Ancho */
.container {
    max-width: 95rem;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER & NAVEGACIÓN */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ft-border);
    height: 80px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.logo-img-container{
    --o: calc(50%*tan(-22.5deg));
    width: 2.65rem;
    height: 2.65rem;
    aspect-ratio: 1;
    clip-path: polygon(
        var(--o) 50%,
        50% var(--o),
        calc(100% - var(--o)) 50%,
        50% calc(100% - var(--o))
    );
    background: var(--ft-red);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img-container img{
    transform: translateX(-0.5px);
}

.logo-area {
    display: flex;
    gap: 0.5rem;
    text-decoration: none;
    user-select: none;
}

.logo-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
}

.logo-title span {
    color: var(--ft-red);
}

.logo-subtitle {
    font-size: 9px;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    text-align: center;
    align-items: center;
    line-height: 1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-link:hover, .nav-link.active {
    color: var(--ft-red);
}

/* Acciones del Header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-container {
    position: relative;
}

.search-input {
    background-color: #1A1A1A;
    border: 1px solid var(--text-gray);
    border-radius: 20px;
    padding: 8px 35px 8px 15px;
    color: var(--text-white);
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
    width: 20rem;
}

.search-input:focus {
    border-color: var(--ft-red);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    stroke: var(--text-gray);
}

/* Botones Generales */
.btn {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    text-align: center;
}

.btn-text {
    background: none;
    color: var(--text-white);
    padding: 10px;
    border: 1px solid var(--ft-red);
}

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

.btn-primary:hover, .btn-text:hover {
    background-color: var(--ft-red-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: none;
    border: 1px solid var(--ft-border);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: #1A1A1A;
}

/* Carrito Botón */
.cart-trigger {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.cart-trigger:hover {
    color: var(--ft-red);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--ft-red);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 800;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menú Móvil Hamburguesa */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
}

.mobile-menu-dropdown {
    display: none;
    background-color: #0A0A0A;
    border-top: 1px solid var(--ft-border);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

/* HERO / PORTADA */
.hero {
    position: relative;
    width: 100%;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #111 0%, rgba(18, 18, 18, 0.25) 50%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 95rem;
    padding: 60px 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--ft-red);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr; /* Una columna en móviles */
    gap: 30px;
}

.hero-left {
    max-width: 800px;
    margin: 0 auto;
}

.hero-right {
    display: none; /* Oculto en móviles y tablets */
}

.hero-desc {
    font-size: 18px;
    color: var(--text-white);
    text-align: left;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-desc span {
    color: var(--text-white);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--ft-red);
}

/* Botón de Landing Page (Súper llamativo) */
.btn-cta {
    display: inline-block;
    background-color: var(--ft-red);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 800;
    padding: 18px 36px;
    border-radius: 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(211, 30, 30, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--ft-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(211, 30, 30, 0.6);
}

/* Grilla de Categorías Redondas */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
    padding-top: 35px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s;
}

.category-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(211, 30, 30, 0.1);
    border: 2px solid rgba(211, 30, 30, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-circle svg {
    width: 28px;
    height: 28px;
    stroke: var(--ft-red);
    transition: stroke 0.3s;
    fill: none;
}

.category-item:hover .category-circle {
    background-color: var(--ft-red);
    border-color: var(--ft-red);
    transform: scale(1.08);
}

.category-item:hover .category-circle svg {
    stroke: var(--text-white);
}

.category-name {
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    transition: color 0.3s;
}

.category-item:hover .category-name {
    color: var(--text-white);
}

/* SECCIÓN PRODUCTOS DESTACADOS */
.section-padding {
    padding: 80px 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-line {
    height: 4px;
    width: 80px;
    background-color: var(--ft-red);
    margin: 15px auto 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

/* Tarjeta de Producto */
.product-card {
    background-color: var(--ft-card-bg);
    border: 1px solid var(--ft-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.product-card.featured {
    border: 2px solid var(--ft-red);
    box-shadow: 0 0 25px rgba(211, 30, 30, 0.15);
    position: relative;
}

.product-badge {
    color: var(--ft-red);
    font-size: 13px;
    font-weight: 800;
    padding: 6px 12px;
    margin-bottom: 0.45rem;
    border-radius: 20px;
    letter-spacing: 1px;
    z-index: 5;
    text-align: center;
}
.product-card:hover .product-badge{
    background-color: #680000;
    color: #fc8b8b;
}

.product-info-wrap {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.product-img-box {
    position: relative;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    /* margin-bottom: 10px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    filter: drop-shadow(0 1rem 0.5rem #0005);
}

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

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.product-card:hover .product-title {
    color: var(--ft-red);
}

.product-desc {
    font-size: 12px;
    color: var(--text-white);
    line-height: 1.6;
}

.product-footer {
    padding: 25px;
    border-top: 1px solid rgba(46, 46, 46, 0.5);
    margin-top: auto;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.price-label {
    font-size: 12px;
    color: var(--text-gray);
}

.price-val {
    font-size: 22px;
    font-weight: 900;
}

.btn-add-cart {
    width: 100%;
    background-color: var(--ft-red);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-add-cart:hover {
    background-color: var(--ft-red-hover);
}

/* VENTAJAS COMPETITIVAS */
.bg-section-alt {
    background-color: #0A0A0A;
    border-top: 1px solid var(--ft-border);
    border-bottom: 1px solid var(--ft-border);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-card {
    background-color: var(--ft-card-bg);
    border: 1px solid var(--ft-border);
    border-bottom: 4px solid var(--ft-red);
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(211, 30, 30, 0.181);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.advantage-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--ft-red);
    fill: none;
    stroke-width: 2;
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.advantage-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* TESTIMONIOS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.testimonial-card {
    background-color: var(--ft-card-bg);
    border: 1px solid var(--ft-border);
    padding: 35px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(211, 30, 30, 0.4);
}

.user-name {
    font-size: 17px;
    font-weight: 700;
}

.user-role {
    font-size: 14px;
    color: var(--text-gray);
}

.rating {
    color: #db9e22;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    font-size: 14px;
    color: #dcdcdc;
    line-height: 1.7;
}

/* FORMULARIO DE CAPTURA (LANDING PAGE) */
.lead-section {
    background-color: #0E0E0E;
    border-top: 1px solid var(--ft-border);
    padding: 70px 0;
}

.lead-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--ft-card-bg);
    border: 1px solid var(--ft-border);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lead-title {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.lead-subtitle {
    font-size: 14px;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 1px;
}

.form-control {
    width: 100%;
    background-color: var(--ft-card-bg);
    border: 1px solid var(--text-gray);
    border-radius: 8px;
    padding: 14px;
    color: var(--text-white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-control::placeholder{
    color: #999;
}

.form-control:focus {
    border-color: var(--ft-red);
}

.btn-submit {
    width: 100%;
    background-color: var(--ft-red);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 5px 15px rgba(211, 30, 30, 0.2);
}

.btn-submit:hover {
    background-color: var(--ft-red-hover);
}

/* FOOTER DE LA EMPRESA */
.footer {
    background-color: #000;
    border-top: 1px solid var(--ft-border);
    padding: 40px 0 35px 0;
    color: var(--text-gray);
    font-size: 13px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    display: flex;
    flex-direction: column;
}

.logo-subtitle{
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 600;
    margin-top: 0.05rem;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.65;
}

.footer-title {
    color: var(--text-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 12px;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-btn:hover {
    color: var(--ft-red);
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--ft-red);
    color: var(--text-white);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid var(--ft-border);
    padding-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #555;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
}

/* MODALES EMERGENTES (FAQ, Políticas, etc.) */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--ft-card-bg);
    border: 1px solid var(--ft-border);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.modal-header {
    padding: 20px 25px;
    border: 1px solid var(--ft-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.modal-body {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
    font-size: 14px;
    color: #ccc;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.modal-body h4 {
    color: var(--text-white);
    margin: 20px 0 10px 0;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.faq-item {
    border-bottom: 1px solid var(--ft-border);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.faq-question {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 5px;
}

/* CARRITO DE COMPRAS PANEL LATERAL */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    height: 100%;
    background-color: var(--ft-card-bg);
    border-left: 1px solid var(--ft-border);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 299;
    display: none;
}

.cart-overlay.open {
    display: block;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--ft-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-body {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty-msg {
    text-align: center;
    margin: 80px 0;
    color: var(--text-gray);
}

.cart-empty-msg svg {
    width: 48px;
    height: 48px;
    stroke: #555;
    fill: none;
    margin-bottom: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(46, 46, 46, 0.4);
    padding-bottom: 15px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #151515;
    border: 1px solid var(--ft-border);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}

.cart-item-price {
    font-size: 11px;
    color: var(--text-gray);
}

.cart-item-remove {
    color: var(--ft-red);
    font-size: 11px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

.cart-footer {
    padding: 25px;
    background-color: rgba(0,0,0,0.4);
    border-top: 1px solid var(--ft-border);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-shipping-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.cart-shipping-row span.free {
    color: #22c55e;
    font-weight: 700;
}

/* WIDGET CHAT SOPORTE FLOTANTE */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-popup {
    background-color: var(--ft-card-bg);
    border: 1px solid var(--ft-border);
    width: 300px;
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-popup.active {
    display: flex;
}

.chat-header {
    background-color: var(--ft-red);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.chat-online-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
}

.chat-history {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
}

.chat-msg {
    padding: 10px;
    border-radius: 8px;
    max-width: 85%;
}

.chat-msg.bot {
    background-color: #121212;
    color: #ccc;
    align-self: flex-start;
}

.chat-msg.user {
    background-color: rgba(211, 30, 30, 0.2);
    color: var(--text-white);
    align-self: flex-end;
    text-align: right;
}

.chat-input-area {
    padding: 12px;
    border-top: 1px solid var(--ft-border);
    display: flex;
    gap: 8px;
}

.chat-input {
    flex: 1;
    background-color: #121212;
    border: 1px solid var(--ft-border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-white);
    font-size: 12px;
    outline: none;
}

.chat-send-btn {
    background-color: var(--ft-red);
    color: var(--text-white);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.chat-trigger-btn {
    background-color: #840303 ;
    border: 2px solid var(--ft-red);
    color: var(--text-white);
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(211, 30, 30, 0.3);
}

.chat-trigger-btn img {
    width: 60px;
    height: 60px;
}

.dot-online{
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #7fe531;
    border-radius: 50%;
    top: 72px;
    left: 65px;
    animation: glow 1s alternate infinite both ;
}

/* NOTIFICACIONES TOAST */
.toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 400;
    background-color: #151515;
    border-left: 4px solid var(--ft-red);
    padding: 15px 25px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* RESPONSIVIDAD (MEDIA QUERIES) */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

@media (max-width: 80rem) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-dropdown .btn{
        display: none;
    }
    .mobile-toggle{
        display: block;
    }
    .header-actions {
        display: flex;
    }
    .mobile-menu-dropdown .search-container {
        display: block;
    }
    .search-container{
        display: none;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 40rem) {
    .hero-title {
        font-size: 32px;
    }
    .hero-desc {
        font-size: 15px;
    }
    .header-actions .btn{
        display: none;
    }
    .mobile-menu-dropdown .btn{
        display: block;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .lead-box {
        padding: 30px 20px;
    }
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@keyframes glow {
    from{
        box-shadow: 0 0 1rem #afff71;
    }
    to{
        box-shadow: 0 0 2rem #5aad1a;
    }
    
}