/* Design System */
:root {
    --primary: #ec6449;
    --primary-light: #ffb871;
    --secondary: #ffe8aa;
    --accent: #fcf087;
    --bg-light: #fff0f0;
    --text-dark: #2D2D2D;
    --text-muted: #848484;
    --accent-text: #D23030;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(218, 35, 35, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.05);
    --border-radius: 20px;
    --container-width: 1200px;
    --transition: all 0.15s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Layout Utilities */
.section-padding {
    padding: 30px 0;
}

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

.text-accent {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 172, 77, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 172, 77, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.75rem;
}

/* Header & Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.main-header.scrolled {
    padding: 12px 0;
    background: var(--glass);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow);
}

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

.logo-text {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text-accent {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text .accent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.96) 35%, rgba(255, 240, 245, 0.75) 100%),
        url('../img/taylor-rooney-_DCTDUeVjCY-unsplash.jpg');
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 77, 141, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--text-dark) 30%, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-collage {
    position: relative;
    width: 130%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-card {
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    background: var(--white);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        z-index 0.3s ease;
}

.collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-main {
    width: 85%;
    height: 310px;
    top: 5%;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
}

.card-overlay {
    width: 60%;
    height: 240px;
    bottom: 5%;
    right: 0;
    transform: rotate(6deg);
    z-index: 3;
}

/* Efecto dinámico interactivo de collage */
.hero-collage:hover .card-main {
    transform: translate(-10px, -15px) rotate(-1deg) scale(1.03);
    box-shadow: 0 30px 60px rgba(107, 77, 255, 0.15);
    z-index: 3;
}

.hero-collage:hover .card-overlay {
    transform: translate(15px, 15px) rotate(3deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 77, 141, 0.25);
    z-index: 4;
}

/* Productos destacados */
.featured {
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    /* Columnas más estrechas */
    gap: 25px;
}

/* Esqueleto de carga */
.skeleton-grid {
    display: grid;
}

.skeleton-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.skeleton-img {
    background: #e0e0e0;
    height: 180px;
    border-radius: 15px;
    animation: skeleton-pulse 1.2s infinite;
}

.skeleton-line {
    height: 16px;
    background: #e0e0e0;
    margin: 12px 0;
    border-radius: 8px;
    animation: skeleton-pulse 1.2s infinite;
}

.skeleton-line.short {
    width: 60%;
}

@keyframes skeleton-pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
}

.product-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.product-img::after {
    content: 'Ver detalles';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(0, 0, 0, 0.349);
    color: white;
    text-align: center;
    padding: 5px;

    font-size: 0.8rem;
    transform: translateY(100%);
    transition: 0.2s;
}

.product-card:hover .product-img::after {
    transform: translateY(0);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* La imagen cubre el 100% del espacio superior y los lados */
    transition: var(--transition);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
}

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

.product-info {
    padding: 15px 18px 18px;
    /* Padding interno para el contenido de la tarjeta */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
}

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

.fav-btn {
    background: none;
    border: none;
    color: #ddd;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fav-btn:hover,
.fav-btn.active {
    color: var(--primary);
    transform: scale(1.15);
}

.view-more-btn {
    color: #95a5a6;
    font-size: 1.1rem;
    transition: var(--transition);
}

.view-more-btn:hover {
    color: var(--secondary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    width: 650px;
    height: 400px;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #eee;
    padding: 50px 0 30px;
}

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

.footer-logo {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 25px;
    color: #999;
}

.social-links {
    display: flex;
    gap: 22px; /* Espacio de íconos de redes sociales más grande */
}

.social-links a {
    width: 48px; /* Íconos de redes sociales más grandes */
    height: 48px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a i {
    font-size: 1.35rem; /* Tamaño de íconos de redes sociales más grande */
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px); /* Micro-animación al pasar el mouse */
    box-shadow: 0 5px 15px rgba(236, 100, 73, 0.4);
}

/* Teléfonos de contacto planos */
.footer-phone-container {
    align-items: center; /* Centra el ícono verticalmente con respecto a los números */
}

.footer-phone-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.footer-phone-list a {
    color: #999;
    transition: var(--transition);
}

.footer-phone-list a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.footer-nav a {
    color: #999;
}

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

.footer-contact p {
    margin-bottom: 15px;
    color: #999;
    display: flex;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary);
}

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

.footer-copy p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

.admin-access-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.admin-access-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255, 77, 141, 0.05);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        margin: 5px 0;
    }

    .admin-access-btn {
        color: var(--primary);
        border-color: rgba(255, 77, 141, 0.3);
        background: rgba(255, 77, 141, 0.05);
    }
}

/* Adaptación para móviles */
@media (max-width: 992px) {

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-collage {
        height: 420px;
        max-width: 350px;
        margin: 40px auto 0;
    }

    .card-main {
        width: 80%;
        height: 250px;
    }

    .card-overlay {
        width: 55%;
        height: 200px;
    }

    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-info p {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact p {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-collage {
        height: 290px;
        margin-top: 30px;
    }

    .card-main {
        height: 190px;
    }

    .card-overlay {
        height: 150px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .hero-btns .btn {
        display: block;
        text-align: center;
    }
}

/* Catalog Page Styles */
.catalog-page {
    padding-top: 100px;
}

@media (max-width: 768px) {
    .catalog-page {
        padding-top: 0;
    }
}

.catalog-hero {
    padding: 70px 0 60px;
    background:
        linear-gradient(135deg, rgba(236, 100, 73, 0.08) 0%, rgba(255, 184, 113, 0.12) 50%, rgba(252, 240, 135, 0.08) 100%),
        radial-gradient(ellipse at top left, rgba(236, 100, 73, 0.15) 0%, transparent 60%);
    border-bottom: 2px solid rgba(236, 100, 73, 0.12);
    position: relative;
    overflow: hidden;
}

.catalog-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 184, 113, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.catalog-hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236, 100, 73, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.catalog-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-dark) 30%, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.catalog-hero p {
    position: relative;
    z-index: 1;
}

.catalog-controls {
    padding: 40px 0;
    background: var(--white);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.search-bar-wrapper {
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-group i {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.search-input-group input {
    width: 100%;
    padding: 16px 20px 16px 55px;
    border-radius: 50px;
    border: 2px solid #eee;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.search-input-group input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 15px rgba(255, 77, 141, 0.1);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #eee;
    background: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 77, 141, 0.2);
}

/* Mejoras en la tarjeta */
.category-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.view-more-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    border-bottom: 2px solid transparent;
}

.view-more-btn:hover {
    border-bottom-color: var(--secondary);
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Estado vacío */
.empty-state {
    text-align: center;
    padding: 80px 0;
}

.empty-icon {
    font-size: 4rem;
    color: #eee;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Barra del contador de productos */
.product-count-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    margin: 20px 0 28px;
    background: linear-gradient(135deg, rgba(236, 100, 73, 0.07), rgba(255, 184, 113, 0.07));
    border: 1px solid rgba(236, 100, 73, 0.15);
    border-radius: 50px;
    width: fit-content;
}

.product-count-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    min-width: 2ch;
    text-align: center;
    transition: all 0.3s ease;
}

.product-count-label {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 500;
}

.product-count-label strong {
    color: var(--text-dark);
    font-weight: 700;
}

@keyframes countPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
        color: var(--primary);
    }

    100% {
        transform: scale(1);
    }
}

.product-count-number.pop {
    animation: countPop 0.35s ease;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #1a1a1a;
    color: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 250px;
    animation: slideInRight 0.3s ease forwards;
    border-left: 4px solid var(--primary);
}

.toast.removing {
    animation: slideOutRight 0.3s ease forwards;
}

.toast i {
    color: var(--primary);
    font-size: 1.2rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

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

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

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

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-muted);
}

.info-icon-link {
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--bg-light);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.info-item:hover .info-icon-link {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.info-text-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.info-item:hover .info-text-link {
    color: var(--primary);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.error-message {
    background: var(--bg-light);
    color: var(--accent-text);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(210, 48, 48, 0.2);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Detail Page */
.product-detail-page {
    padding: 120px 0 80px;
    background: #fdfdfd;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.category-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-title {
    font-size: 3rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.product-brand-info {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

.product-description-box {
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    border-left: 5px solid var(--accent);
}

.product-description-box h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.product-description-box p {
    line-height: 1.6;
    color: var(--text-muted);
}

.product-meta {
    margin-bottom: 30px;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.stock-status.in-stock {
    color: #27ae60;
}

.stock-status.out-of-stock {
    color: #e74c3c;
}

.product-actions-detailed {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.fav-btn-detailed {
    background: white;
    border: 2px solid #eee;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.fav-btn-detailed:hover,
.fav-btn-detailed.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-light);
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* Contact Map Section */
.contact-map-section {
    padding-bottom: 80px;
}

.map-container-wrapper {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-header {
    padding: 30px;
    text-align: center;
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
}

.map-header i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.map-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.map-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.map-frame iframe {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-map-section {
        padding-bottom: 50px;
    }

    .map-header {
        padding: 20px;
    }
}

/* Catalog Sidebar Layout */
.catalog-section {
    padding: 40px 0 100px;
    background: #fdfdfd;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 30px;
    align-items: start;
}

/* --- Sidebar --- */
.catalog-sidebar {
    position: sticky;
    top: 110px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    background: var(--white);
    border-radius: 20px;
    padding: 20px 16px;
    box-shadow: 0 4px 24px rgba(236, 100, 73, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1.5px solid rgba(236, 100, 73, 0.10);
    scrollbar-width: thin;
    scrollbar-color: rgba(236, 100, 73, 0.25) transparent;
}

.catalog-sidebar::-webkit-scrollbar {
    width: 6px;
}

.catalog-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.catalog-sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(236, 100, 73, 0.25);
    border-radius: 10px;
}

.catalog-sidebar::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px 14px;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.sidebar-header i {
    color: var(--primary);
    font-size: 1rem;
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid transparent;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-family: inherit;
}

.sidebar-filter-btn i {
    font-size: 0.7rem;
    flex-shrink: 0;
    color: var(--primary);
    opacity: 0.4;
    transition: var(--transition);
}

.sidebar-filter-btn:hover {
    background: var(--bg-light);
    color: var(--primary);
    border-color: rgba(236, 100, 73, 0.15);
}

.sidebar-filter-btn:hover i {
    opacity: 1;
}

.sidebar-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(236, 100, 73, 0.30);
}

.sidebar-filter-btn.active i {
    color: var(--white);
    opacity: 1;
}

/* --- Main Content Area --- */
.catalog-main-content {
    min-width: 0;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    background: var(--white);
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(236, 100, 73, 0.10), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1.5px solid rgba(236, 100, 73, 0.10);
}

/* --- Search --- */
.catalog-search-top {
    width: 260px;
    flex-shrink: 0;
}

.catalog-search-top .search-input-group {
    background: var(--bg-light);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid transparent;
    transition: var(--transition);
}

.catalog-search-top .search-input-group:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(236, 100, 73, 0.10);
}

.catalog-search-top .search-input-group i {
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.catalog-search-top input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-family: inherit;
}

.catalog-search-top input::placeholder {
    color: var(--text-muted);
}

/* --- Product Count Bar (within toolbar) --- */
.product-count-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-count-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.product-count-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.product-count-label strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* 5 Column Grid */
.product-grid-5 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card .product-image {
    background: transparent;
    padding: 10px;
    height: 180px;
}

.product-card .product-image img {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
}

/* ─── Puntos de quiebre responsivos ─── */

/* 1400px → grid de 3 columnas */
@media (max-width: 1400px) {
    .product-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 1100px → reduce el ancho de la barra lateral */
@media (max-width: 1100px) {
    .catalog-layout {
        grid-template-columns: 190px 1fr;
        gap: 20px;
    }

    .product-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 992px → la barra lateral colapsa a una franja horizontal, grid de 2 columnas */
@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .catalog-sidebar {
        position: static;
        padding: 10px 14px;
        border-radius: 50px;
        overflow: hidden;
        max-height: none;
        overflow-y: visible;
    }

    .sidebar-header {
        display: none;
    }

    .sidebar-categories {
        flex-direction: row;
        gap: 6px;
        overflow-x: auto;
        padding: 2px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .sidebar-categories::-webkit-scrollbar {
        display: none;
    }

    .sidebar-filter-btn {
        white-space: nowrap;
        border-radius: 50px;
        padding: 8px 16px;
        flex-shrink: 0;
        width: auto;
    }

    .sidebar-filter-btn i {
        display: none;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 20px;
    }

    .catalog-search-top {
        width: 100%;
    }

    .product-count-bar {
        justify-content: center;
    }

    .product-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* 768px → ajustes finos para móvil */
@media (max-width: 768px) {

    /* Espacio inferior para no quedar tapado por la nav móvil */
    .catalog-section {
        padding-bottom: 120px;
    }

    .catalog-sidebar {
        padding: 8px 12px;
        border-radius: 40px;
    }

    .sidebar-filter-btn {
        padding: 7px 14px;
        font-size: 0.82rem;
    }

    .catalog-toolbar {
        border-radius: 16px;
        margin-bottom: 16px;
    }

    .product-count-number {
        font-size: 1.3rem;
    }

    .product-count-label {
        font-size: 0.8rem;
    }

    .product-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card .product-image {
        height: 150px;
    }
}

/* 480px → una sola columna en pantallas muy pequeñas */
@media (max-width: 480px) {
    .product-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .catalog-layout {
        gap: 10px;
    }
}



/* Barra de navegación inferior para móviles */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding: 0 12px;
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.06);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    transition: all 0.3s ease;
    gap: 2px;
    flex: 1;
    height: 100%;
    position: relative;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.80rem;
    font-weight: 700;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.mobile-bottom-nav .nav-item.active i {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-12px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 0 3px var(--white);
    color: var(--white);
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    animation: active-bounce 0.3s ease forwards;
}

.mobile-bottom-nav .nav-item.active span {
    color: var(--primary);
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* Ajuste para pantallas muy pequeñas */
@media (max-width: 480px) {
    .mobile-bottom-nav .nav-item.active i {
        width: 44px;
        height: 44px;
        transform: translateY(-10px);
    }
}

.mobile-bottom-nav .nav-item.active span {
    color: var(--primary);
    opacity: 1;
    font-weight: 800;
}



/* WhatsApp Nav Item Hover Specific Style */
.mobile-bottom-nav .nav-item.whatsapp-nav-item:hover i {
    color: #25D366;
    transform: scale(1.1);
}

.mobile-bottom-nav .nav-item.whatsapp-nav-item:hover span {
    color: #25D366;
    opacity: 1;
}

/* Animation for active tab */
@keyframes active-bounce {
    0% {
        transform: translateY(0) scale(0.85);
    }

    60% {
        transform: translateY(-18px) scale(1.05);
    }

    100% {
        transform: translateY(-14px) scale(1);
    }
}

@media (max-width: 768px) {
    .main-header {
        display: none;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 52px;
    }

    .hero,
    .catalog-hero,
    .product-detail-page {
        padding-top: 10px;
    }

    .mobile-menu-btn {
        display: none;
    }

    .floating-whatsapp {
        display: none !important;
    }
}

/* Animación del título del catálogo */
#animation .text-xl {
    font-size: 3.5rem;
    color: var(--text-dark);
    letter-spacing: 0.06em;
    display: flex;
    justify-content: center;
    gap: 0.1em;
    margin-bottom: 15px;
}

.large.grid.centered.square-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Detalles del zoom de la galería de productos */
.main-image {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.main-image img {
    transition: transform 0.1s ease-out;
}

/* Modal de pantalla completa */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 100000;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

/* Carrusel infinito de marcas */
.brands-marquee {
    overflow: hidden;
    background: linear-gradient(to right, #ffffff, #fffdfb, #ffffff);
    padding: 50px 0;
    border-bottom: 1px solid rgba(236, 100, 73, 0.08);
    position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-content {
    display: inline-flex;
    gap: 60px;
    animation: marquee-scroll 45s linear infinite;
    align-items: center;
}

.brand-logo-item {
    width: 130px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(60%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-item:hover img {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.15) rotate(1deg);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Likes Counter in Cards */
.fav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.03);
    border: none;
    font-size: 0.9rem;
    color: #b2bec3;
    transition: var(--transition);
    cursor: pointer;
}

.fav-btn i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.fav-btn:hover {
    background: rgba(236, 100, 73, 0.1);
    color: var(--primary);
}

.fav-btn.active {
    background: rgba(236, 100, 73, 0.15);
    color: var(--primary);
}

.fav-btn.active i {
    transform: scale(1.1);
    color: var(--primary);
}

.likes-count {
    font-weight: 700;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

/* Sección de reseñas de Google Maps – Carrusel infinito de 2 filas */
.reviews-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.reviews-section .section-header {
    margin-bottom: 50px;
}

/* Envoltorio de cada fila: recorta el desbordamiento y añade máscaras de desvanecimiento en los lados */
.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.15) 8%,
            rgba(0, 0, 0, 0.6) 15%,
            black 28%,
            black 72%,
            rgba(0, 0, 0, 0.6) 85%,
            rgba(0, 0, 0, 0.15) 92%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.15) 8%,
            rgba(0, 0, 0, 0.6) 15%,
            black 28%,
            black 72%,
            rgba(0, 0, 0, 0.6) 85%,
            rgba(0, 0, 0, 0.15) 92%,
            transparent 100%);
}

/* La pista de desplazamiento (fila flexible de tarjetas) */
.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 12px 0;
}

/* Dirección: izquierda */
.reviews-track--left {
    animation: scrollLeft 42s linear infinite;
}

/* Dirección: derecha */
.reviews-track--right {
    animation: scrollRight 42s linear infinite;
}

/*No pausa al pasar el cursor para leer */
.reviews-carousel-wrapper:hover .reviews-track {
    animation-play-state: running;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Tarjeta de reseña */
.review-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 26px 28px;
    box-shadow: 0 8px 30px rgba(236, 100, 73, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(236, 100, 73, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    min-width: 300px;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(236, 100, 73, 0.12);
    border-color: rgba(236, 100, 73, 0.18);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    flex-shrink: 0;
}

.review-user-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.review-stars {
    color: #ffc107;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.review-badge {
    margin-left: auto;
    font-size: 1.1rem;
    color: #4285F4;
    flex-shrink: 0;
}

.review-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 14px;
    font-style: italic;
    flex-grow: 1;
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: right;
}

.reviews-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.btn-google {
    background: #4285F4;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-google:hover {
    background: #357ae8;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(66, 133, 244, 0.3);
}

/* Ajustes en la sección de About Us */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .about-stats[style*="repeat(5"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .about-stats[style*="repeat(5"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(236, 100, 73, 0.04);
    border-radius: 15px;
    border: 1px solid rgba(236, 100, 73, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(236, 100, 73, 0.08);
    transform: scale(1.05);
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pulse {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: inherit;
    z-index: -1;
    opacity: 0.4;
    animation: btnPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Sección de integración con redes sociales */
.social-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.social-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--white);
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.social-card-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.facebook-card .social-card-header {
    background: linear-gradient(135deg, #1877F2, #0e5fc2);
}

.instagram-card .social-card-header {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F56040, #FCAF45);
}

.social-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.social-profile-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.social-profile-info span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.social-card-body {
    padding: 25px;
}

/* Mock de publicación de Facebook */
.fb-post-mockup {
    border: 1px solid #e4e6eb;
    border-radius: 10px;
    padding: 15px;
    background: #f8f9fa;
}

.fb-post-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fb-post-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
}

.fb-post-name {
    font-size: 0.9rem;
    font-weight: 700;
}

.fb-post-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.fb-post-content {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.fb-post-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.fb-post-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid #e4e6eb;
    padding-top: 10px;
}

/* Mock de cuadrícula de IG */
.ig-grid-mockup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ig-grid-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.ig-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ig-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    gap: 5px;
    opacity: 0;
    transition: var(--transition);
}

.ig-grid-item:hover img {
    transform: scale(1.1);
}

.ig-grid-item:hover .ig-overlay {
    opacity: 1;
}

.social-card-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
}

.social-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.fb-btn {
    background: #1877F2;
    color: var(--white);
}

.fb-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.ig-btn {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F56040);
    color: var(--white);
}

.ig-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* WhatsApp flotante */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-whatsapp.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Página de detalles del producto */
.product-detail-page {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--white) 100%);
    min-height: calc(100vh - 300px);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--text-dark);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image-container {
    background: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 2px solid transparent;
}

.main-image-container:hover {
    border-color: rgba(236, 100, 73, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

#main-product-img {
    max-height: 500px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    transition: transform 0.1s ease-out;
}

/* Info */
.product-info-detailed {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.category-tag,
.product-brand-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-tag {
    background: var(--accent);
    color: var(--text-dark);
}

.product-brand-badge {
    background: var(--bg-light);
    color: var(--primary);
    border: 1px solid rgba(236, 100, 73, 0.2);
}

.product-title {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0;
}

.product-description-box {
    background: #fafafa;
    border-radius: var(--border-radius);
    padding: 25px;
    border-left: 4px solid var(--primary);
}

.product-description-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.description-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Actions */
.product-actions-detailed {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    min-width: 200px;
    font-size: 1.1rem;
    padding: 16px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.fav-btn-detailed {
    flex: 1;
    min-width: 200px;
    font-size: 1.1rem;
    padding: 16px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #eee;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.fav-btn-detailed:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-light);
}

.fav-btn-detailed i {
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 40px;
    }

    .product-gallery {
        position: static;
    }

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

@media (max-width: 576px) {
    .product-detail-page {
        padding-top: 100px;
    }

    .product-detail-grid {
        padding: 20px;
        border-radius: 20px;
    }

    .product-actions-detailed {
        flex-direction: column;
    }

    .action-btn,
    .fav-btn-detailed {
        width: 100%;
    }
}

/* Product Navigation & Header Styles */
.product-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.product-detail-header .breadcrumb {
    margin-bottom: 0;
}

.product-navigation {
    display: none; /* Oculto en escritorio */
    gap: 10px;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(236, 100, 73, 0.2);
}

/* Floating Screen Navigation Buttons (Desktop only) */
.floating-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-nav-btn.prev {
    left: 40px;
}

.floating-nav-btn.next {
    right: 40px;
}

.floating-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 15px 30px rgba(236, 100, 73, 0.35);
}

.floating-nav-btn.prev:hover {
    transform: translateY(-50%) translateX(-8px);
}

.floating-nav-btn.next:hover {
    transform: translateY(-50%) translateX(8px);
}

@media (max-width: 992px) {
    .product-navigation {
        display: flex; /* Mostrar en versión móvil */
    }
    .floating-nav-btn {
        display: none; /* Ocultar en versión móvil */
    }
}

.favorites-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(236, 100, 73, 0.12);
    border-radius: var(--border-radius);
    padding: 16px 28px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(236, 100, 73, 0.06);
}

.toolbar-left,
.toolbar-right {
    display: flex;
    align-items: center;
}

.toolbar-filters {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.filter-group label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.filter-select {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(236, 100, 73, 0.15);
    background: var(--white);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:hover {
    border-color: var(--primary-light);
}

.filter-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(236, 100, 73, 0.1);
}

.btn-danger {
    background: linear-gradient(135deg, var(--accent-text), #ff6b6b);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(210, 48, 48, 0.25);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(210, 48, 48, 0.35);
    color: var(--white);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    border: 1.5px solid rgba(236, 100, 73, 0.15);
    color: var(--primary);
}

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

.brand-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 600;
}

.brand-label i {
    color: var(--primary);
    opacity: 0.7;
    margin-right: 4px;
}

/* Responsive Favorites Toolbar */
@media (max-width: 992px) {
    .favorites-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
    }

    .toolbar-left,
    .toolbar-right {
        justify-content: center;
    }

    .toolbar-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .filter-group {
        justify-content: space-between;
    }

    .filter-select {
        width: 60%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .filter-select {
        width: 100%;
        max-width: none;
    }

    .btn-back,
    #btn-clear-all {
        width: 100%;
        justify-content: center;
    }
}

/* --- Lightbox Modal Styles --- */
body.lightbox-open {
    overflow: hidden !important;
}

.main-image {
    cursor: zoom-in;
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), 
                visibility 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: zoom-out;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: scale(1.1) rotate(90deg);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    background: transparent;
    cursor: default;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* About Page Enhancements */
.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.branch-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.branch-card.international {
    background: linear-gradient(135deg, #fff 0%, rgba(107, 77, 255, 0.03) 100%);
    border-left: 5px solid var(--secondary);
}

.branch-card:not(.international) {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 77, 141, 0.03) 100%);
    border-left: 5px solid var(--primary);
}

.branch-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.branch-card:not(.international) .branch-icon {
    color: var(--primary);
}

.branch-card.international .branch-icon {
    color: var(--secondary);
}

.branch-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.branch-count {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
}

.branch-card:not(.international) .branch-count {
    background: rgba(255, 77, 141, 0.1);
    color: var(--primary);
}

.branch-card.international .branch-count {
    background: rgba(107, 77, 255, 0.1);
    color: var(--secondary);
}

.branch-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.branch-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.branch-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.branch-card:not(.international) .branch-features li i {
    color: var(--primary);
}

.branch-card.international .branch-features li i {
    color: var(--secondary);
}

/* Products Showcase */
.products-showcase {
    background: #fafafa;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.showcase-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

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

.showcase-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 141, 0.08);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.showcase-card:hover .showcase-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-5deg) scale(1.1);
}

.showcase-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.showcase-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Delivery Banner */
.delivery-banner {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2c3e50 100%);
    border-radius: 30px;
    padding: 60px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.delivery-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 77, 141, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.delivery-content .badge {
    background: rgba(255, 77, 141, 0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 77, 141, 0.3);
}

.delivery-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.delivery-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.delivery-cta {
    display: flex;
    gap: 20px;
}

.delivery-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.delivery-cta .btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}

.delivery-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsivo para nuevos elementos */
@media (max-width: 992px) {
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .delivery-banner {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .delivery-cta {
        justify-content: center;
    }
    
    .delivery-icon-box {
        display: none;
    }
}

@media (max-width: 576px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-cta {
        flex-direction: column;
        align-items: stretch;
    }
}