/*
Theme Name: LUXURY SHOP Theme
Theme URI: https://luxuryrolandsshop.com
Author: LUXURY SHOP
Description: Tema premium estilo LUXURY SHOP con toques dorados.
Version: 2.1
*/

/* =====================
    1. BASE
===================== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0b0b0d;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-content {
    padding: 60px 0;
    min-height: 50vh;
}

.page-content .woocommerce {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    color: #333;
}

.page-content .woocommerce a {
    color: #d4af37;
}

.page-content .woocommerce .button,
.page-content .woocommerce button.button {
    background: #d4af37 !important;
    color: #000 !important;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.page-content .woocommerce .button:hover {
    background: #e5c453 !important;
}

/* Carrito - Botones y estilos */
.woocommerce .cart .button,
.woocommerce .checkout-button,
.woocommerce a.checkout-button,
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wp-block-woocommerce-proceed-to-checkout-block a {
    background: #d4af37 !important;
    color: #000 !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    display: inline-block !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.woocommerce .checkout-button:hover,
.woocommerce a.checkout-button:hover,
.wc-block-cart__submit-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block a:hover {
    background: #e5c453 !important;
    transform: translateY(-2px) !important;
}

/* Carrito - Imágenes de productos 110x110 */
.woocommerce table.cart img,
.woocommerce-cart table.cart img,
.wc-block-cart-item__image img,
.wc-block-components-product-image img {
    width: 110px !important;
    height: 110px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

.woocommerce table.cart td.product-thumbnail {
    width: 130px !important;
}

/* Carrito - Estilos generales */
.woocommerce-cart .woocommerce,
.wc-block-cart {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    color: #333;
}

.woocommerce table.cart th,
.woocommerce-cart table.cart th {
    background: #f5f5f5;
    padding: 15px;
    font-weight: 600;
}

.woocommerce table.cart td {
    padding: 20px 15px;
    vertical-align: middle;
}

/* Responsive carrito */
@media (max-width: 768px) {
    .woocommerce table.cart img,
    .wc-block-cart-item__image img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .woocommerce table.cart td.product-thumbnail {
        width: 100px !important;
    }
    
    .woocommerce .checkout-button,
    .wc-block-cart__submit-button {
        width: 100% !important;
        padding: 15px 20px !important;
    }
    
    .page-content .woocommerce {
        padding: 15px;
    }
}

/* =====================
    2. HEADER & LOGO
===================== */
.luvika-header {
    background-color: #000 !important;
    padding: 30px 0 !important;
    position: relative !important;
    border-bottom: 1px solid #1c2330;
    width: 100%;
    z-index: 1000;
}

/* Contenedor que centra todo en el medio */
.header-col.center, .logo-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 10px 0 !important;
}

/* Estilo del logo - 250x250px */
.main-logo img, .logo-container img, .logo img {
    width: 250px !important;
    height: 250px !important;
    max-width: 250px !important;
    min-width: auto !important;
    min-height: auto !important;
    
    background-color: transparent !important;
    border-radius: 0 !important;
    object-fit: contain !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
    margin: 0 auto !important;

    box-shadow: none !important;
    transition: opacity 0.3s ease !important;
}

/* Efecto hover simple */
.main-logo:hover img, .logo-container a:hover img, .logo a:hover img {
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.85;
    cursor: pointer;
}

.luvika-tagline {
    display: block !important;
    margin-top: 20px !important;
    color: #fff !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    font-size: 10px !important;
    opacity: 0.8;
    transition: 0.3s;
}

.header-col.center:hover .luvika-tagline {
    color: #d4af37 !important;
    opacity: 1;
}

/* =====================
    2.1. BUSCADOR
===================== */
.search-form-container {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 9999;
    min-width: 280px;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-field {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #1c1c1c;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.search-field:focus {
    border-color: #d4af37;
}

.search-field::placeholder {
    color: #888;
}

.search-submit {
    padding: 10px 15px;
    background: #d4af37;
    border: none;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

.search-submit:hover {
    background: #e5c453;
}

.search-icon {
    position: relative;
}

.header-icons {
    position: relative;
}

/* =====================
    3. NAVEGACIÓN Y MENÚ
===================== */
.main-navigation {
    display: flex;
    justify-content: center;
    background: #000;
    padding: 15px 0;
}

.main-menu {
    list-style: none !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-menu li {
    list-style: none !important;
    list-style-type: none !important;
    position: relative;
}

.main-menu li::before,
.main-menu li::marker {
    display: none !important;
    content: none !important;
}

.main-menu li a {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.main-menu li:hover > a {
    color: #d4af37;
}

/* Submenús */
.main-menu li ul,
.main-menu .sub-menu {
    list-style: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    display: none;
    padding: 15px;
    min-width: 200px;
    z-index: 1000;
}

.main-menu li ul li,
.main-menu .sub-menu li {
    list-style: none !important;
}

.main-menu li ul li::before,
.main-menu li ul li::marker,
.main-menu .sub-menu li::before,
.main-menu .sub-menu li::marker {
    display: none !important;
    content: none !important;
}

.main-menu li:hover > ul,
.main-menu li:hover > .sub-menu {
    display: block;
}

.main-menu li ul li a,
.main-menu .sub-menu li a {
    padding: 8px 0;
    display: block;
    white-space: nowrap;
}

/* =====================
    4. PRODUCTOS (Grid Blue Steel)
===================== */
.section-title {
    text-align: center;
    margin: 80px 0 40px;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 10% 80px;
}

.product-card {
    background: #111114;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #1c2330;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 16px 40px rgba(0,0,0,0.8);
}

.product-card .price {
    color: #d4af37;
    font-weight: 700;
    font-size: 20px;
}

/* =====================
    5. BOTONES Y FEATURES
===================== */
.btn, .btn-buy {
    background: #d4af37;
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.btn:hover {
    background: #e5c453;
    transform: translateY(-3px);
}

.feature i {
    font-size: 45px;
    color: #d4af37;
    margin-bottom: 15px;
}

/* =====================
    6. FOOTER
===================== */
footer {
    background: #06090d;
    padding: 60px 10%;
    border-top: 1px solid #d4af37;
}

.social-icons i {
    color: #d4af37;
    font-size: 22px;
}

.social-icons i:hover {
    color: #fff;
    transform: scale(1.2);
}

/* =====================
    7. RESPONSIVE
===================== */
@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr; }
    .main-menu { flex-direction: column; text-align: center; }
    .main-logo img, .logo-container img, .logo img { 
        width: 150px !important; 
        height: 150px !important; 
        max-width: 150px !important;
    }
    .search-form-container { min-width: 200px; right: -50px; }
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
}

/* =====================
   HERO SLIDER
===================== */

.hero-slide {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    padding: 0 5%;
    gap: 40px;
}

.hero-text-side {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-buttons .btn-primary {
    background: #d4af37;
    color: #000;
    border: 2px solid #d4af37;
}

.hero-buttons .btn-primary:hover {
    background: #e5c453;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-buttons .btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.hero-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.hero-product-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: floatProduct 3s ease-in-out infinite;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Flechas del slider */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #d4af37 !important;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: #d4af37;
    color: #000 !important;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 20px;
}

.hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #d4af37;
    opacity: 1;
}

/* Responsive Hero Slider */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }
    
    .hero-text-side {
        max-width: 100%;
        order: 2;
    }
    
    .hero-image-side {
        order: 1;
        max-width: 300px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-product-img {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
    
    .hero-product-img {
        max-height: 220px;
    }
}

/* Legacy hero-content support */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn {
    background: #00aaff;
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    transition: 0.3s ease;
}

.btn:hover {
    background: #0088cc;
}

/* =====================
   PRODUCTOS
===================== */

.section-title {
    text-align: center;
    margin: 80px 0 40px;
    font-size: 28px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 5% 80px;
}

.product-card {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

/* =====================
   FEATURES
===================== */

.features {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 0;
    border-top: 1px solid #1c2330;
}

.feature {
    text-align: center;
    color: #4fc3f7;
}

/* =====================
   FOOTER
===================== */

footer, .site-footer {
    background: #06090d;
    padding: 60px 40px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}

.footer-col {
    min-width: 0;
}

.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #d4af37 !important;
}

.footer-col p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.8;
    margin: 5px 0;
}

.footer-col p a {
    color: #d4af37;
    transition: 0.3s;
}

.footer-col p a:hover {
    color: #fff;
}

.footer-map {
    min-width: 250px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #1c2330;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #888;
    font-size: 13px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-content p {
    font-size: 14px;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 22px;
    flex-wrap: wrap;
}

.social-icons a {
    color: #d4af37;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

.social-icons i {
    color: inherit;
    transition: 0.3s ease;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}

/* =====================
   SWIPER CONTROLES
===================== */

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #00aaff;
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #00aaff;
    opacity: 1;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .main-menu {
        flex-direction: column;
    }

    .hero-slide {
        text-align: center;
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

/* =====================
   test
===================== */
/* ===== LOGO ===== */
.logo img {
    height: 180px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.85;
}

/* ===== HERO SLIDER ===== */
.hero-slider .hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5); /* overlay oscuro suave */
}

.hero-slider .hero-content h1 {
    color: #f5f5f5;
    font-size: 48px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.7);
    margin-bottom: 20px;
}

.hero-slider .hero-content .btn {
    background: #c6a96e;
    color: #111;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.hero-slider .hero-content .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* ===== PRODUCTOS DESTACADOS ===== */
.featured-products {
    background-color: #0b0b0d;
    padding: 100px 0;
}

.featured-products .section-title {
    color: #fff;
    text-align: center;
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.product-card {
    background: #111114;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6); /* sombra profunda */
    transition: all 0.4s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.8);
}

.product-card h3 {
    color: #fff;
    font-weight: 500;
    margin-top: 15px;
}

.product-card .price {
    color: #c6a96e;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
}

/* ===== FEATURES ===== */
.features {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 80px 20px;
    background-color: #0b0b0d;
}

.feature {
    text-align: center;
    color: #fff;
}

.feature i {
    font-size: 48px;
    color: #c6a96e;
    margin-bottom: 15px;
}

/* ===== BODY ===== */
body {
    background-color: #0b0b0d;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #fff;
}

/* ===== SINGLE PRODUCT ===== */
.single-product-container {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    background-color: #0b0b0d;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.product-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

/* Imagen del producto */
.product-image {
    flex: 1;
    position: relative;
}

.product-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

/* Reflejo tipo vidrio */
.product-image::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,0.2), transparent);
    border-radius: 0 0 20px 20px;
}

/* Info del producto */
.product-info {
    flex: 1;
    background-color: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.divider {
    border: 0;
    height: 1px;
    background: #c6a96e;
    margin-bottom: 30px;
}

/* Ingredientes */
.product-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.product-specs .ingredient {
    text-align: center;
    flex: 1;
}

.product-specs img {
    width: 60px;
    margin-bottom: 10px;
}

/* Precio */
.price {
    color: #c6a96e;
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 30px;
}

/* Botones */
.product-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.product-buttons .button, .btn-buy {
    background-color: #c6a96e;
    color: #111;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.product-buttons .button:hover, .btn-buy:hover {
    background-color: #e0c87b;
    transform: translateY(-4px);
}

/* Descripción corta */
.product-short-description {
    font-size: 16px;
    line-height: 1.6;
    color: #f5f5f5;
}
/* Configuración General del Header */
.luvika-header {
    background-color: #000;
    padding: 20px 0;
    border-bottom: 1px solid #1c2330;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Columnas */
.header-col {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-col.center {
    flex-direction: column;
    justify-content: center;
    flex: 2; /* Le damos más espacio al centro para el logo de 200px */
}

.header-col.right {
    justify-content: flex-end;
}

/* Botón de Menú Izquierdo */
.menu-toggle-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.menu-toggle-btn .menu-text {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.menu-toggle-btn:hover {
    color: #d4af37;
}

/* Logo sin efectos */
.main-logo.logo-circular img {
    width: auto !important;
    height: 120px !important;
    max-width: 250px !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0;
    object-fit: contain;
    box-shadow: none !important;
    transition: opacity 0.3s ease;
}

.main-logo:hover img {
    transform: none;
    opacity: 0.85;
}

.luvika-tagline {
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 15px;
    opacity: 0.7;
}

/* Iconos Derechos */
.header-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.icon-btn:hover {
    color: #d4af37;
}

/* Badge del Carrito */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #d4af37;
    color: #000;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Estilo del Menú que aparece al dar click (Overlay) */
.luvika-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%; /* Oculto por defecto */
    width: 300px;
    height: 100vh;
    background: #0b0b0d;
    z-index: 1001;
    transition: 0.5s ease;
    padding: 80px 40px;
    box-shadow: 5px 0 30px rgba(0,0,0,0.8);
}

.luvika-nav-overlay.active {
    left: 0;
}

.luvika-menu-list {
    list-style: none;
    padding: 0;
}

.luvika-menu-list li {
    margin-bottom: 25px;
}

.luvika-menu-list li a {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.luvika-menu-list li a:hover {
    color: #d4af37;
}





/* 1. Asegurar que el header sea el rey de la página */
.luvika-header {
    position: sticky; /* O fixed, según uses */
    top: 0;
    z-index: 9999 !important; /* Valor muy alto para estar sobre el Swiper */
    background-color: #000;
}

/* 2. El contenedor de la lista debe tener posición relativa */
.main-menu li {
    position: relative;
    z-index: 10000; /* Un poco más alto que el header */
}

/* 3. El submenú desplegable */
.main-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    display: none;
    padding: 15px;
    min-width: 200px;
    
    /* ESTO ES LO CLAVE */
    z-index: 10001 !important; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border: 1px solid #1c2330;
}

/* 4. Asegurar que el Swiper no intente ganar la batalla */
.hero-slider, .swiper-container, .swiper-slide {
    z-index: 1 !important; /* Lo bajamos al nivel más bajo posible */
}

/* 1. Ajuste del ítem específico del menú */
li#menu-item-36 {
    position: relative;
    /* No le pongas width fijo aquí para no separar demasiado los otros botones */
}

/* 2. Ajuste del submenú (el cuadro que cae) */
li#menu-item-36 ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #111 !important;
    min-width: 280px !important; /* Aumentamos el ancho para que quepa el texto */
    width: auto !important;      /* Permite que crezca si el texto es muy largo */
    padding: 15px 20px !important;
    z-index: 10001 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border: 1px solid #1c2330;
    display: none;
}

/* 3. EVITAR QUE EL TEXTO SE BAJE DE RENGLÓN */
li#menu-item-36 ul li a {
    white-space: nowrap !important; /* ESTO ES LO MÁS IMPORTANTE: Prohíbe el salto de línea */
    display: block !important;
    padding: 8px 0 !important;
    color: #ffffff !important;
    transition: color 0.3s ease;
}

/* 4. Efecto Hover en el submenú con color dorado */
li#menu-item-36 ul li a:hover {
    color: #d4af37 !important;
    padding-left: 5px !important;
}

/* 5. Mostrar el submenú */
li#menu-item-36:hover > ul {
    display: block !important;
}

/* 1. Asegurar que el ítem PADRE (Productos) sea relativo */
li#menu-item-35 {
    position: relative !important;
}

/* 2. Corregir el Sub-menú de Productos */
li#menu-item-35 ul.sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: #111 !important;
    
    /* Ancho suficiente para que no se baje el texto */
    min-width: 250px !important; 
    width: max-content !important; /* Se ajusta al texto automáticamente */
    
    padding: 10px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    border: 1px solid #1c2330 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7) !important;
    
    /* Capas para que quede por encima del slider */
    z-index: 99999 !important; 
    display: none;
}

/* 3. Evitar que el texto de "Cuidado de la Piel" se baje */
li#menu-item-35 ul.sub-menu li a {
    white-space: nowrap !important; /* PROHÍBE EL SALTO DE LÍNEA */
    display: block !important;
    padding: 10px 20px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    text-align: left !important;
}

/* 4. Hover para mostrar el menú */
li#menu-item-35:hover > ul.sub-menu {
    display: block !important;
}

/* 5. Efecto de color dorado al pasar el mouse por el sub-ítem */
li#menu-item-35 ul.sub-menu li a:hover {
    background-color: #1c2330 !important;
    color: #d4af37 !important;
}


/* Atacamos el contenedor del sub-menú */
.main-navigation ul.sub-menu {
    position: absolute !important;
    visibility: visible !important;
    opacity: 1 !important;
    
    /* ELIMINAMOS EL ANCHO PEQUEÑO */
    width: auto !important; 
    min-width: 280px !important; /* Forzamos un ancho mínimo grande */
    
    background: #111 !important;
    border: 1px solid #1c2330 !important;
    padding: 10px 0 !important;
    z-index: 999999 !important; /* Por encima de todo */
}

/* Forzamos que el elemento 36 NO rompa el texto */
#menu-item-36 {
    width: 100% !important;
    display: block !important;
    white-space: nowrap !important; /* ESTA ES LA CLAVE */
}

#menu-item-36 a {
    display: block !important;
    padding: 10px 25px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    color: #ffffff !important;
    text-align: left !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

/* Hover para el color dorado */
#menu-item-36 a:hover {
    color: #d4af37 !important;
    background-color: #1c2330 !important;
}

/* Ajuste del cuadro desplegable */
ul.sub-menu {
    display: none; /* Se oculta por defecto */
    position: absolute;
    top: 100%;
    left: 0;
    
    /* TAMAÑO CONTROLADO */
    width: 300px !important;   /* 500px es demasiado, 300px es perfecto para textos largos */
    height: auto !important;    /* Si le pones 500px de alto, quedará un vacío enorme */
    
    background-color: #111 !important;
    border: 1px solid #1c2330 !important;
    padding: 15px 0 !important;
    z-index: 99999 !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);
}

/* Para que se muestre al pasar el mouse por el padre (Productos) */
li.menu-item-has-children:hover > ul.sub-menu {
    display: block !important;
}

/* Ajuste del texto interno para que no se baje de renglón */
ul.sub-menu li#menu-item-36 a {
    white-space: nowrap !important; /* Obliga a que todo esté en una línea */
    padding: 12px 25px !important;
    display: block !important;
    color: #ffffff !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

/* Efecto Hover dorado */
ul.sub-menu li#menu-item-36 a:hover {
    color: #d4af37 !important;
    background-color: #1c2330 !important;
}

/* 1. Ajuste del cuadro desplegable */
ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    
    width: 300px !important;   
    height: auto !important;    
    
    background-color: #111 !important;
    border: 1px solid #1c2330 !important;
    padding: 10px 0 !important; /* Padding vertical equilibrado */
    z-index: 99999 !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);

    /* ELIMINA LOS PUNTOS (::marker) */
    list-style: none !important; 
    list-style-type: none !important;
}

/* 2. Ajuste de los elementos de la lista para quitar el marker por completo */
ul.sub-menu li {
    list-style: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 3. Centrar el texto y limpiar efectos */
ul.sub-menu li a {
    white-space: nowrap !important;
    display: block !important;
    padding: 12px 15px !important; /* Padding simétrico */
    color: #ffffff !important;
    font-size: 14px !important;
    
    /* CENTRADO DE TEXTO */
    text-align: center !important; 
    
    transition: all 0.3s ease;
}

/* 4. Efecto Hover limpio (Sin desplazamiento) */
ul.sub-menu li a:hover {
    color: #d4af37 !important;
    background-color: #1c2330 !important;
}

/* 5. Mostrar el menú al pasar el mouse por el padre */
li.menu-item-has-children:hover > ul.sub-menu {
    display: block !important;
}


 /* Shop */
/* Contenedor de la Tarjeta */
.luvika-product-card {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 30px;
}

.product-card-inner {
    background: #fff;
    border-radius: 12px; /* Bordes redondeados de la imagen */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Imagen */
.product-image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}

/* Bloque de Información */
.product-info-wrapper {
    background: #fff;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.luvika-product-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: #111 !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.2;
}

.product-short-desc p {
    font-size: 11px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Footer de la tarjeta: Precio y Botón */
.product-card-footer {
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-price {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

/* Botón de Añadir al Carrito (Estilo Imagen) */
.product-card-button a.button {
    background-color: #111 !important; /* Negro como en la imagen */
    color: #fff !important;
    font-size: 10px !important;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8px 15px !important;
    border-radius: 4px !important;
    transition: background 0.3s ease;
}

.product-card-button a.button:hover {
    background-color: #d4af37 !important;
}

/* Ocultar elementos sobrantes de WooCommerce */
.luvika-product-card .onsale {
    display: none; /* Opcional: oculta el círculo de oferta */
}
/* --- DISEÑO DE COLUMNAS --- */
.shop-container-luvika {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: #0b0b0d; /* Fondo oscuro de la imagen */
}

.shop-sidebar {
    flex: 0 0 250px;
}

.shop-main-content {
    flex: 1;
}

/* --- ESTILO DE FILTROS (Lado Izquierdo) --- */
.shop-sidebar .widget {
    background: rgba(255, 255, 255, 0.05); /* Gris con opacidad */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #fff;
}

.shop-sidebar .widget_price_filter .ui-slider {
    background: rgba(255, 255, 255, 0.2) !important;
}

.shop-sidebar .widget_price_filter .ui-slider-range {
    background: #d4af37 !important;
}

/* --- TARJETAS DE PRODUCTO (Filas de 3) --- */
.products.columns-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.luvika-card-inner {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.luvika-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.luvika-info {
    padding: 20px;
    color: #000;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.luvika-title {
    font-size: 16px !important;
    font-weight: 800 !important;
    margin: 0 0 5px 0 !important;
    color: #000 !important;
}

.luvika-desc p {
    font-size: 12px;
    color: #444;
    margin-bottom: 15px;
}

/* --- FOOTER DE TARJETA Y BOTONES --- */
.luvika-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.luvika-price {
    font-weight: 800;
    font-size: 16px;
    color: #000;
}

.luvika-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Botones Negros con bordes redondeados */
.luvika-actions a {
    background: #000 !important;
    color: #fff !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
    border-radius: 10px !important; /* Border radius 10% aproximado */
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.luvika-actions a:hover {
    background: #d4af37 !important;
}

.btn-detail {
    background: transparent !important;
    color: #000 !important;
    border: 1px solid #000;
}

/* =====================
   TIENDA - Tarjetas de producto
===================== */
.product-card-footer {
    text-align: center;
}

.product-price-block {
    color: #000;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.product-price-block del {
    color: #999;
    font-size: 14px;
}

.product-price-block ins {
    text-decoration: none;
    color: #d4af37;
}

.product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.product-card-actions .btn-detail,
.product-card-actions .button,
.product-card-actions .add_to_cart_button,
.product-card-actions a.added_to_cart {
    display: block !important;
    width: 100% !important;
    max-width: 200px !important;
    padding: 12px 20px !important;
    text-align: center !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.product-card-actions .btn-detail {
    background: transparent !important;
    color: #000 !important;
    border: 2px solid #000 !important;
}

.product-card-actions .btn-detail:hover {
    background: #000 !important;
    color: #fff !important;
}

.product-card-actions .button,
.product-card-actions .add_to_cart_button {
    background: #d4af37 !important;
    color: #000 !important;
    border: none !important;
}

.product-card-actions .button:hover,
.product-card-actions .add_to_cart_button:hover {
    background: #e5c453 !important;
    transform: translateY(-2px) !important;
}

.product-card-actions a.added_to_cart {
    background: #28a745 !important;
    color: #fff !important;
    border: none !important;
}

/* =====================
   MENÚ CON IMÁGENES DE PRODUCTOS
===================== */
.menu-product-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
    vertical-align: middle;
    border: 2px solid #d4af37;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

ul.sub-menu li a {
    display: flex !important;
    align-items: center !important;
}

ul.sub-menu li a:hover .menu-product-thumb {
    transform: scale(1.1);
    border-color: #fff;
}

.menu-item-text {
    display: inline-block;
    vertical-align: middle;
}

ul.sub-menu li {
    padding: 5px 0 !important;
}

ul.sub-menu li a {
    padding: 8px 15px !important;
}
