/* Domicilio Nogal Template Styles */

/* Main Wrapper */
#domicilio-nogal-wrapper {
    background-color: #FBF5ED; /* Light beige background */
}

/* Hero Section Bottom Overlay */
#domicilio-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px; /* Height of the beige section at bottom */
    background-color: #FBF5ED;
    z-index: 5;
}

/* Hero Section */
#domicilio-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #f8f9fa; /* Light grey for the checkered background */
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(45deg, #e9ecef 25%, transparent 25%), 
        linear-gradient(-45deg, #e9ecef 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #e9ecef 75%), 
        linear-gradient(-45deg, transparent 75%, #e9ecef 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.sede-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sede-background-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.hero-overlay .pixel-flower {
    max-width: 80px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-family: "Proxima Nova Extra Condensed", sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.hero-pattern {
    position: absolute;
    top: 75%;
    right: 2.5%;
    transform: translateY(-50%);
    width: 270px;
    z-index: 10;
}

.hero-pattern img {
    width: 100%;
    height: auto;
    z-index: 10;
}

/* Food Categories Navigation */
#food-categories {
    background-color: #FBF5ED;
    padding: 30px 0;
    border-bottom: 1px solid #E0E0E0;
}

.categories-nav {
    overflow-x: auto;
    white-space: nowrap;
}

.categories-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}

.category-link {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-link:hover {
    background-color: #f0f0f0;
    text-decoration: none;
    color: #333;
}

.category-link.active {
    background-color: #E0E0E0;
    border-color: #ccc;
    color: #333;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background-color: #FBF5ED;
}

/* Override any conflicting styles with more specific selectors */
#domicilio-nogal-wrapper .products-section .products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 300px) !important;
    gap: 30px !important;
    padding: 0 15px !important;
    justify-content: start !important;
    width: auto !important;
    max-width: none !important;
}

#domicilio-nogal-wrapper .products-section .products-grid .combo-card-personalizado {
    width: 300px !important;
    max-width: 300px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.section-title {
    font-family: "Proxima Nova Extra Condensed", sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #000;
    text-align: left;
    margin-bottom: 40px;
    padding-left: 15px;
}

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 300px) !important;
    gap: 30px !important;
    padding: 0 15px !important;
    justify-content: start !important;
    width: auto !important;
    max-width: none !important;
}

/* Product Cards - Using the existing combo-card-personalizado class */
.combo-card-personalizado {
    background: #fff;
    border: 1px solid #000;
    border-radius: 0; /* Square corners */
    overflow: hidden;
    box-shadow: none; /* No shadows */
    transition: none; /* No hover effects */
    width: 300px !important;
    max-width: 300px !important;
    display: flex;
    flex-direction: column;
}

.combo-card-personalizado:hover {
    transform: none;
    box-shadow: none;
}

.combo-header {
    background-color: #FAD3DB; /* Light pink header */
    padding: 15px 20px;
    border-bottom: 1px solid #000;
    border-radius: 0; /* Square corners */
    min-height: 80px; /* Fixed height for all headers */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.combo-header h2 {
    font-family: "Proxima Nova Extra Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

/* Override WooCommerce title margins for custom cards */
.combo-card-personalizado .combo-header .woocommerce-loop-product__title {
    margin: 0 0 8px 0 !important;
}

.combo-price {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.product-note {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    margin-top: 4px;
    font-style: italic;
}

.combo-imagen {
    padding: 15px;
    text-align: center;
    background-color: #FBF5ED;
    border-radius: 0; /* Square corners */
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.combo-imagen img {
    width: 100%;
    height: auto;
    max-height: 120px;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 0; /* Square corners */
}

.combo-footer {
    padding: 0; /* No padding to make button full width */
    text-align: center;
    background-color: #FBF5ED;
    border-radius: 0; /* Square corners */
    margin-top: auto; /* Push footer to bottom */
}

.combo-footer .btn {
    background-color: #F9CB38; /* Yellow button */
    color: #000;
    border: 2px solid #000;
    border-bottom: none;
    padding: 12px 0; /* Vertical padding only */
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 0; /* Square corners */
    cursor: pointer;
    transition: none; /* No hover effects */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%; /* Full width */
    display: block; /* Block element */
    margin: 0;
    line-height: 1;
}

.combo-footer .btn:hover {
    background-color: #F9CB38; /* Same color on hover */
    transform: none; /* No transform */
}

/* Responsive Design */
@media (max-width: 1024px) {
    #domicilio-nogal-wrapper .products-section .products-grid {
        grid-template-columns: repeat(2, 300px) !important;
        gap: 25px !important;
        justify-content: start !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        left: 50%;
    }
    
    .categories-list {
        gap: 15px;
    }
    
    .category-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    #domicilio-nogal-wrapper .products-section .products-grid {
        grid-template-columns: repeat(2, 280px) !important;
        gap: 20px !important;
        justify-content: start !important;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .categories-nav {
        padding: 0 15px;
    }
    
    #domicilio-nogal-wrapper .products-section .products-grid {
        grid-template-columns: 280px !important;
        gap: 20px !important;
        justify-content: center !important;
        padding: 0 15px !important;
    }
}

/* WooCommerce Integration */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: #fff;
    border: 1px solid #000;
    border-radius: 0; /* Square corners */
    overflow: hidden;
    box-shadow: none; /* No shadows */
    transition: none; /* No hover effects */
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product:hover {
    transform: none;
    box-shadow: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: "Proxima Nova Extra Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.woocommerce ul.products li.product .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
}

.woocommerce ul.products li.product .button {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 12px 0; /* Vertical padding only */
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 0; /* Square corners */
    cursor: pointer;
    transition: none; /* No hover effects */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: block; /* Block element */
    width: 100%; /* Full width */
}

.woocommerce ul.products li.product .button:hover {
    background-color: #FFD700; /* Same color on hover */
    transform: none; /* No transform */
    text-decoration: none;
    color: #000;
}
/*# sourceMappingURL=domicilio-nogal.css.map */