/*
Theme Name: Centros de Lavado Theme
Theme URI: https://centrosdelavado.es
Author: Antigravity AI
Description: Tema personalizado para centrosdelavado.es
Version: 3.0.0
*/

:root {
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --primary-color: #0056b3;
    --secondary-color: #00a8e8;
    --text-dark: #212529;
    --text-muted: #6c757d;
}

body.modern-theme {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 90px; /* offset for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

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

/* Bright Navbar */
.modern-navbar {
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 15px 0;
}

.brand-logo {
    max-height: 65px;
    width: auto;
}

.contact-badge {
    background: var(--bg-gray);
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}
.contact-badge a {
    color: var(--primary-color) !important;
}

.modern-menu {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.modern-menu li a {
    color: var(--text-dark) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 8px 12px !important;
    text-decoration: none;
    transition: color 0.3s;
}

.modern-menu li a:hover {
    color: var(--primary-color) !important;
}

.custom-toggler {
    border-color: var(--primary-color);
}
.custom-toggler i {
    color: var(--primary-color) !important;
}

/* WOW Hero Section */
.hero-wow {
    min-height: 90vh;
    background: #f4f7f6 url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%230056b3" fill-opacity="0.05"/></svg>');
    padding-top: 100px;
}

.glass-card-hero {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 86, 179, 0.25);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.glass-card-hero:hover {
    transform: translateY(-5px);
}

.hero-title-wow {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, #0056b3 0%, #00a8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn-wow {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-wow-primary {
    background: linear-gradient(135deg, #0056b3 0%, #00a8e8 100%);
    color: #fff !important;
    border: none;
}

.btn-wow-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.4) !important;
}

.btn-wow-outline {
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
}

.btn-wow-outline:hover {
    background: var(--primary-color);
    color: #fff !important;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.wow-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* Animated Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.2), rgba(0, 86, 179, 0.2));
    filter: blur(40px);
    z-index: 1;
    animation: float 15s infinite alternate ease-in-out;
}

.bubble-1 { width: 400px; height: 400px; top: -100px; left: -100px; animation-delay: 0s; }
.bubble-2 { width: 300px; height: 300px; bottom: -50px; right: -50px; animation-delay: -5s; }
.bubble-3 { width: 250px; height: 250px; top: 40%; left: 60%; animation-delay: -10s; }
.bubble-4 { width: 500px; height: 500px; bottom: -200px; left: 20%; animation-delay: -2s; background: linear-gradient(135deg, rgba(255, 200, 0, 0.1), rgba(255, 0, 0, 0.05)); }

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

/* Feature Cards */
.feature-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-color);
}

/* Project Cards */
.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
}

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

.project-body {
    padding: 25px;
}

/* Footer */
.modern-footer {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 60px 0 30px;
    margin-top: 80px;
    color: var(--text-dark);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.4);
}

/* WOOCOMMERCE WOW STYLES */
/* Shop Grid */
.woocommerce ul.products li.product {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 86, 179, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.15);
}
.woocommerce ul.products li.product img {
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 10px 0;
}
.woocommerce ul.products li.product .price {
    color: var(--secondary-color);
    font-size: 1.15rem;
    font-weight: 600;
}
.woocommerce ul.products li.product .button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    margin-top: 15px;
}
.woocommerce ul.products li.product .button:hover {
    opacity: 0.9;
    color: white;
}

/* Single Product */
.woocommerce div.product {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    margin-bottom: 50px;
}
.woocommerce div.product div.images img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.woocommerce div.product .product_title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
.woocommerce div.product .price {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}
.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 30px 0;
}
.woocommerce div.product form.cart .button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
}
.woocommerce div.product form.cart .button:hover {
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.3);
}
.woocommerce-Tabs-panel {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    margin-top: 20px;
}
.project-grid-img { transition: transform 0.4s ease; } .project-grid-img:hover { transform: scale(1.1); } .project-img-wrapper { overflow: hidden; border-radius: 12px 12px 0 0; }

/* ==========================================================================
   WOOCOMMERCE WOW STYLES - SINGLE, CART & CHECKOUT
   ========================================================================== */

/* --- SINGLE PRODUCT WOOCOMMERCE --- */
.woocommerce div.product {
    background: #ffffff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.woocommerce div.product div.images {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.woocommerce div.product div.images:hover {
    transform: scale(1.02);
}

.woocommerce div.product .product_title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
}

.woocommerce div.product form.cart .button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(11, 88, 166, 0.3);
}

.woocommerce div.product form.cart .button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px rgba(11, 88, 166, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.woocommerce div.product .woocommerce-tabs {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: transparent;
    border-bottom: 3px solid var(--primary-color);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--primary-color);
}

/* --- CART PAGE --- */
.woocommerce-cart .woocommerce {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.woocommerce-cart table.shop_table {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.woocommerce-cart table.shop_table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
}

.woocommerce-cart table.shop_table td {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    vertical-align: middle;
}

.woocommerce-cart table.shop_table .button {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: bold;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
    font-weight: 800;
    color: var(--primary-color);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: linear-gradient(135deg, #0ba360, #3cba92);
    color: white;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(11, 163, 96, 0.3);
    transition: all 0.3s ease;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(11, 163, 96, 0.4);
}

/* --- CHECKOUT PAGE --- */
.woocommerce-checkout .woocommerce {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.woocommerce-checkout form.checkout h3 {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed rgba(11, 88, 166, 0.2);
    padding-bottom: 10px;
}

.woocommerce-checkout form.checkout input[type="text"],
.woocommerce-checkout form.checkout input[type="email"],
.woocommerce-checkout form.checkout input[type="tel"],
.woocommerce-checkout form.checkout textarea {
    border: 2px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.woocommerce-checkout form.checkout input:focus,
.woocommerce-checkout form.checkout textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(11, 163, 96, 0.1);
}

.woocommerce-checkout #order_review {
    background: rgba(11, 88, 166, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(11, 88, 166, 0.1);
}

.woocommerce-checkout #place_order {
    background: linear-gradient(135deg, #0ba360, #3cba92);
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(11, 163, 96, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.woocommerce-checkout #place_order:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(11, 163, 96, 0.4);
}
/* --- CORPORATE RAINBOW ANIMATED BORDERS --- */

/* Keyframe for moving gradient */
@keyframes corporateRainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Applying it to the grid products */
.woocommerce ul.products li.product {
    position: relative;
    background: transparent !important;
    border: none !important;
    padding: 20px !important; /* Inner padding for content */
    border-radius: 23px !important;
    z-index: 1;
}

.woocommerce ul.products li.product::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -2;
    border-radius: 23px;
    background: linear-gradient(124deg, #1A237E, #0277BD, #29B6F6, #00BCD4, #29B6F6, #0277BD, #1A237E);
    background-size: 400% 400%;
    animation: corporateRainbow 6s ease infinite;
}

.woocommerce ul.products li.product::after {
    content: '';
    position: absolute;
    top: 4px; right: 4px; bottom: 4px; left: 4px;
    z-index: -1;
    background-color: #ffffff;
    border-radius: 19px;
}

/* Applying it to the single product container */
.woocommerce div.product {
    position: relative;
    background: transparent !important;
    border: none !important;
    padding: 3rem !important;
    border-radius: 23px !important;
    z-index: 1;
}

.woocommerce div.product::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -2;
    border-radius: 23px;
    background: linear-gradient(124deg, #1A237E, #0277BD, #29B6F6, #00BCD4, #29B6F6, #0277BD, #1A237E);
    background-size: 400% 400%;
    animation: corporateRainbow 6s ease infinite;
}

.woocommerce div.product::after {
    content: '';
    position: absolute;
    top: 4px; right: 4px; bottom: 4px; left: 4px;
    z-index: -1;
    background-color: #ffffff;
    border-radius: 19px;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/* ==========================================================================
   SUPER PRO WOOCOMMERCE LAYOUT REFINEMENTS
   ========================================================================== */

/* Fix Single Product Image Proportions */
.woocommerce div.product div.images {
    width: 45% !important;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    min-height: 400px;
}

.woocommerce div.product div.images img {
    width: 100% !important;
    height: 100% !important;
    max-height: 500px;
    object-fit: contain !important;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.woocommerce div.product div.images img:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Fix Single Product Summary (Right Side) */
.woocommerce div.product div.summary {
    width: 50% !important;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.woocommerce div.product .product_title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #0277BD, #1A237E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
    background: linear-gradient(to right, rgba(2, 119, 189, 0.05), transparent);
}

/* Modern Flexbox Layout for WooCommerce Product (Replaces Clearfix) */
.woocommerce div.product {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
}


/* Fix Product Grid Images */
.woocommerce ul.products li.product .woocommerce-LoopProduct-link img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1A237E;
    margin-bottom: 10px;
}
.woocommerce div.product .woocommerce-tabs, .woocommerce div.product .related.products, .woocommerce div.product .up-sells {
    width: 100% !important;
    margin-top: 4rem;
}
/* ==========================================================================
   SUPER PRO WOOCOMMERCE SHOP LAYOUT (ARCHIVE)
   ========================================================================== */

/* Hide Default WooCommerce Sidebar (it looks ugly at the bottom) */
#secondary.widget-area {
    display: none !important;
}

/* Shop Page Header (Title & Breadcrumbs) */
.woocommerce-products-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    animation: fadeInUp 0.8s ease forwards;
}

.woocommerce-products-header__title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #0277BD, #1A237E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    margin-bottom: 1rem !important;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0 !important;
    font-weight: 500;
}
.woocommerce-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

/* Results count and Sorting container */
.woocommerce-notices-wrapper + p.woocommerce-result-count, 
.woocommerce-products-header + .woocommerce-result-count {
    font-size: 1.1rem;
    color: #495057;
    font-weight: 600;
    margin-bottom: 2rem;
}

.woocommerce-ordering {
    margin-bottom: 2rem;
}

/* Super Pro Select Dropdown */
.woocommerce-ordering select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 40px 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230277BD%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(2, 119, 189, 0.2);
}

.woocommerce-ordering select option {
    font-weight: 500;
}

/* Center product titles in grid */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    text-align: center;
}
.woocommerce ul.products li.product .button {
    display: block;
    width: max-content;
    margin: 0 auto 10px auto;
}
/* Fix WooCommerce top bar (result count and ordering) */
.woocommerce::before, .woocommerce::after {
    display: none !important;
}

.woocommerce .woocommerce-result-count {
    float: none;
    margin: 0;
}

.woocommerce .woocommerce-ordering {
    float: none;
    margin: 0;
}

/* We target the implicit wrapper by creating a flex layout on the body or we just use flex on a pseudo-parent if possible */
/* Since they are direct children of .woocommerce (or main), let's just make them look good. */
.woocommerce > .woocommerce-result-count {
    display: inline-block;
    margin-top: 15px;
}

.woocommerce > .woocommerce-ordering {
    display: inline-block;
    float: right;
}
.woocommerce-breadcrumb {
    padding: 0 0 1.5rem 0;
    margin-bottom: 0 !important;
}
/* ==========================================================================
   SUPER PRO MODERN FOOTER
   ========================================================================== */

.modern-footer {
    background: #0f172a; /* Slate 900 */
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0277BD, #00BCD4, #0277BD);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0; }
    50% { background-position: 100% 0; }
    100% { background-position: 0% 0; }
}

.modern-footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.modern-footer .social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(2, 119, 189, 0.4);
}

.modern-footer .footer-links li {
    margin-bottom: 12px;
}

.modern-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

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

.modern-footer .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0277BD, #1A237E);
}

.transition { transition: all 0.3s ease; }
.hover-opacity-100:hover { opacity: 1 !important; }
