/* MalindaNicoleta - Custom Styles */
:root {
    --primary-color: #8B5A3C;
    --secondary-color: #D4AF8C;
    --accent-color: #F4E4C1;
    --text-dark: #2C1810;
    --text-light: #6B5B73;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    /* Fondo melocotón claro */
    background-color: #FFE5D1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
}

/* Store Notice */
.woocommerce-store-notice {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.woocommerce-store-notice__dismiss-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 400;
}

.woocommerce-store-notice__dismiss-link:hover {
    color: var(--accent-color);
}

/* Top Navigation */
.top-navbar {
    /* Barra de navegación blanca bajo el encabezado */
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 14px;
}

.top-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.top-navbar .navbar-nav.ms-auto {
    margin-left: auto;
}

.top-navbar .nav-link.cart-icon {
    position: relative;
    margin-left: 8px;
}

.top-navbar .nav-link {
    color: #333333; /* gris oscuro */
    padding: 5px 15px;
    transition: all 0.2s ease;
}

.top-navbar .nav-link:hover {
    color: #111111;
    background-color: #f5f5f5; /* efecto sutil hover */
    border-radius: 4px;
}

.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
    z-index: 2;
}

/* Banner Section */
.banner-section {
    background-color: #f5f5f5;
    background-image: url("../img/acu.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 10px 0;
    text-align: center;
    overflow: hidden;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin: 10px 0 0 0;
    font-weight: 300;
}

/* Main Navigation */
.main-navbar {
    background-color: var(--white);
    border-bottom: 2px solid var(--border-color);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.main-navbar .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.main-navbar .navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background-color: var(--light-gray);
    border-radius: 5px;
}

/* Active navigation link - Melon color */
.main-navbar .navbar-nav .nav-link.active {
    color: #e88c8c;
    font-weight: 700;
    transform: translateY(-2px);
    border-radius: 5px;
}

.main-navbar .navbar-nav .nav-link.active:hover {
    color: #e66363;
    transform: translateY(-3px);
}

.main-navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 10px 0;
}

.main-navbar .dropdown-item {
    color: var(--text-dark);
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.main-navbar .dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

/* Secondary Navigation */
.secondary-navbar {
    background-color: var(--light-gray);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.secondary-navbar .nav-link {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    transition: color 0.3s ease;
}

.secondary-navbar .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--accent-color), var(--white));
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 40px;
    border-radius: 2px;
}

.spacer {
    height: 60px;
}

/* Products Section */
.products-section {
    padding: 40px 0 80px;
    background-color: var(--white);
}

.section-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 800px;
}

/* Products Sidebar */
.products-sidebar {
    background: var(--white);
    border-right: 1px solid var(--border-color);
    padding: 0 20px;
    height: fit-content;
}

.products-sidebar h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Box */
.search-box {
    margin-bottom: 30px;
}

.search-box .form-control {
    border: 1px solid var(--border-color);
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    padding: 10px 15px;
}

.search-box .btn {
    border: 1px solid var(--border-color);
    border-left: none;
    border-radius: 0 5px 5px 0;
    background: var(--light-gray);
    color: var(--text-light);
}

.search-box .btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Categories List */
.category-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.category-menu li {
    margin-bottom: 8px;
}

.category-link {
    display: block;
    color: #777777; /* azul suave para sidebar */
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.category-link:hover,
.category-link.active {
    color: #2b2b2b; /* tono ligeramente más oscuro */
    text-decoration: none;
}

/* Workshop Banner */
.workshop-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0 30px 0;
}

.workshop-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.workshop-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 15px 15px;
    color: var(--white);
}

.workshop-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* Products Grid Container */
.products-grid-container {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    padding: 0;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-rating {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
}

.product-rating .stars {
    color: #ffc107;
    margin-right: 3px;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.product-price .original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.85rem;
    margin-left: 5px;
}

/* Remove old filter buttons styles for products section */
.filter-buttons {
    display: none;
}

/* WooCommerce Products Grid - Updated */
.woocommerce {
    margin: 0;
}

.products {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.product {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product .woocommerce-LoopProduct-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product:hover img {
    transform: scale(1.1);
}

.product .woocommerce-loop-product__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 15px 15px 8px;
    line-height: 1.3;
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product .price {
    margin: 0 15px 15px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.product .add_to_cart_button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 8px 15px;
    margin: 0 15px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: calc(100% - 30px);
    cursor: pointer;
}

.product .add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 90, 60, 0.3);
}

.product .add_to_cart_button:disabled {
    background: var(--border-color);
    color: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.filter-buttons {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 10px 25px;
    margin: 0 10px 10px 0;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* WooCommerce Products Grid */
.woocommerce {
    margin: 0;
}

.products {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product .woocommerce-LoopProduct-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product:hover img {
    transform: scale(1.05);
}

.product .woocommerce-loop-product__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 15px 15px 10px;
    line-height: 1.3;
}

.product .price {
    margin: 0 15px 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product .add_to_cart_button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 12px 20px;
    margin: 0 15px 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: calc(100% - 30px);
    cursor: pointer;
}

.product .add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 90, 60, 0.3);
}

.product .add_to_cart_button:disabled {
    background: var(--border-color);
    color: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-icon + h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-icon + h5 + p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px;
}

.blog-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-card .btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-card .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-info  {
    padding: 0px 0 20px 0;
}

.contact-info h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #8b5a3c42;
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--accent-color);
}

/* Loading */
.loading {
    text-align: center;
    padding: 60px 0;
}

.loading .spinner-border {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 90, 60, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .main-navbar .navbar-nav {
        text-align: center;
    }
    
    .main-navbar .nav-link {
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .products {
        grid-template-columns: 1fr;
    }
    
    .brand-logo {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 150px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        margin: 0 5px 10px 0;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Cart Badge Animation */
.cart-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.25);
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        padding: 20px 0;
    }
}

/* Popular Products Badge */
.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-badge i {
    margin-right: 2px;
}

/* Popular products grid - Responsive layout */
#popularProductsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
    justify-items: center;
}

/* Aplicar el mismo estilo de tienda a la sección de populares (inicio) */
#popular-products {
    background: rgb(255, 242, 227); /* mismo fondo melocotón */
    padding: 40px 0; /* mismo padding vertical */
}

#popular-products .container {
    background: #ffffff; /* contenedor blanco */
    border-radius: 10px;
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.08);
    max-width: 1100px; /* igual a store-container */
    margin: 0 auto;
    padding: 40px;
}

@media (max-width: 768px) {
    #popular-products .container {
        margin: 0 15px;
        border-radius: 5px;
        padding: 25px;
        justify-self: center;
    }
}

/* Ensure we have at most 4 columns on large screens */
@media (min-width: 1200px) {
    #popularProductsGrid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    #popularProductsGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    #popularProductsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    #popularProductsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    #popularProductsGrid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Breadcrumb styles */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--primary-color);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Breadcrumbs dentro de la tienda: bonito y con separador negro */
.store-container .breadcrumbs-section {
    padding: 10px 30px 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dbdbdb;
}

.store-container .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;

}

.store-container .breadcrumb .breadcrumb-item a {
    color: #535353;
    font-weight: 400;
    text-decoration: none;
    font-size: 12px;
}

.store-container .breadcrumb .breadcrumb-item.active,
.store-container .breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

/* Popular Product Cards - Clean Design */
.popular-product-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.popular-product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    padding: 12px;
}

.popular-product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 36px;
}

.product-price {
    margin-top: auto;
}

.product-price .price {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.product-price .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Badges */
.popular-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #00b894;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mini Sessions Section */
.mini-sessions-section {
    background-color: #f5f5f5;
    background-image: url("../img/acu.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Overlapped card + image layout */
.mini-sessions-wrapper {
    position: relative;
    min-height: 450px;
}

.mini-sessions-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mini-sessions-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-sessions-card {
    position: relative;
    margin-left: auto;
    width: 65%;
    background: #fff;
    border-radius: 7px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(220px);
}

.mini-sessions-card .lead {
    color: var(--text-light);
}

/* Estilos para pantallas grandes */
@media (min-width: 1200px) {
    .mini-sessions-section {
        padding: 150px 0;
    }
    
    .mini-sessions-wrapper {
        min-height: 500px;
    }
    
    .mini-sessions-photo {
        width: 65%;
        height: 450px;
    }
    
    .mini-sessions-card {
        width: 70%;
        padding: 60px;
        transform: translateY(250px);
    }
}

@media (max-width: 991px) {
    .mini-sessions-wrapper { min-height: unset; }
    .mini-sessions-photo { position: relative; width: 100%; height: 240px; }
    .mini-sessions-card { width: 85%; transform: translateY(-85px); margin-top: 20px; }
}

/* About Section Updates */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    padding-right: 2rem;
}

.about-image-container img {
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.about-image-container:hover img {
    transform: scale(1.02);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Loading States */
.loading {
    text-align: center;
    padding: 2rem;
}

.loading .spinner-border {
    color: var(--primary-color);
}

/* Image Preview in Admin */
.image-preview {
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
}

/* Secciones Estáticas */
.features-section {
    background-color: #FFFFFF;
    padding: 60px 0;
    border-bottom: 3px solid #E8F5E8;
}

.feature-item {
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #4ECDC4;
    margin-bottom: 15px;
}

.feature-item h6 {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.custom-order-section {
    background: linear-gradient(135deg, #E8F5E8 0%, #FFB6C1 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.custom-order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="watercolor2" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="20" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="25" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23watercolor2)"/></svg>');
    opacity: 0.2;
}

.custom-order-content {
    position: relative;
    z-index: 2;
}

.custom-order-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.custom-order-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-custom-order {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-custom-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
    color: white;
    text-decoration: none;
}

.custom-order-image {
    position: relative;
    z-index: 2;
}

.custom-order-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid white;
}

.image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
    border-radius: 15px;
    z-index: 1;
    transform: translate(20px, -20px);
}

.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.bubble-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 15px;
    height: 15px;
    top: 40%;
    left: 60%;
    animation-delay: 1s;
}

.bubble-3 {
    width: 25px;
    height: 25px;
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.bubble-4 {
    width: 18px;
    height: 18px;
    top: 80%;
    left: 70%;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Banner Section Mejorado */
.banner-section {
    background-color: #f5f5f5;
    background-image: url("../img/acu.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 10px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-logo-container {
    position: relative;
    z-index: 2;
}

.logo-icon {
    margin-bottom: 20px;
}

.logo-svg {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: block;
}

.logo-image {
    width: 300px;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.brand-logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.brand-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Store Page Layout - Centered Content with Background */
.store-page-wrapper {
    background: rgb(255, 242, 227);
    min-height: 100vh;
    padding: 40px 0;
}

.store-container {
    background: white;
    border-radius: 10px;
    /* destacar el área principal con sombra suave */
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1100px; /* reduce width to aumentar espacio lateral melocotón */
    margin: 0 auto;
    padding: 0;
}

.store-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.store-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.store-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 10px 0 0 0;
}

.store-content {
    padding: 20px;
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .top-navbar .navbar-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .top-navbar .nav-link.cart-icon {
        order: 3;
        position: relative;
    }
    .top-navbar .nav-link {
        padding: 5px 10px;
    }
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .mini-sessions-text .lead {
        font-size: 1.1rem;
    }
    
    .custom-order-title {
        font-size: 2rem;
    }
    
    .feature-item h6 {
        font-size: 0.8rem;
    }
    
    .image-decoration {
        width: 150px;
        height: 150px;
        transform: translate(10px, -10px);
    }
    
    .store-page-wrapper {
        padding: 20px 0;
    }
    
    .store-container {
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .store-header {
        padding: 20px 25px;
    }
    
    .store-title {
        font-size: 2rem;
    }
    
    .store-content {
        padding: 25px;
    }
}

/* Empresas Section Styles */
.empresas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.empresas-content {
    padding-right: 2rem;
}

.empresas-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.empresas-features {
    margin: 2rem 0;
}

.empresas-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.empresas-features .feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.empresas-features .feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.empresas-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empresas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.empresas-image:hover img {
    transform: scale(1.05);
}

/* Quote Section Styles */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.quote-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.quote-card .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.quote-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.quote-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

.quote-card textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.quote-card .btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.quote-card .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* Bodas Section Styles */
.bodas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fef7f7 100%);
}

.bodas-content {
    padding-right: 2rem;
}

.bodas-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.bodas-features {
    margin: 2rem 0;
}

.bodas-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.bodas-features .feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #e91e63;
}

.bodas-features .feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.bodas-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bodas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bodas-image:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for empresas section */
@media (max-width: 991px) {
    .empresas-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .empresas-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .empresas-subtitle {
        font-size: 1.5rem;
    }
    
    .empresas-features .feature-item {
        margin-bottom: 0.8rem;
    }
    
    .quote-card {
        padding: 30px 20px;
    }
    
    .quote-card .btn-success {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .bodas-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .bodas-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .bodas-subtitle {
        font-size: 1.5rem;
    }
    
    .bodas-features .feature-item {
        margin-bottom: 0.8rem;
    }
}