/* General Styles */
:root {
    /* Colores principales */
    --pink-light: #FCD5E2;
    --pink-strong: #E65183;
    --blue-light: #D2F2F7;
    --turquoise: #5CC6D0;
    
    /* Fondos */
    --white: #FFFFFF;
    --gray-light: #F7F7F7;
    
    /* Tipografía */
    --text-primary: #333333;
    --text-secondary: #999999;
    
    /* Variables funcionales */
    --primary-color: var(--pink-strong);
    --secondary-color: var(--turquoise);
    --background-primary: var(--white);
    --background-secondary: var(--gray-light);
    --text-color: var(--text-primary);
    --text-muted: var(--text-secondary);
}

/* Typography */
.carousel-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Utility Classes */
.bg-pink-light {
    background-color: var(--pink-light);
}

.bg-blue-light {
    background-color: var(--blue-light);
}

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

.text-pink {
    color: var(--pink-strong);
}

.text-turquoise {
    color: var(--turquoise);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.categories-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 1.5rem auto 3rem;
    line-height: 1.6;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--pink-strong), var(--turquoise));
}

.section-padding {
    padding: 5rem 0;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-nav {
    margin-left: 2rem;
}

.nav-item {
    position: relative;
    margin: 0 0.2rem;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 1rem 1.2rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-item.show .nav-link {
    color: var(--primary-color) !important;
}

/* Dropdown Styles */
.dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
    margin-top: 0;
    border: none;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--primary-color);
    padding: 1rem 0;
}

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

.dropdown-item {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.1);
}

.dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 0;
}

.dropdown-divider {
    margin: 0.5rem 0;
    opacity: 0.1;
}

/* Cart and Account Buttons */
.btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.btn-primary {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        border-radius: 10px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        margin-left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
    }

    .dropdown-menu {
        display: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 1rem;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
    }

    .dropdown-item:hover {
        transform: none;
    }

    .dropdown-divider {
        display: none;
    }
}

/* Hero Section and Carousel */
.hero-section {
    margin-top: -76px; /* Compensate for fixed navbar */
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    max-width: 600px;
    padding: 0;
    text-align: left !important;
    left: 10% !important;
    right: auto !important;
}

.carousel-caption.text-start {
    left: 10%;
    right: auto;
}

.carousel-caption.text-end {
    right: 10%;
    left: auto;
}

.carousel-caption .subtitle {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-indicators {
    margin-bottom: 3rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Animation for carousel text */
.animated-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.carousel-item.active .animated-text {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .animated-text:nth-child(1) { transition-delay: 0.2s; }
.carousel-item.active .animated-text:nth-child(2) { transition-delay: 0.4s; }
.carousel-item.active .animated-text:nth-child(4) { transition-delay: 0.8s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .category-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        padding: 1rem;
        border-radius: 10px;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .category-card {
        margin-bottom: 15px;
    }
}

/* Product Card Styles */
.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pink-strong);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* Category Styles */
.categories-section {
    background-color: var(--gray-light);
    padding: 4rem 0;
}

.category-circle {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.category-circle:hover {
    transform: translateY(-5px);
}

.circle-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.circle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-circle:hover .circle-wrapper {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--pink-light);
}

.category-circle:hover img {
    transform: scale(1.1);
}

.category-title {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.category-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .circle-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-count {
        font-size: 0.8rem;
    }
}

.category-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.category-circle:hover {
    transform: translateY(-10px);
    color: var(--pink-strong);
}

.circle-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.circle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.category-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.view-more-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background-color: var(--white);
    color: var(--pink-strong);
    border: 2px solid var(--pink-strong);
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--pink-strong);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 81, 131, 0.3);
}

.categories-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 2rem;
}

.category-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.category-image-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.category-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .categories-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .category-item {
        flex: 0 0 calc(50% - 15px);
    }

    .category-image-circle {
        width: 120px;
        height: 120px;
    }
}

/* Category Card Styles */
.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Testimonial Section Styles */
.testimonios-section {
    background: linear-gradient(rgba(92, 198, 208, 0.95), rgba(230, 81, 131, 0.85)), url('../img/testimonios-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Testimonial Card Styles */
.testimonial-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
}

/* Contact Form Styles */
.contact-form .form-control {
    border: 2px solid var(--gray-light);
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--pink-strong);
    box-shadow: 0 0 0 0.2rem rgba(230, 81, 131, 0.25);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Button Styles */
.btn-primary {
    background-color: var(--pink-strong);
    border-color: var(--pink-strong);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: darken(var(--pink-strong), 10%);
    border-color: darken(var(--pink-strong), 10%);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--pink-strong);
    border-color: var(--pink-strong);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--pink-strong);
    color: white;
    transform: translateY(-2px);
}

/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Contact Page Styles */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header i {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.contact-info-card {
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-card i {
    transition: all 0.3s ease;
}

.contact-info-card:hover i {
    transform: scale(1.1);
}

/* FAQ Styles */
.accordion-button {
    background-color: var(--gray-light);
    border: none;
    box-shadow: none;
    padding: 1.2rem;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    color: var(--pink-strong);
    background-color: var(--pink-light);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--pink-strong);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Social Links */
.social-links a {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--pink-strong) !important;
    transform: translateY(-3px);
}

/* Newsletter Form */
.footer form .form-control {
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
}

.footer form .btn {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    filter: grayscale(15%);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%);
}

/* Category Cards */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.category-card img {
    transition: transform 0.3s ease;
}

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

/* Related Products Scroll */
.products-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink-strong);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    opacity: 0.9;
}

.scroll-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.scroll-btn.prev-btn {
    left: 10px;
}

.scroll-btn.next-btn {
    right: 10px;
}

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

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
    box-shadow: none;
}

.products-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 10px 0;
}

.products-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.products-scroll-container .product-card {
    flex: 0 0 280px;
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Products Page Styles */
.products-section {
    padding-top: 80px;
}

/* Desktop Styles */
.sort-bar {
    border-radius: 10px;
}

.sort-bar select {
    border-color: var(--gray-light);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sort-bar select:focus {
    border-color: var(--pink-strong);
    box-shadow: none;
}

.sort-bar select:hover {
    border-color: var(--pink-strong);
}

/* Mobile Styles */
.sort-bar-mobile {
    position: sticky;
    top: 56px;
    z-index: 1020;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-sort {
    padding: 0.8rem;
    border: none;
    background: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-sort.active,
.btn-sort:hover {
    color: var(--pink-strong);
    background-color: var(--pink-light);
}

.btn-sort i {
    font-size: 1rem;
}

/* Mobile Product Cards */
@media (max-width: 767.98px) {
    .products-section {
        padding-top: 56px;
    }

    .product-card {
        margin-bottom: 0;
    }

    .product-content {
        padding: 0.8rem !important;
    }

    .product-title {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .product-category {
        font-size: 0.75rem;
    }

    .product-price {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .product-card .btn {
        padding: 0.4rem;
        font-size: 0.85rem;
    }

    .product-badge {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
}

.modal-header {
    padding: 1rem 1.5rem;
}

.modal-title {
    color: var(--text-primary);
    font-weight: 600;
}

.list-group-item-action {
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.list-group-item-action:hover {
    color: var(--pink-strong);
    background-color: var(--pink-light);
}

.list-group-item-action.active {
    background-color: var(--pink-strong);
    border-color: var(--pink-strong);
}

.product-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
}

.product-card .product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

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

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

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-strong);
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price .original-price {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.product-price .discount {
    background-color: var(--pink-light);
    color: var(--pink-strong);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

/* Product Badges */
.product-badge {
    position: absolute;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 1;
    margin: 3px;
    right: 10px;
}

/* Posicionamiento de badges múltiples */
.product-badge:nth-of-type(1) { top: 10px; }
.product-badge:nth-of-type(2) { top: 35px; }
.product-badge:nth-of-type(3) { top: 60px; }
.product-badge:nth-of-type(4) { top: 85px; }

.badge-nuevo {
    background-color: var(--pink-light);
    color: var(--pink-strong);
}

.badge-sin-stock {
    background-color: #f8d7da;
    color: #dc3545;
}

.badge-oferta {
    background-color: #d4edda;
    color: #28a745;
}

.badge-ultimo {
    background-color: #fff3cd;
    color: #856404;
}

.product-card img {
    transition: transform 0.3s ease;
}

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

.product-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-price {
    font-weight: 600;
}

.pagination .page-link {
    color: var(--text-primary);
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 20px;
}

.pagination .page-item.active .page-link {
    background-color: var(--pink-strong);
    color: white;
}

.pagination .page-link:hover {
    background-color: var(--pink-light);
    color: var(--pink-strong);
}

.pagination .page-item.disabled .page-link {
    color: var(--text-secondary);
    background-color: transparent;
}

/* Product Detail Styles */
.product-detail-section {
    padding-top: 80px;
}

.product-images .main-image {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.product-images .main-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.product-images .main-image:hover img {
    transform: scale(1.05);
}

.thumbnails .thumbnail {
    cursor: pointer;
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.thumbnails .thumbnail:hover,
.thumbnails .thumbnail.active {
    opacity: 1;
}

.thumbnails .thumbnail img {
    transition: transform 0.3s ease;
}

.thumbnails .thumbnail:hover img {
    transform: scale(1.1);
}

.product-info {
    position: sticky;
    top: 90px;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1rem 0;
}

.product-category {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-price-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pink-strong);
}

.product-price-original {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.product-discount {
    background-color: var(--pink-light);
    color: var(--pink-strong);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.size-buttons .btn {
    min-width: 45px;
    border-radius: 8px;
}

.size-buttons .btn-check:checked + .btn {
    background-color: var(--pink-strong);
    border-color: var(--pink-strong);
    color: white;
}

.color-buttons {
    display: flex;
    gap: 1rem;
}

.color-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-check:checked + .color-btn {
    border-color: var(--pink-strong);
}

.btn-check:checked + .color-btn::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.quantity-input {
    display: flex;
    align-items: center;
    max-width: 150px;
}

.quantity-input input {
    text-align: center;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}

.quantity-input .btn {
    width: 40px;
    padding: 0.375rem;
}

.product-features li {
    margin-bottom: 0.5rem;
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .product-detail-section {
        padding-top: 60px;
    }

    .product-info {
        position: static;
        margin-top: 1rem;
    }

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

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

    .product-price-original {
        font-size: 1rem;
    }

    .size-buttons .btn {
        min-width: 40px;
        padding: 0.3rem;
    }

    .color-btn {
        width: 30px;
        height: 30px;
    }

    .quantity-input {
        max-width: 120px;
    }
}

/* Footer Styles */
.footer-section {
    background-color: var(--gray-light);
}

.footer-main {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--pink-strong);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-newsletter .form-control {
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 2rem 0 0 2rem;
    background-color: var(--white);
}

.footer-newsletter .btn {
    border-radius: 0 2rem 2rem 0;
    padding: 0.8rem 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--pink-strong);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: var(--white);
}

.payment-methods {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

/* Section Spacing - Consistent margins between sections */
#ofertas {
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.categories-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.promotional-banners {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

#novedades {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.payment-methods i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--pink-strong);
}

/* Newsletter Section */
.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 2rem 0 0 2rem;
    background-color: var(--gray-light);
}

.newsletter-form .btn {
    border-radius: 0 2rem 2rem 0;
    padding: 1rem 2rem;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    text-align: center;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

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

.product-card img {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
}

/* Newsletter Section */
#newsletter {
    background-color: var(--light-color);
}

.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    border: 1px solid #ddd;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
}

/* Footer Styles */
.footer-section {
    background-color: #2c3e50;
    color: #fff;
}

.footer-main {
    background-color: #2c3e50;
}

.footer-bottom {
    background-color: #243342;
    font-size: 0.9rem;
}

.widget-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b8c2cc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact p {
    color: #b8c2cc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

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

.footer-newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 1rem;
}

.footer-newsletter .form-control::placeholder {
    color: #b8c2cc;
}

.footer-newsletter .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #b8c2cc;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff;
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    color: #b8c2cc;
    font-size: 1.5rem;
}

.payment-methods i {
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: #fff;
}

/* Floating Buttons */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background: #ff6b6b;
    color: white;
    text-align: center;
    z-index: 99;
}

.back-to-top:hover {
    background: #ff5252;
    color: white;
    text-decoration: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    z-index: 99;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

/* Product Cards */
.product-card {
    position: relative;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.product-card .card-img-top {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 4px;
}

.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3em;
}

.product-badge {
    position: absolute;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.discount {
    background-color: var(--pink-light);
    color: var(--pink-strong);
    top: 10px;
    left: 10px;
}

.product-badge.stock {
    background-color: #E8F5E9;
    color: #2E7D32;
    top: 10px;
    right: 10px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0.5rem 0;
}

.original-price {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.discount-price {
    color: var(--pink-strong);
    font-weight: 600;
    font-size: 1.2rem;
}

.price-symbol {
    font-size: 0.8em;
    margin-right: 1px;
}

@media (max-width: 768px) {
    .product-card .card-img-top {
        height: 200px;
    }
    .product-card .card-title {
        font-size: 0.9rem;
    }
    .product-card .price-wrapper {
        gap: 8px;
    }
    .product-card .original-price {
        font-size: 0.85rem;
    }
    .product-card .discount-price {
        font-size: 1.1rem;
    }
    .product-card .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Product Badges */
.product-badge {
    position: absolute;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    right: 10px;
    width: fit-content;
    min-width: 60px;
    text-align: center;
}

.product-badge.discount {
    background-color: var(--pink-light);
    color: var(--pink-strong);
    top: 10px;
}

.product-badge.stock {
    background-color: #E8F5E9;
    color: #2E7D32;
    top: 45px;
}

/* Section Spacing */
section {
    padding: 40px 0;
    position: relative;
}

section + section {
    margin-top: 15px;
}

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

    section + section {
        margin-top: 10px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.bg-gray-light {
    background-color: #f8f9fa;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
}

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



@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.categories-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.categories-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.categories-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.categories-section .view-all {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.categories-grid {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
    width: 100%;
    animation: scroll 30s linear infinite;
    mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}

@media (max-width: 768px) {
    .categories-grid {
        gap: 1rem;
        padding: 0.5rem 0;
    }
}

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

.category-item {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}



.category-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    background-color: #f8f8f8;
    position: relative;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .category-image-circle {
        width: 140px;
        height: 140px;
        margin-bottom: 0.5rem;
    }
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image {
    transform: scale(1.05);
}

.category-title {
    font-size: 1rem;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.category-count {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.navigation-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    display: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 5 - 2rem * 4));
    }
}

@media (max-width: 768px) {
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 5 - 1rem * 4));
        }
    }
}

.categories-grid:hover {
    animation-play-state: paused;
}

.categories-grid::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(90deg, #fff 0%, transparent 5%, transparent 95%, #fff 100%);
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Product Cards */
.product-card {
    position: relative;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.product-card .card-img-top {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    flex-shrink: 0;
}

.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
}

.product-card .card-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3em;
    color: #2c3e50;
    font-weight: 500;
}

.product-card .price-wrapper {
    margin-top: auto;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.product-card .original-price {
    color: #95a5a6;
    font-size: 0.95rem;
    text-decoration: line-through;
}

.product-card .discount-price {
    color: #2c3e50;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.product-card .price-symbol {
    font-size: 0.85em;
    vertical-align: top;
    color: inherit;
}

.product-badge {
    position: absolute;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.discount {
    background-color: var(--pink-light);
    color: var(--pink-strong);
    top: 10px;
    left: 10px;
}

.product-badge.stock {
    background-color: #E8F5E9;
    color: #2E7D32;
    top: 10px;
    right: 10px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1);
}

.floating-button.whatsapp {
    background-color: #25D366;
}

.floating-button.back-to-top {
    background-color: #6c757d;
}

.btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .carousel-caption {
        transform: translateY(-50%) !important;
        left: 5% !important;
        right: 5% !important;
        padding: 1rem;
        max-width: 100%;
    }

    .carousel-heading {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

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

    .hero-section .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .navbar {
        padding: 0.5rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-nav {
        margin-left: 0;
        padding: 1rem 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
        border-radius: 5px;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background-color: var(--gray-light);
    }

    .dropdown-item {
        padding: 0.8rem 2rem;
    }
    
    .category-card {
        margin-bottom: 15px;
    }

    /* Ajustes de texto para móvil */
    .product-content h3 {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 0.3rem;
    }

    .product-price {
        font-size: 1.2rem;
        margin: 0.3rem 0;
        gap: 0.3rem;
        flex-wrap: wrap;
    }

    .product-price .original-price {
        font-size: 0.9rem;
    }

    .product-price .discount {
        font-size: 0.8rem;
        padding: 0.15rem 0.4rem;
        margin-left: 0.3rem;
    }

    /* Ajuste de espaciado */
    .card-body {
        padding: 1rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .product-card {
        margin-bottom: 0.5rem;
    }

    .product-card .card-body {
        padding: 0.75rem;
    }

    .product-card .card-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        height: 2.5em;
    }

    .product-card .price-wrapper {
        margin-bottom: 0.5rem;
        gap: 8px;
    }

    .product-card .original-price {
        font-size: 0.8rem;
    }

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

    .product-badge {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
}

/* ===== AUTOMATIC SECTION BACKGROUNDS ===== */
/* Eliminar separaciones entre secciones */
section {
    margin: 0 !important;
    padding-top: 4rem;
    padding-bottom: 4rem;
    border: none !important;
    outline: none !important;
}

/* Eliminar cualquier margen o padding del body y contenedores principales */
body {
    margin: 0;
    padding: 0;
}

/* Asegurar que no haya espacios entre secciones adyacentes */
section + section {
    margin-top: 0 !important;
    border-top: none !important;
}

/* Eliminar separaciones de elementos específicos */
.container-fluid {
    padding: 0 !important;
}

/* Ajustar navbar para que no cree separación */
.navbar {
    margin-bottom: 0 !important;
}

/* Fondos automáticos alternados para secciones */
section:nth-child(odd) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    margin: 0 !important;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
    position: relative;
    margin: 0 !important;
}

/* Efectos decorativos para secciones */
section:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 81, 131, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(92, 198, 208, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(252, 213, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(210, 242, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Asegurar que el contenido esté por encima del fondo */
section .container {
    position: relative;
    z-index: 10;
}

/* Asegurar que todos los elementos de contenido estén visibles */
section .row,
section .col-lg-6,
section .col-lg-3,
section .col-6,
section .product-card,
section .category-item,
section .testimonial-card,
section h1, section h2, section h3, section h4, section h5, section h6,
section p, section a, section button {
    position: relative;
    z-index: 5;
}

/* Animaciones sutiles para los fondos */
section::before {
    animation: backgroundFloat 20s ease-in-out infinite;
}

section:nth-child(even)::before {
    animation: backgroundFloat 25s ease-in-out infinite reverse;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(1.02);
        opacity: 0.8;
    }
}

/* Efectos adicionales para secciones */
section {
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Partículas flotantes decorativas */
section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkle {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-100px);
    }
}

/* Fondos especiales para secciones específicas */
.hero-section {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%) !important;
    margin: 0 !important;
    padding: 4rem 0 !important;
}

.hero-section::before {
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%) !important;
}

.categories-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    margin: 0 !important;
    padding: 4rem 0 !important;
}

.promotional-banners {
    margin: 0 !important;
}

.testimonios-section {
    background: linear-gradient(135deg, var(--pink-strong) 0%, var(--turquoise) 100%) !important;
    color: white;
    margin: 0 !important;
    padding: 4rem 0 !important;
}

.testimonios-section::before {
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%) !important;
}

.footer-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Restaurar padding consistente para secciones */
.section-padding {
    padding: 4rem 0 !important;
}

/* ===== PROMOTIONAL BANNERS STYLES ===== */
.promotional-banners {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%) !important;
    position: relative;
    margin: 0 !important;
}

.promotional-banners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(255, 182, 193, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.promo-banner {
    display: block;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Estilos para imágenes de banners */
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

/* ===== BENEFITS SECTION STYLES ===== */
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 81, 131, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(92, 198, 208, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefit-card {
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-strong), var(--turquoise));
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--pink-strong);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Responsive para benefits */
@media (max-width: 768px) {
    .benefit-card {
        padding: 1.5rem 0.75rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
}

.banner-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.banner-text {
    flex: 1;
    padding: 2rem 2.5rem;
    z-index: 2;
}

.banner-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    opacity: 0.9;
}

.btn-banner {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: inherit;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.banner-gifts .btn-banner {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.banner-pajamas .btn-banner {
    background-color: rgba(44, 62, 80, 0.1);
    border-color: rgba(44, 62, 80, 0.2);
    color: #2C3E50;
}

.btn-banner:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: inherit;
}

.banner-image {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 15px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Iconos decorativos */
.gift-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.star-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
}

.star-decoration i {
    font-size: 1.2rem;
    opacity: 0.4;
    animation: twinkle 2s ease-in-out infinite;
}

.star-decoration i:nth-child(2) {
    animation-delay: 0.5s;
}

.star-decoration i:nth-child(3) {
    animation-delay: 1s;
}

/* Animaciones */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Responsive para banners */
@media (max-width: 768px) {
    .promotional-banners {
        padding: 2rem 0;
    }
    
    .promo-banner {
        height: auto;
        min-height: 250px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text {
        order: 2;
        padding: 2rem 1.5rem;
    }
    
    .banner-image {
        order: 1;
        height: auto;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
    }
    
    .gift-icon {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
    }
    
    .star-decoration {
        top: 10px;
        right: 15px;
    }
    
    .star-decoration i {
        font-size: 1rem;
    }
}

/* ===== FLASH OFFERS SECTION STYLES - NEON DESIGN ===== */
.flash-offers-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #ff6b9d 20%, #1a1a2e 80%, #17a2b8 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.flash-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flash-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.flash-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.flash-title i {
    color: #ffeb3b;
    font-size: 2rem;
    animation: flash 0.8s infinite;
    filter: drop-shadow(0 0 10px #ffeb3b);
}

@keyframes flash {
    0%, 50% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.flash-timer {
    display: flex;
    gap: 1rem;
}

.timer-unit {
    text-align: center;
    color: white;
}

.timer-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.flash-button {
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    color: #333;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border: 3px solid #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.flash-button:hover {
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    color: #333;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: none;
}

.flash-offers-scroll {
    display: flex;
    gap: 1rem;
    animation: scrollOffers 15s linear infinite;
}

.flash-offer-item {
    background: rgba(255, 255, 255, 0.25);
    padding: 1rem 2rem;
    border-radius: 20px;
    text-align: center;
    min-width: 150px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    transition: all 0.3s ease;
}

.flash-text {
    display: block;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.flash-discount {
    display: block;
    color: #ffeb3b;
    font-size: 1.4rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

@keyframes scrollOffers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsive flash offers */
@media (max-width: 768px) {
    .flash-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .flash-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .flash-title {
        font-size: 1.5rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .flash-offers-scroll {
        justify-content: center;
        animation: none;
    }
    
    .flash-offer-item {
        min-width: 100px;
        padding: 0.5rem 1rem;
    }
}

/* ===== NEON EFFECTS AND NEW ELEMENTS ===== */
.neon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(23, 162, 184, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 162, 184, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.4), transparent);
    top: 20%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.3), transparent);
    top: 60%;
    right: 15%;
    animation: float2 10s ease-in-out infinite;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3), transparent);
    top: 10%;
    right: 30%;
    animation: float3 12s ease-in-out infinite;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.4), transparent);
    bottom: 20%;
    left: 20%;
    animation: float4 9s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(40px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(360deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    50% { transform: translate(-30px, 15px) rotate(-360deg); }
}

.flash-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.flash-header {
    margin-bottom: 3rem;
}

.neon-title {
    position: relative;
}

.neon-text {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 5px #17a2b8,
        0 0 10px #17a2b8,
        0 0 15px #17a2b8,
        0 0 20px #17a2b8;
    animation: neonFlicker 2s infinite alternate;
}

.neon-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ff6b9d;
    text-shadow: 
        0 0 5px #ff6b9d,
        0 0 10px #ff6b9d,
        0 0 15px #ff6b9d;
    animation: neonFlicker2 1.5s infinite alternate;
    z-index: -1;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes neonFlicker2 {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.neon-subtitle {
    color: #17a2b8;
    font-size: 1.2rem;
    margin-top: 1rem;
    text-shadow: 0 0 10px #17a2b8;
    animation: pulse 2s infinite;
}

.countdown-container {
    margin: 3rem 0;
}

.countdown-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

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

.time-circle {
    position: relative;
    margin-bottom: 1rem;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke: #17a2b8;
    stroke-width: 3;
    fill: transparent;
    stroke-dasharray: 220;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 10px #17a2b8);
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0%, 100% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 50; }
}

.time-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px #17a2b8;
}

.time-label {
    color: #17a2b8;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 0 5px #17a2b8;
}

.time-separator {
    font-size: 2rem;
    color: #ff6b9d;
    font-weight: 900;
    text-shadow: 0 0 10px #ff6b9d;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.offers-carousel {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.offer-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #17a2b8;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    min-width: 180px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(23, 162, 184, 0.3),
        inset 0 0 20px rgba(23, 162, 184, 0.1);
    transition: all 0.3s ease;
    animation: cardFloat 3s ease-in-out infinite;
}

.offer-card:nth-child(2) {
    animation-delay: -1s;
}

.offer-card:nth-child(3) {
    animation-delay: -2s;
}

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

.offer-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(23, 162, 184, 0.5),
        inset 0 0 30px rgba(23, 162, 184, 0.2);
    border-color: #ff6b9d;
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

.offer-discount {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 15px #17a2b8;
    line-height: 1;
}

.offer-text {
    color: #17a2b8;
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    text-shadow: 0 0 5px #17a2b8;
}

.offer-category {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
}

.flash-cta {
    margin-top: 3rem;
}

.neon-button {
    position: relative;
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid #17a2b8;
    color: #17a2b8;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    text-shadow: 0 0 10px #17a2b8;
    box-shadow: 
        0 0 20px rgba(23, 162, 184, 0.3),
        inset 0 0 20px rgba(23, 162, 184, 0.1);
}

.neon-button:hover {
    color: #000;
    background: #17a2b8;
    box-shadow: 
        0 0 30px rgba(23, 162, 184, 0.8),
        inset 0 0 30px rgba(23, 162, 184, 0.3);
    text-shadow: none;
}

.neon-button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.neon-button:hover .neon-button-glow {
    left: 100%;
}

/* Responsive neon design */
@media (max-width: 768px) {
    .neon-text {
        font-size: 2.5rem;
    }
    
    .countdown-box {
        gap: 1rem;
    }
    
    .time-number {
        font-size: 1.4rem;
    }
    
    .offers-carousel {
        gap: 1rem;
    }
    
    .offer-card {
        min-width: 150px;
        padding: 1.5rem 1rem;
    }
    
    .offer-discount {
        font-size: 2rem;
    }
    
    .neon-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== FOOTER MARGIN ADJUSTMENTS ===== */
.footer-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.footer-main {
    padding: 2rem 0 1rem 0 !important;
}

.footer-widget {
    margin-bottom: 2rem;
}

.widget-title {
    margin-bottom: 1.5rem !important;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Footer contact responsive */
@media (max-width: 768px) {
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
        display: flex;
        align-items: center;
    }
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-newsletter .input-group {
    margin-bottom: 1rem !important;
}

.social-links {
    margin-top: 1.5rem !important;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 1rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods i {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    .footer-main {
        padding: 1.5rem 0 0.5rem 0 !important;
    }
    
    .footer-widget {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .widget-title {
        margin-bottom: 1rem !important;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .col-md-6:last-child {
        margin-top: 1rem;
    }
}

/* Navbar Styles - Eliminar espacios */
.navbar.sticky-top {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Eliminar espacios de Bootstrap por defecto */
body {
    padding-top: 0 !important;
}

/* Asegurar que no haya espacios entre nav y hero */
nav + section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 550px; /* Altura fija de 550px */
    overflow: hidden;
    margin-top: 0 !important; /* Sin margen para pegarlo al menú */
    margin-bottom: 0 !important; /* Sin margen para pegarlo al menú */
    padding-top: 0 !important; /* Sin padding superior */
}

.hero-carousel .carousel {
    height: 100%;
}

.hero-carousel .carousel-inner {
    height: 100%;
}

.hero-carousel .carousel-item {
    height: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Alineado arriba */
    transition: transform 0.3s ease;
    filter: brightness(1.05) contrast(1.1);
}

/* Placeholders del Hero - COMENTADO (usando imagen real) */
/*
.hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.hero-placeholder-1 {
    background: linear-gradient(135deg, var(--pink-light), var(--pink-strong));
}

.hero-placeholder-2 {
    background: linear-gradient(135deg, var(--blue-light), var(--turquoise));
}

.hero-placeholder-3 {
    background: linear-gradient(135deg, var(--pink-strong), var(--turquoise));
}

.hero-content {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: heroFloat 3s ease-in-out infinite;
}

.hero-content i {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

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

.hero-carousel:hover .hero-placeholder {
    transform: scale(1.02);
}
*/

/* Efecto hover en las imágenes reales */
.hero-carousel:hover .hero-image {
    transform: scale(1.02);
}

/* Clase para espaciado de secciones */
.section-padding {
    padding: 4rem 0;
}

/* Margen superior para la sección de ofertas después del hero */
#ofertas {
    margin-top: 3rem;
}

/* Estilos para los controles del carrusel */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 81, 131, 0.8);
    border-radius: 50%;
    border: none;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev {
    left: 20px;
}

.hero-carousel .carousel-control-next {
    right: 20px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(230, 81, 131, 1);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
}

/* Estilos para los indicadores */
.hero-carousel .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    background-color: var(--pink-strong);
    border-color: var(--pink-strong);
    transform: scale(1.2);
}

.hero-carousel .carousel-indicators button:hover {
    background-color: rgba(230, 81, 131, 0.7);
    border-color: var(--pink-strong);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .hero-carousel {
        height: 650px; /* Altura fija para móviles */
        margin-top: 0 !important; /* Sin margen superior */
        margin-bottom: 0 !important; /* Sin margen inferior */
        padding-top: 0 !important; /* Sin padding superior */
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .hero-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .hero-carousel .carousel-control-next {
        right: 10px;
    }
    
    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        width: 18px;
        height: 18px;
        background-size: 18px 18px;
    }
    
    .hero-carousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    /* Responsive para placeholders en móviles - COMENTADO */
    /*
    .hero-content h3 {
        font-size: 1.8rem;
    }
    
    .hero-content i {
        font-size: 3rem !important;
    }
    */
}

/* Navbar adjustments */
.navbar {
    margin-bottom: 0 !important;
}

/* Banner Principal Styles */
.banner-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 550px;
    overflow: hidden;
    background: var(--gray-light);
    margin: 0;
    margin-top: 0 !important;
    padding: 0;
    box-sizing: border-box;
    display: block;
}

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

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.banner-slide a:hover .banner-image {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Controles de navegación */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.banner-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-nav i {
    font-size: 1.2rem;
}

/* Indicadores */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        margin-bottom: 0 !important;
    }
    
    .banner-section {
        height: 350px;
        width: 100%;
        max-width: 100vw;
        margin-top: 0 !important;
    }
    
    .banner-nav {
        width: 40px;
        height: 40px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-nav i {
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}
