/* ==========================================================================
   SISTEMA DE DISEÑO PREMIUM - FERRECRUZ
   ========================================================================== */

:root {
    /* Paleta de Colores */
    --fc-primary: #FF6600;
    --fc-primary-hover: #E05300;
    --fc-primary-light: #FFF0E6;
    --fc-secondary: #2E353F;
    --fc-secondary-hover: #1F252D;
    --fc-secondary-light: #F1F3F5;
    --fc-black: #12161A;
    --fc-white: #FFFFFF;
    --fc-gray-100: #F8FAFC;
    --fc-gray-200: #E2E8F0;
    --fc-gray-300: #CBD5E1;
    --fc-gray-400: #94A3B8;
    --fc-gray-500: #64748B;
    --fc-gray-700: #334155;
    --fc-gray-900: #0F172A;
    
    /* Colores Funcionales */
    --fc-success: #22C55E;
    --fc-success-light: #DCFCE7;
    --fc-whatsapp: #25D366;
    --fc-whatsapp-hover: #128C7E;
    --fc-danger: #EF4444;
    --fc-danger-light: #FEE2E2;
    --fc-warning: #F59E0B;
    --fc-warning-light: #FEF3C7;
    
    /* Tipografías */
    --fc-font-heading: 'Outfit', 'Montserrat', sans-serif;
    --fc-font-body: 'Inter', 'Roboto', sans-serif;
    
    /* Sombras y Bordes */
    --fc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    --fc-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --fc-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --fc-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --fc-radius-sm: 4px;
    --fc-radius-md: 8px;
    --fc-radius-lg: 12px;
    --fc-radius-full: 9999px;
    
    /* Transiciones */
    --fc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Medidas de Contenedor */
    --fc-container-width: 1280px;
}

/* ==========================================================================
   ESTILOS GENERALES
   ========================================================================== */

body {
    font-family: var(--fc-font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--fc-gray-700);
    background-color: var(--fc-gray-100);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fc-font-heading);
    font-weight: 700;
    color: var(--fc-secondary);
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--fc-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Contenedor */
.fc-container {
    width: 100%;
    max-width: var(--fc-container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Botones */
.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--fc-font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--fc-radius-md);
    cursor: pointer;
    transition: var(--fc-transition);
    border: 2px solid transparent;
}

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

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

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

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

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

.fc-btn-secondary:hover {
    background-color: var(--fc-secondary-hover);
}

.fc-btn-whatsapp {
    background-color: var(--fc-whatsapp) !important;
    color: var(--fc-white) !important;
    border: none;
}

.fc-btn-whatsapp:hover {
    background-color: var(--fc-whatsapp-hover) !important;
}

.fc-btn-block {
    display: flex;
    width: 100%;
}

.fc-btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.fc-btn-disabled {
    background-color: var(--fc-gray-300) !important;
    color: var(--fc-gray-500) !important;
    cursor: not-allowed;
}

/* ==========================================================================
   TOP BAR & HEADER & STICKY NAVIGATION
   ========================================================================== */

.fc-top-bar {
    background-color: var(--fc-black);
    color: var(--fc-gray-400);
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.fc-top-bar-left, .fc-top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fc-top-bar-left span i {
    color: var(--fc-primary);
    margin-right: 5px;
}

.fc-top-bar-right a {
    color: var(--fc-gray-400);
}

.fc-top-bar-right a:hover {
    color: var(--fc-primary);
}

/* Main Header */
.fc-header-main {
    background-color: var(--fc-secondary);
    color: var(--fc-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--fc-shadow-md);
}

.fc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.fc-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

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

.fc-brand-name {
    font-family: var(--fc-font-heading);
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
    color: var(--fc-primary);
}

.fc-slogan {
    font-size: 11px;
    color: var(--fc-gray-300);
    letter-spacing: 1px;
}

/* Buscador Inteligente */
.fc-search-container {
    flex-grow: 1;
    max-width: 600px;
    position: relative;
}

.fc-search-wrapper {
    display: flex;
    background-color: var(--fc-white);
    border-radius: var(--fc-radius-md);
    overflow: hidden;
}

.fc-search-cat-select {
    border: none;
    background-color: var(--fc-secondary-light);
    color: var(--fc-secondary);
    padding: 0 15px;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    border-right: 1px solid var(--fc-gray-200);
    cursor: pointer;
    max-width: 170px;
}

.fc-search-field {
    border: none;
    outline: none;
    padding: 12px 15px;
    flex-grow: 1;
    color: var(--fc-gray-900);
    font-size: 14px;
}

.fc-search-submit {
    border: none;
    background-color: var(--fc-primary);
    color: var(--fc-white);
    padding: 0 20px;
    cursor: pointer;
    transition: var(--fc-transition);
}

.fc-search-submit:hover {
    background-color: var(--fc-primary-hover);
}

/* Buscador Autocompletado */
.fc-search-autocomplete-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--fc-white);
    border-radius: 0 0 var(--fc-radius-md) var(--fc-radius-md);
    box-shadow: var(--fc-shadow-lg);
    z-index: 101;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    border: 1px solid var(--fc-gray-200);
    border-top: none;
}

.fc-search-autocomplete-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-bottom: 1px solid var(--fc-gray-100);
}

.fc-search-autocomplete-item:hover {
    background-color: var(--fc-gray-100);
}

.fc-search-autocomplete-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--fc-radius-sm);
}

.fc-search-autocomplete-info {
    flex-grow: 1;
}

.fc-search-autocomplete-info h4 {
    margin: 0;
    font-size: 14px;
    color: var(--fc-secondary);
}

.fc-search-autocomplete-info span {
    font-size: 11px;
    color: var(--fc-gray-500);
}

.fc-search-autocomplete-price {
    font-weight: 700;
    color: var(--fc-primary);
    font-size: 14px;
}

/* Header Actions */
.fc-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fc-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--fc-white);
    font-size: 11px;
    cursor: pointer;
    position: relative;
}

.fc-action-btn:hover {
    color: var(--fc-primary);
}

.fc-icon-wrapper {
    position: relative;
    margin-bottom: 3px;
}

.fc-icon-wrapper i {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.fc-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--fc-primary);
    color: var(--fc-white);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: var(--fc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-action-label {
    font-weight: 500;
}

/* Menú Móvil Trigger */
.fc-mobile-menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.fc-menu-bar {
    width: 25px;
    height: 3px;
    background-color: var(--fc-white);
    border-radius: var(--fc-radius-full);
    transition: var(--fc-transition);
}

/* Sticky Navigation */
.fc-navigation {
    background-color: var(--fc-white);
    border-bottom: 1px solid var(--fc-gray-200);
    position: relative;
    z-index: 99;
}

.fc-navigation-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Mega Menú Button */
.fc-mega-menu-container {
    position: relative;
}

.fc-mega-menu-trigger-btn {
    background-color: var(--fc-primary);
    color: var(--fc-white);
    border: none;
    padding: 15px 25px;
    font-family: var(--fc-font-heading);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--fc-transition);
}

.fc-mega-menu-trigger-btn:hover {
    background-color: var(--fc-primary-hover);
}

.fc-mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background-color: var(--fc-white);
    box-shadow: var(--fc-shadow-lg);
    border-radius: 0 0 var(--fc-radius-lg) var(--fc-radius-lg);
    padding: 30px;
    display: none;
    border: 1px solid var(--fc-gray-200);
    z-index: 100;
}

.fc-mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fc-mega-menu-col {
    display: flex;
    flex-direction: column;
}

.fc-mega-cat-title {
    font-family: var(--fc-font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--fc-secondary);
    margin-bottom: 5px;
    border-left: 3px solid var(--fc-primary);
    padding-left: 8px;
}

.fc-mega-cat-title:hover {
    color: var(--fc-primary);
}

.fc-mega-cat-desc {
    font-size: 12px;
    color: var(--fc-gray-500);
    margin: 0;
}

/* List Enlaces Comunes */
.fc-nav-links-container {
    flex-grow: 1;
}

.fc-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.fc-nav-list a {
    color: var(--fc-secondary);
    font-weight: 600;
    font-size: 14px;
    padding: 15px 0;
    display: inline-block;
}

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

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */

.fc-hero {
    position: relative;
    margin-bottom: 40px;
}

.fc-hero-slider {
    height: 520px;
    overflow: hidden;
    position: relative;
}

.fc-hero-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.fc-hero-content {
    max-width: 600px;
    color: var(--fc-white);
}

.fc-hero-tag {
    background-color: var(--fc-primary);
    color: var(--fc-white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--fc-radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.fc-hero-title {
    font-size: 48px;
    line-height: 1.1;
    color: var(--fc-white);
    margin-bottom: 15px;
}

.fc-hero-subtitle {
    font-size: 18px;
    color: var(--fc-gray-200);
    margin-bottom: 30px;
}

.fc-hero-actions {
    display: flex;
    gap: 15px;
}

.fc-hero-search-wrapper {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: 10;
}

.fc-hero-search-box {
    background-color: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    box-shadow: var(--fc-shadow-lg);
    padding: 25px 35px;
    border-left: 5px solid var(--fc-primary);
}

.fc-hero-search-box h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.fc-hero-search-box p {
    margin-top: 0;
    color: var(--fc-gray-500);
    font-size: 13px;
    margin-bottom: 15px;
}

.fc-hero-search-inputs {
    display: flex;
    gap: 15px;
}

.fc-hero-search-inputs input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--fc-gray-300);
    border-radius: var(--fc-radius-md);
    outline: none;
}

/* ==========================================================================
   SECCIONES Y GRIDS COMUNES
   ========================================================================== */

.fc-home-section {
    padding: 70px 0;
}

.fc-bg-light {
    background-color: var(--fc-gray-200);
}

.fc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.fc-center-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fc-section-tag {
    color: var(--fc-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.fc-section-title {
    font-size: 32px;
    margin: 0;
}

.fc-section-link {
    font-weight: 700;
    color: var(--fc-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.fc-section-link:hover {
    color: var(--fc-primary-hover);
}

.fc-col-span-all {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
}

/* Grids */
.fc-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.fc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.fc-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.fc-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==========================================================================
   TARJETAS
   ========================================================================== */

/* Tarjeta Categoría */
.fc-category-card {
    background-color: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--fc-shadow-sm);
    border: 1px solid var(--fc-gray-200);
}

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

.fc-category-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--fc-radius-full);
    background-color: var(--fc-primary-light);
    color: var(--fc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    transition: var(--fc-transition);
}

.fc-category-card:hover .fc-category-icon-box {
    background-color: var(--fc-primary);
    color: var(--fc-white);
}

.fc-category-icon-box i {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.fc-category-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.fc-category-count {
    font-size: 12px;
    color: var(--fc-gray-500);
}

/* Tarjeta Producto */
.fc-product-card {
    background-color: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    border: 1px solid var(--fc-gray-200);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--fc-transition);
}

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

/* Badges */
.fc-product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 5;
}

.fc-badge-sale {
    background-color: var(--fc-danger);
    color: var(--fc-white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--fc-radius-sm);
    text-transform: uppercase;
}

.fc-badge-stockout {
    background-color: var(--fc-gray-700);
    color: var(--fc-white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--fc-radius-sm);
    text-transform: uppercase;
}

/* Acciones de la Tarjeta */
.fc-card-quick-actions {
    position: absolute;
    top: 10px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
    transition: var(--fc-transition);
}

.fc-product-card:hover .fc-card-quick-actions {
    right: 10px;
}

.fc-quick-action-btn {
    background-color: var(--fc-white);
    border: 1px solid var(--fc-gray-200);
    color: var(--fc-secondary);
    width: 34px;
    height: 34px;
    border-radius: var(--fc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--fc-shadow-sm);
    transition: var(--fc-transition);
}

.fc-quick-action-btn:hover {
    background-color: var(--fc-primary);
    color: var(--fc-white);
    border-color: var(--fc-primary);
}

.fc-quick-action-btn i {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.fc-product-img-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--fc-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--fc-transition);
}

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

.fc-product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fc-card-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--fc-gray-500);
    margin-bottom: 8px;
}

.fc-card-brand {
    font-weight: 700;
    color: var(--fc-primary);
}

.fc-product-card-title {
    font-size: 15px;
    line-height: 1.3;
    height: 40px;
    overflow: hidden;
    margin-bottom: 12px;
}

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

.fc-product-card-price-row {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-current-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--fc-secondary);
}

.fc-current-price.sale {
    color: var(--fc-danger);
}

.fc-old-price {
    font-size: 14px;
    color: var(--fc-gray-400);
    text-decoration: line-through;
}

.fc-product-card-action {
    margin-top: auto;
}

/* Tarjeta Servicio */
.fc-service-card {
    background-color: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--fc-shadow-sm);
    border: 1px solid var(--fc-gray-200);
}

.fc-service-icon {
    font-size: 32px;
    color: var(--fc-primary);
    margin-bottom: 15px;
}

.fc-service-icon i {
    width: 32px;
    height: 32px;
}

.fc-service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.fc-service-card p {
    font-size: 12px;
    color: var(--fc-gray-500);
    margin: 0;
}

/* Tarjeta Testimonio */
.fc-testimonial-card {
    background-color: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    padding: 30px;
    box-shadow: var(--fc-shadow-sm);
    border-left: 4px solid var(--fc-primary);
}

.fc-testimonial-stars {
    color: var(--fc-warning);
    font-size: 18px;
    margin-bottom: 15px;
}

.fc-testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.fc-testimonial-author {
    display: flex;
    flex-direction: column;
}

.fc-testimonial-author strong {
    color: var(--fc-secondary);
}

.fc-testimonial-author span {
    font-size: 12px;
    color: var(--fc-gray-500);
}

/* Tarjeta Banners Promocionales */
.fc-promotions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fc-promo-banner {
    border-radius: var(--fc-radius-lg);
    padding: 50px;
    background-size: cover;
    background-position: center;
    color: var(--fc-white);
    min-height: 250px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fc-promo-content {
    max-width: 320px;
    position: relative;
    z-index: 2;
}

.fc-promo-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--fc-primary);
    padding: 4px 8px;
    border-radius: var(--fc-radius-sm);
    display: inline-block;
    margin-bottom: 10px;
}

.fc-promo-banner h3 {
    color: var(--fc-white);
    font-size: 24px;
    margin-bottom: 10px;
}

.fc-promo-banner p {
    font-size: 13px;
    color: var(--fc-gray-300);
    margin-bottom: 20px;
}

/* Tarjeta de Blog */
.fc-blog-card {
    background-color: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    border: 1px solid var(--fc-gray-200);
    overflow: hidden;
}

.fc-blog-img-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fc-blog-card-content {
    padding: 25px;
}

.fc-blog-date {
    font-size: 12px;
    color: var(--fc-gray-500);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.fc-blog-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.fc-blog-card-content h3 a:hover {
    color: var(--fc-primary);
}

.fc-blog-card-content p {
    font-size: 13px;
    color: var(--fc-gray-500);
    margin-bottom: 15px;
}

.fc-blog-read-more {
    color: var(--fc-primary);
    font-weight: 700;
    font-size: 13px;
}

.fc-blog-read-more:hover {
    color: var(--fc-primary-hover);
}

/* ==========================================================================
   MARCAS CAROUSEL
   ========================================================================== */

.fc-brands-carousel {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    background-color: var(--fc-white);
    padding: 40px;
    border-radius: var(--fc-radius-lg);
    box-shadow: var(--fc-shadow-sm);
}

.fc-brand-carousel-item {
    font-family: var(--fc-font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--fc-gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fc-brand-carousel-item:hover {
    color: var(--fc-primary);
}

/* ==========================================================================
   CONTACT HOME GRID
   ========================================================================== */

.fc-contact-home-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

.fc-contact-form-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.fc-contact-form-card p {
    color: var(--fc-gray-500);
    margin-bottom: 25px;
}

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

.fc-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fc-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fc-form-group label {
    font-weight: 600;
    font-size: 13px;
    color: var(--fc-secondary);
}

.fc-form-group input, .fc-form-group textarea {
    padding: 10px 15px;
    border: 1px solid var(--fc-gray-300);
    border-radius: var(--fc-radius-md);
    outline: none;
    font-family: var(--fc-font-body);
}

.fc-form-group input:focus, .fc-form-group textarea:focus {
    border-color: var(--fc-primary);
}

.fc-contact-info-card {
    background-color: var(--fc-secondary);
    color: var(--fc-white);
    padding: 40px;
    border-radius: var(--fc-radius-lg);
    box-shadow: var(--fc-shadow-sm);
}

.fc-contact-info-card h3 {
    color: var(--fc-white);
    font-size: 24px;
}

.fc-contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.fc-contact-info-list li strong {
    width: 90px;
    flex-shrink: 0;
}

.fc-contact-cta-whatsapp {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--fc-radius-md);
    border: 1px dashed var(--fc-primary);
}

.fc-contact-cta-whatsapp h4 {
    color: var(--fc-white);
    margin-bottom: 5px;
}

.fc-contact-cta-whatsapp p {
    font-size: 12px;
    color: var(--fc-gray-300);
    margin-bottom: 15px;
}

/* ==========================================================================
   DRAWER / SIDE-CART
   ========================================================================== */

.fc-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

.fc-drawer.active {
    display: block;
}

.fc-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 22, 26, 0.7);
    backdrop-filter: blur(4px);
}

.fc-drawer-content {
    position: absolute;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background-color: var(--fc-white);
    box-shadow: var(--fc-shadow-xl);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-drawer.active .fc-drawer-content {
    right: 0;
}

.fc-drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--fc-gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fc-drawer-header h3 {
    margin: 0;
    font-size: 18px;
}

.fc-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--fc-gray-500);
}

.fc-close-btn:hover {
    color: var(--fc-danger);
}

.fc-drawer-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Cart Items inside Drawer */
.fc-cart-items-list {
    margin-bottom: 25px;
}

.fc-empty-cart-msg {
    text-align: center;
    padding: 40px 0;
    color: var(--fc-gray-500);
}

.fc-cart-drawer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--fc-gray-200);
}

.fc-cart-drawer-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--fc-radius-sm);
}

.fc-cart-drawer-item-info {
    flex-grow: 1;
}

.fc-cart-drawer-item-info h4 {
    margin: 0;
    font-size: 14px;
    color: var(--fc-secondary);
}

.fc-cart-drawer-item-info span {
    font-size: 11px;
    color: var(--fc-gray-500);
}

.fc-cart-item-qty-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.fc-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: var(--fc-radius-sm);
    border: 1px solid var(--fc-gray-300);
    background: var(--fc-white);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-qty-val {
    font-size: 13px;
    font-weight: 600;
}

.fc-cart-drawer-item-price {
    font-weight: 700;
    color: var(--fc-secondary);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fc-btn-remove-item {
    background: none;
    border: none;
    color: var(--fc-danger);
    font-size: 12px;
    cursor: pointer;
    margin-top: 5px;
}

.fc-drawer-summary-section {
    border-top: 2px solid var(--fc-gray-200);
    padding-top: 20px;
}

.fc-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 20px;
}

.fc-summary-row strong {
    font-size: 20px;
    color: var(--fc-primary);
}

.fc-drawer-form {
    background-color: var(--fc-gray-100);
    padding: 20px;
    border-radius: var(--fc-radius-lg);
    margin-top: 10px;
}

.fc-drawer-form h4 {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--fc-gray-300);
    padding-bottom: 5px;
}

/* ==========================================================================
   WHATSAPP FLOATING & CHAT WIDGET
   ========================================================================== */

.fc-whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: var(--fc-whatsapp);
    color: var(--fc-white) !important;
    border-radius: var(--fc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--fc-shadow-lg);
    z-index: 999;
}

.fc-whatsapp-floating i {
    font-size: 32px;
    width: 32px;
    height: 32px;
}

.fc-whatsapp-floating:hover {
    background-color: var(--fc-whatsapp-hover);
    transform: scale(1.05);
}

/* Live Chat Widget */
.fc-chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.fc-chat-trigger-bubble {
    width: 55px;
    height: 55px;
    background-color: var(--fc-primary);
    color: var(--fc-white);
    border-radius: var(--fc-radius-full);
    border: none;
    cursor: pointer;
    box-shadow: var(--fc-shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--fc-transition);
}

.fc-chat-trigger-bubble i {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.fc-chat-trigger-bubble:hover {
    background-color: var(--fc-primary-hover);
    transform: scale(1.05);
}

.fc-chat-box {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 350px;
    height: 450px;
    background-color: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    box-shadow: var(--fc-shadow-xl);
    border: 1px solid var(--fc-gray-200);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.fc-chat-box.active {
    display: flex;
}

.fc-chat-header {
    background-color: var(--fc-secondary);
    color: var(--fc-white);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--fc-radius-full);
    background-color: var(--fc-primary);
    color: var(--fc-white);
    font-family: var(--fc-font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-chat-status {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fc-chat-status strong {
    font-size: 14px;
}

.fc-chat-status span {
    font-size: 11px;
    color: var(--fc-gray-400);
}

.fc-chat-close {
    background: none;
    border: none;
    color: var(--fc-white);
    font-size: 20px;
    cursor: pointer;
}

.fc-chat-body {
    padding: 15px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--fc-gray-100);
}

.fc-chat-msg {
    padding: 10px 14px;
    border-radius: var(--fc-radius-md);
    max-width: 80%;
    font-size: 13px;
}

.fc-chat-msg.bot {
    background-color: var(--fc-white);
    color: var(--fc-secondary);
    align-self: flex-start;
    border-bottom-left-radius: 0;
    box-shadow: var(--fc-shadow-sm);
}

.fc-chat-msg.user {
    background-color: var(--fc-primary);
    color: var(--fc-white);
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.fc-chat-footer {
    padding: 12px;
    background-color: var(--fc-white);
    border-top: 1px solid var(--fc-gray-200);
}

.fc-chat-suggestions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fc-chat-option-btn {
    background-color: var(--fc-secondary-light);
    border: 1px solid var(--fc-gray-200);
    color: var(--fc-secondary);
    padding: 8px 12px;
    border-radius: var(--fc-radius-full);
    font-size: 12px;
    cursor: pointer;
    text-align: left;
    transition: var(--fc-transition);
}

.fc-chat-option-btn:hover {
    background-color: var(--fc-primary-light);
    border-color: var(--fc-primary);
    color: var(--fc-primary);
}

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

.fc-footer {
    background-color: var(--fc-secondary);
    color: var(--fc-white);
    padding-top: 60px;
    border-top: 5px solid var(--fc-primary);
}

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

.fc-footer-logo {
    margin-bottom: 20px;
}

.fc-footer-desc {
    color: var(--fc-gray-300);
    font-size: 13px;
    margin-bottom: 25px;
}

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

.fc-social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--fc-radius-full);
    background-color: rgba(255,255,255,0.05);
    color: var(--fc-white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-social-icon:hover {
    background-color: var(--fc-primary);
}

.fc-footer-title {
    color: var(--fc-white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

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

.fc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.fc-footer-links a {
    color: var(--fc-gray-300);
    font-size: 13px;
}

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

.fc-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fc-footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--fc-gray-300);
}

.fc-footer-contact-list li i {
    color: var(--fc-primary);
    flex-shrink: 0;
}

.fc-footer-bottom {
    background-color: var(--fc-black);
    padding: 25px 0;
    font-size: 12px;
    color: var(--fc-gray-500);
}

.fc-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fc-cards-row {
    display: flex;
    gap: 10px;
}

.fc-offline-badge {
    background-color: rgba(255,255,255,0.05);
    padding: 4px 8px;
    border-radius: var(--fc-radius-sm);
    color: var(--fc-gray-300);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   PÁGINAS ESPECIALES
   ========================================================================== */

/* Ficha de Producto (Detalle) */
.fc-product-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    padding: 40px 0;
}

.fc-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fc-gallery-main {
    position: relative;
    border: 1px solid var(--fc-gray-200);
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    aspect-ratio: 1.2;
    background-color: var(--fc-white);
}

.fc-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.fc-gallery-thumbs {
    display: flex;
    gap: 10px;
}

.fc-gallery-thumb-btn {
    width: 80px;
    height: 80px;
    border: 2px solid var(--fc-gray-200);
    border-radius: var(--fc-radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--fc-white);
}

.fc-gallery-thumb-btn.active, .fc-gallery-thumb-btn:hover {
    border-color: var(--fc-primary);
}

.fc-gallery-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ficha Técnica */
.fc-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.fc-specs-table th, .fc-specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--fc-gray-200);
}

.fc-specs-table th {
    background-color: var(--fc-secondary-light);
    color: var(--fc-secondary);
    text-align: left;
    width: 150px;
}

/* Catálogo con Filtros */
.fc-catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 40px 0;
}

.fc-catalog-sidebar {
    background-color: var(--fc-white);
    padding: 25px;
    border-radius: var(--fc-radius-lg);
    border: 1px solid var(--fc-gray-200);
    height: fit-content;
}

.fc-filter-widget {
    margin-bottom: 30px;
}

.fc-filter-widget h3 {
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--fc-gray-200);
    padding-bottom: 8px;
}

.fc-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
}

.fc-filter-list li {
    font-size: 13px;
}

.fc-filter-list a {
    display: flex;
    justify-content: space-between;
    color: var(--fc-gray-700);
}

.fc-filter-list a:hover, .fc-filter-list li.active a {
    color: var(--fc-primary);
    font-weight: 600;
}

/* Acordeón FAQs */
.fc-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fc-faq-item {
    background-color: var(--fc-white);
    border: 1px solid var(--fc-gray-200);
    border-radius: var(--fc-radius-md);
    overflow: hidden;
}

.fc-faq-trigger {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--fc-font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--fc-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fc-faq-trigger i {
    transition: var(--fc-transition);
}

.fc-faq-item.active .fc-faq-trigger i {
    transform: rotate(180deg);
}

.fc-faq-content {
    padding: 0 20px 20px 20px;
    display: none;
    font-size: 14px;
    color: var(--fc-gray-500);
    border-top: 1px solid var(--fc-gray-100);
}

.fc-faq-item.active .fc-faq-content {
    display: block;
}

/* Comparador Table Layout */
.fc-compare-table {
    width: 100%;
    background: var(--fc-white);
    border-collapse: collapse;
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    box-shadow: var(--fc-shadow-sm);
    margin: 40px 0;
}

.fc-compare-table th, .fc-compare-table td {
    padding: 15px;
    border: 1px solid var(--fc-gray-200);
    text-align: center;
}

.fc-compare-table th {
    background-color: var(--fc-secondary-light);
    color: var(--fc-secondary);
    font-weight: 700;
    width: 200px;
}

/* Lightbox Modal */
.fc-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    background-color: rgba(18, 22, 26, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
}

.fc-lightbox.active {
    display: flex;
}

.fc-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.fc-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--fc-white);
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1200px) {
    .fc-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .fc-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .fc-header-inner {
        gap: 15px;
    }
    
    .fc-search-container {
        display: none; /* Se usará buscador en Hero o desplegable */
    }

    .fc-navigation-inner {
        justify-content: space-between;
    }

    .fc-nav-links-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--fc-white);
        box-shadow: var(--fc-shadow-lg);
        display: none;
        padding: 20px;
        border-top: 1px solid var(--fc-gray-200);
    }

    .fc-nav-links-container.active {
        display: block;
    }

    .fc-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .fc-nav-list a {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid var(--fc-gray-100);
    }

    .fc-mobile-menu-trigger {
        display: flex;
    }

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

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

    .fc-product-detail-layout {
        grid-template-columns: 1fr;
    }

    .fc-catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .fc-mega-menu-dropdown {
        width: 100%;
        max-width: 100vw;
    }
    .fc-mega-menu-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .fc-top-bar {
        display: none;
    }

    .fc-hero-slider {
        height: 380px;
    }

    .fc-hero-title {
        font-size: 32px;
    }

    .fc-hero-subtitle {
        font-size: 15px;
    }

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

    .fc-promotions-grid {
        grid-template-columns: 1fr;
    }

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

    .fc-blogs-grid {
        grid-template-columns: 1fr;
    }

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

    .fc-drawer-content {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 576px) {
    .fc-products-grid {
        grid-template-columns: 1fr;
    }

    .fc-services-grid {
        grid-template-columns: 1fr;
    }

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

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