/*
Theme Name: Activezone
Theme URI: https://activezone.com
Author: Activezone Team
Author URI: https://activezone.com
Description: Tema personalizado minimalista para tienda de ropa deportiva premium. Diseño en blanco y negro, editorial y elegante.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: activezone
Tags: woocommerce, fashion, sports, minimal, black-white, custom-theme
*/

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray: #f5f5f5;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 90px;
    overflow-x: hidden;
}

body.home {
    padding-top: 0;
}

body.woocommerce-checkout {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-black);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.7;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   LAYOUT UTILITIES
======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-large {
    padding: 6rem 0;
}

/* ========================================
   HEADER
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.home .site-header {
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

body.home .site-header.scrolled {
    background-color: var(--color-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

body.home .header-container {
    padding: 1.5rem 2rem;
}

.site-logo {
    height: 100px !important;
    transition: var(--transition);
    max-width: none;
}

body.home .site-logo {
    height: 120px !important;
}

.site-logo:hover {
    opacity: 0.8;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.main-navigation a:hover {
    opacity: 0.7;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* User Account Menu */
.user-account-menu {
    position: relative;
}

.user-account-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-account-trigger:hover {
    background: rgba(255,255,255,0.1);
}

.user-account-trigger i {
    font-size: 1rem;
}

.user-account-trigger .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.user-account-menu:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-account-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.user-dropdown li {
    margin: 0;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #fff;
    transition: all 0.2s ease;
}

.user-dropdown a:hover {
    background: #1a1a1a;
    padding-left: 24px;
}

.user-dropdown i {
    font-size: 1rem;
    width: 20px;
    color: #fff;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.login-link:hover {
    background: rgba(255,255,255,0.1);
}

.login-link i {
    font-size: 1rem;
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    padding: 8px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-white);
}

/* ========================================
   HERO VIDEO SECTION
======================================== */
.hero-video-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    animation: pulse-white 2s ease-in-out infinite;
}

@keyframes pulse-white {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    animation: none;
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* ========================================
   EDITORIAL BLOCKS
======================================== */
.editorial-blocks-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.editorial-blocks-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 3rem 0;
    color: var(--color-black);
}

.editorial-blocks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.editorial-block {
    position: relative;
    overflow: hidden;
    background-color: var(--color-gray);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.editorial-block:nth-child(1) { animation-delay: 0.1s; }
.editorial-block:nth-child(2) { animation-delay: 0.2s; }
.editorial-block:nth-child(3) { animation-delay: 0.3s; }
.editorial-block:nth-child(4) { animation-delay: 0.4s; }
.editorial-block:nth-child(5) { animation-delay: 0.5s; }
.editorial-block:nth-child(6) { animation-delay: 0.6s; }
.editorial-block:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.editorial-block-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.editorial-block-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-block-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.editorial-block:hover .editorial-block-image {
    transform: scale(1.05);
}

.editorial-block:hover .editorial-block-video {
    opacity: 1;
}

.editorial-block-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.editorial-block:hover .editorial-block-overlay {
    transform: translateY(0);
    opacity: 1;
}

.editorial-block-title {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.editorial-block-description {
    color: var(--color-white);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ========================================
   SHOP PAGE
======================================== */
.shop-header {
    padding: 8rem 0 3rem;
    text-align: center;
}

.shop-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.products-container {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--color-white);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--color-gray);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem 0;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    margin-top: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.footer-section h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section li i {
    color: var(--color-white);
    opacity: 0.8;
    font-size: 1rem;
    min-width: 20px;
}

.footer-section a {
    color: var(--color-white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 0.9rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom .separator {
    margin: 0 10px;
    opacity: 0.5;
}

.footer-bottom .av-solutions-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-bottom .av-solutions-link:hover {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-section {
    background: #fff;
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-item.delay-1 { animation-delay: 0.15s; }
.feature-item.delay-2 { animation-delay: 0.3s; }
.feature-item.delay-3 { animation-delay: 0.45s; }

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Featured Products Section
--------------------------------------------------------------*/
.featured-products-section {
    background: #f9f9f9;
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-title a {
    color: #000;
    text-decoration: none;
}

.product-title a:hover {
    text-decoration: underline;
}

.product-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

/*--------------------------------------------------------------
# CTA Banner Section
--------------------------------------------------------------*/
.cta-banner-section {
    background: #000;
    color: #fff;
    padding: 5rem 0;
}

.cta-banner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
}

/*--------------------------------------------------------------
# WooCommerce Shop Styles
--------------------------------------------------------------*/
.shop-header {
    background: #000;
    color: #fff;
    padding: 4rem 0 3rem;
    text-align: center;
}

.shop-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.shop-header p {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
}

.shop-filters {
    padding: 2rem 0;
    background: #f9f9f9;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #000;
    color: #fff;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-image-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f5f5f5;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #999;
}

.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 2;
}

.badge-sale {
    background: #000;
    color: #fff;
}

.badge-out {
    background: #999;
    color: #fff;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 0.75rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    flex-grow: 1;
}

.product-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #666;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
}

.product-price del {
    color: #999;
    font-weight: 400;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.product-price ins {
    text-decoration: none;
    color: #000;
}

.product-actions {
    margin-top: auto;
}

.btn-small {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #eee;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
}

.product-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-categories li {
    margin-bottom: 0.75rem;
}

.product-categories a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-categories a:hover,
.product-categories li.active a {
    color: #000;
}

.product-categories .count {
    color: #999;
    font-size: 0.85rem;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
}

.woocommerce-result-count {
    color: #666;
    font-size: 0.95rem;
}

.woocommerce-ordering select {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 2px solid #eee;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
}

.products-grid,
ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 3rem 0 !important;
    clear: none !important;
}

/* Remove WooCommerce clearfix pseudo-elements that interfere with grid */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
    display: none !important;
    content: none !important;
}

ul.products li.product,
ul.products div.product-card,
.woocommerce ul.products li.product,
.woocommerce ul.products div.product-card,
.woocommerce-page ul.products li.product,
.woocommerce-page ul.products div.product-card {
    margin: 0 !important;
    width: auto !important;
    float: none !important;
    display: block !important;
}

/* Responsive product grid */
@media (max-width: 1200px) {
    ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 900px) {
    ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    ul.products,
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
}

.shop-pagination {
    margin-top: 3rem;
    text-align: center;
}

.shop-pagination .page-numbers {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    margin: 0 0.25rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    font-weight: 700;
    transition: all 0.3s ease;
}

.shop-pagination .page-numbers:hover,
.shop-pagination .page-numbers.current {
    background: #000;
    color: #fff;
}

.no-products-found {
    padding: 5rem 0;
    text-align: center;
}

.no-products-content i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.no-products-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.no-products-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #000;
        padding: 5rem 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        z-index: 9999;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .main-navigation ul li a {
        color: #fff;
        font-size: 1.2rem;
    }
    
    .main-navigation ul li a:hover {
        color: #ccc;
    }

    .editorial-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .editorial-block {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .products-container,
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shop-sidebar {
        position: static;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .editorial-blocks-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .editorial-block {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    /* Mostrar overlay siempre en móvil sin hover */
    .editorial-block-overlay {
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    }
    
    .editorial-block-title {
        font-size: 1.2rem;
    }
    
    .editorial-block-description {
        font-size: 0.85rem;
    }

    .products-container,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-btn {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   WOOCOMMERCE OVERRIDES
======================================== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 1rem;
    margin-bottom: 1rem;
}

.woocommerce-button.button {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
}

.woocommerce-button.button:hover {
    background-color: #333;
}

/* ========================================
   UTILITIES
======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.hidden {
    display: none;
}

/* ========================================
   SINGLE PRODUCT PAGE
======================================== */

/* Product layout */
.woocommerce.single-product div.product,
.single-product .woocommerce div.product,
body.single-product div.product {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    padding: 4rem 0;
    animation: fadeInUp 0.8s ease;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product images */
.woocommerce div.product div.images {
    position: relative;
    width: 100% !important;
    float: none !important;
}

/* Product summary */
.woocommerce div.product div.summary {
    animation: fadeInRight 0.8s ease 0.2s both;
}

/* Galería de WooCommerce */
.woocommerce div.product .woocommerce-product-gallery {
    position: relative;
    width: 100% !important;
    margin: 0 !important;
    opacity: 1 !important;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
    width: 100% !important;
    margin: 0 !important;
    transition: opacity 0.3s ease;
}

/* FlexSlider viewport y slides */
.woocommerce div.product .flex-viewport {
    max-height: none !important;
    width: 100% !important;
    overflow: hidden !important;
    height: auto !important;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper > div {
    width: 100% !important;
}

.woocommerce div.product .woocommerce-product-gallery .flex-viewport ul.slides {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce div.product .woocommerce-product-gallery .flex-viewport ul.slides li {
    width: 100% !important;
    float: left !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    list-style: none !important;
    backface-visibility: hidden;
}

/* Todas las imágenes en el slider */
.woocommerce div.product .woocommerce-product-gallery__image {
    width: 100% !important;
    margin: 0 !important;
    display: block !important;
    position: relative !important;
    line-height: 0;
}

.woocommerce div.product .woocommerce-product-gallery__image a {
    display: block !important;
    width: 100% !important;
    line-height: 0;
}

.woocommerce div.product .woocommerce-product-gallery__image img,
.woocommerce div.product div.images img,
.woocommerce div.product .woocommerce-product-gallery .flex-viewport ul.slides li img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 0;
    transition: none;
    object-fit: contain;
    visibility: visible !important;
    opacity: 1 !important;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.woocommerce div.product div.images img:hover {
    transform: scale(1.02);
}

/* Miniaturas de la galería - IMPORTANTE: NO usar grid aquí */
.woocommerce div.product .flex-control-thumbs,
.woocommerce div.product .flex-control-nav.flex-control-thumbs,
ol.flex-control-nav.flex-control-thumbs,
.woocommerce div.product div.images .flex-control-thumbs {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 1.5rem !important;
    margin-top: 2rem !important;
    padding: 0 !important;
    list-style: none !important;
    justify-content: flex-start !important;
}

.woocommerce div.product .flex-control-thumbs li,
.woocommerce div.product div.images .flex-control-thumbs li,
body.single-product div.product .flex-control-thumbs li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
    width: 280px !important;
    min-width: 280px !important;
}

.woocommerce div.product .flex-control-thumbs img,
.woocommerce div.product div.images .flex-control-thumbs img,
body.single-product div.product .flex-control-thumbs img {
    width: 280px !important;
    height: 370px !important;
    max-width: 280px !important;
    max-height: 370px !important;
    min-width: 280px !important;
    min-height: 370px !important;
    object-fit: cover !important;
    display: block !important;
    border: 4px solid #e0e0e0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.woocommerce div.product .flex-control-thumbs img:hover {
    border-color: #666;
    opacity: 1;
}

.woocommerce div.product .flex-control-thumbs img.flex-active {
    border-color: #000;
    opacity: 1;
}

/* Trigger de zoom */
.woocommerce div.product .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 99;
}

/* Product summary */
.woocommerce div.product div.summary {
    animation: fadeInRight 0.8s ease 0.2s both;
}

.woocommerce div.product .product_title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.woocommerce div.product p.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.woocommerce div.product p.price del {
    color: #999;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.woocommerce div.product p.price ins {
    text-decoration: none;
}

/* Product meta */
.woocommerce div.product .product_meta {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 1.5rem 0;
    margin: 2rem 0;
}

.woocommerce div.product .product_meta > span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.woocommerce div.product .product_meta a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.woocommerce div.product .product_meta a:hover {
    opacity: 0.7;
}

/* Add to cart */
.woocommerce div.product form.cart {
    margin: 2rem 0;
}

.woocommerce div.product form.cart .quantity {
    display: inline-block;
    margin-right: 1rem;
}

.woocommerce div.product form.cart .quantity input.qty {
    width: 80px;
    padding: 1rem;
    border: 2px solid #000;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.woocommerce div.product form.cart button.single_add_to_cart_button {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
    background: #fff;
    color: #000;
    animation: none;
}

/* Product description tabs */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 4rem;
    grid-column: 1 / -1;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 2rem;
    border-bottom: 2px solid #000;
    padding: 0;
    list-style: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 1rem 0;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #000;
    border-bottom-color: #000;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 2rem 0;
    animation: fadeIn 0.5s ease;
}

/* Related products */
.woocommerce .related.products {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 2px solid #000;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.woocommerce .related.products h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.woocommerce .related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .woocommerce div.product {
        gap: 3rem;
    }
    
    .woocommerce .related.products ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .woocommerce.single-product div.product,
    .single-product .woocommerce div.product,
    body.single-product div.product {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    /* Asegurar que imágenes vayan arriba en móviles */
    .woocommerce div.product div.images {
        order: 1;
        width: 100% !important;
        margin-bottom: 1rem;
    }
    
    .woocommerce div.product div.summary {
        order: 2;
        width: 100% !important;
    }
    
    .woocommerce div.product .woocommerce-tabs {
        order: 3;
    }
    
    .woocommerce div.product .product_title {
        font-size: 2rem;
    }
    
    .woocommerce div.product .flex-control-thumbs {
        gap: 1rem;
        justify-content: center;
    }
    
    .woocommerce div.product .flex-control-thumbs li {
        width: 160px !important;
    }
    
    .woocommerce div.product .flex-control-thumbs img {
        width: 160px !important;
        height: 210px !important;
    }
    
    .woocommerce .related.products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .woocommerce div.product .product_title {
        font-size: 1.75rem;
    }
    
    .woocommerce div.product p.price {
        font-size: 1.5rem;
    }
    
    .woocommerce div.product form.cart button.single_add_to_cart_button {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .woocommerce div.product form.cart .quantity {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .woocommerce div.product form.cart .quantity input.qty {
        width: 100%;
    }
    
    .woocommerce .related.products ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   PRODUCT ATTRIBUTES (Talla, Color, etc.)
======================================== */

.product-attributes {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.product-attribute-item {
    margin-bottom: 20px;
}

.product-attribute-item:last-child {
    margin-bottom: 0;
}

.attribute-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #1d1d1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attribute-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #1d1d1f;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.attribute-select:hover {
    border-color: #000;
}

.attribute-select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

/* Style for WooCommerce variable products */
.woocommerce div.product form.cart .variations {
    margin-bottom: 30px;
    border: none;
}

.woocommerce div.product form.cart .variations td {
    padding: 10px 0;
    border: none;
}

.woocommerce div.product form.cart .variations label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1d1d1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce div.product form.cart .variations select {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #1d1d1f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce div.product form.cart .variations select:hover {
    border-color: #000;
}

.woocommerce div.product form.cart .variations select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.woocommerce div.product form.cart .reset_variations {
    font-size: 0.9rem;
    color: #666;
    text-decoration: underline;
}

.woocommerce div.product form.cart .reset_variations:hover {
    color: #000;
}

/* ========================================
   CART DRAWER
======================================== */

/* Cart icon badge */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fff;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    animation: scaleIn 0.3s ease;
}

/* Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.cart-drawer.active {
    right: 0;
}

body.cart-open {
    overflow: hidden;
}

/* Cart Header */
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 2px solid #000;
}

.cart-drawer-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.cart-drawer-close:hover {
    transform: rotate(90deg);
}

/* Cart Body */
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.cart-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty cart */
.cart-empty {
    text-align: center;
    padding: 3rem 0;
}

.cart-empty i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.cart-empty p {
    color: #666;
    font-size: 1.1rem;
}

/* Cart Items */
.cart-drawer-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: opacity 0.3s ease;
}

.cart-drawer-item.updating,
.cart-drawer-item.removing {
    opacity: 0.5;
    pointer-events: none;
}

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Quantity controls */
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.cart-item-qty-minus,
.cart-item-qty-plus {
    background: #000;
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.cart-item-qty-minus:hover,
.cart-item-qty-plus:hover {
    background: #333;
    transform: scale(1.1);
}

.cart-item-qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Cart item actions */
.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item-subtotal {
    font-weight: 700;
    font-size: 1rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #ff0000;
}

/* Cart Footer */
.cart-drawer-footer {
    padding: 2rem;
    border-top: 2px solid #000;
}

/* Shipping Progress */
.cart-drawer-shipping {
    margin-bottom: 1.5rem;
}

.shipping-progress {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.shipping-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #000 0%, #333 100%);
    transition: width 0.5s ease;
}

.shipping-message {
    text-align: center;
    font-size: 0.9rem;
    margin: 0;
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
}

.shipping-message.shipping-pending {
    background: #fff3cd;
    color: #856404;
}

.shipping-message.shipping-free {
    background: #d4edda;
    color: #155724;
}

.shipping-message i {
    margin-right: 0.5rem;
}

.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
    padding: 1.2rem;
}

.cart-checkout-btn {
    background: #000 !important;
    color: #fff !important;
    border: 2px solid #000 !important;
}

.cart-checkout-btn:hover {
    background: #333 !important;
    border-color: #333 !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    
    .cart-drawer-item {
        grid-template-columns: 60px 1fr auto;
        gap: 0.75rem;
    }
    
    .cart-item-image img {
        width: 60px;
        height: 60px;
    }
    
    .cart-drawer-header h3 {
        font-size: 1.2rem;
    }
}

/* ========================================
   PAGE TEMPLATE
======================================== */

.site-main {
    min-height: 60vh;
    padding-top: 120px;
    padding-bottom: 60px;
}

.entry-header {
    margin-bottom: 40px;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.entry-content {
    line-height: 1.8;
}

.entry-content.full-width-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* ========================================
   MY ACCOUNT PAGES
======================================== */

.my-account-page {
    padding: 60px 0;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-description {
    font-size: 1.1rem;
    color: #666;
}

/* Success Message */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message i {
    font-size: 1.2rem;
}

/* Orders List */
.orders-list {
    max-width: 1000px;
    margin: 0 auto;
}

.order-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-color: #000;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-number {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.order-date {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-status-wrapper {
    display: flex;
    align-items: center;
}

.order-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #cce5ff;
    color: #004085;
}

.status-on-hold {
    background: #f8d7da;
    color: #721c24;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled,
.status-failed {
    background: #f8d7da;
    color: #721c24;
}

.status-refunded {
    background: #e2e3e5;
    color: #383d41;
}

.order-body {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 30px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.item-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.item-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.order-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.order-total {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

.order-total strong {
    font-size: 1.5rem;
    color: #000;
}

.btn-view-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-order:hover {
    background: #333;
    transform: translateX(5px);
}

.no-orders {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.no-orders i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-orders h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.no-orders p {
    color: #666;
    margin-bottom: 30px;
}

/* ========================================
   COMPROBANTE UPLOAD
======================================== */
.comprobante-upload-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.comprobante-upload {
    text-align: center;
}

.btn-upload {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-upload:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.btn-upload:active {
    transform: translateY(0);
}

.upload-status {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.upload-status .error {
    color: #d32f2f;
}

.comprobante-uploaded {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #e8f5e9;
    border: 1px solid #4CAF50;
    border-radius: 6px;
    font-size: 0.9rem;
}

.comprobante-uploaded i.fa-check-circle {
    color: #4CAF50;
    font-size: 1.2rem;
}

.comprobante-uploaded span {
    flex: 1;
    color: #2e7d32;
    font-weight: 600;
}

.btn-view-comprobante {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-view-comprobante:hover {
    background: #333;
}

/* Upload Notification */
.upload-notification {
    position: fixed;
    top: 100px;
    right: -300px;
    background: #323232;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 99999;
    transition: right 0.3s ease;
    font-weight: 600;
}

.upload-notification.show {
    right: 20px;
}

.upload-notification.success {
    background: #4CAF50;
}

.upload-notification.error {
    background: #f44336;
}

/* Address Form */
.address-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.shipping-address-form .form-row {
    margin-bottom: 25px;
}

.shipping-address-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.shipping-address-form .required {
    color: #e74c3c;
}

.shipping-address-form input[type="text"],
.shipping-address-form select {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #1d1d1f;
    transition: all 0.3s ease;
}

.shipping-address-form input:focus,
.shipping-address-form select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .order-body {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        align-items: flex-start;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .form-row-group {
        grid-template-columns: 1fr;
    }
    
    .address-form-wrapper {
        padding: 25px;
    }
}

/* ========================================
   CHECKOUT PAGE
======================================== */

.woocommerce-checkout {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    background: #fff;
}

body.woocommerce-checkout .site-main {
    padding-bottom: 0;
}

body.woocommerce-checkout .entry-content {
    padding: 0;
}

.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.woocommerce form .form-row {
    margin-bottom: 20px;
}

.woocommerce form .form-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #1d1d1f;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.woocommerce-checkout h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1d1d1f;
}

.woocommerce table.shop_table {
    width: 100%;
    border: none;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce table.shop_table th {
    font-weight: 600;
    background: #fff;
}

.woocommerce #payment {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.woocommerce #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.woocommerce #payment div.payment_box {
    background: #f9f9f9;
    padding: 15px;
    margin-top: 10px;
    border-radius: 6px;
}

.woocommerce #payment #place_order {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce #payment #place_order:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive Checkout */
@media (max-width: 768px) {
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   MODALS (Login/Register & Address)
======================================== */

/* Overlay - Default hidden */
#loginModalOverlay,
#addressModalOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 99998;
}

/* Modal Container - Default hidden */
#loginModal,
#addressModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 99999;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

/* Body lock when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #000;
}

/* Modal Body */
#loginModal .modal-body,
#addressModal .modal-body {
    padding: 30px;
    background: #fff;
    border-radius: 0 0 16px 16px;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.auth-tab.active {
    color: #000;
    border-bottom-color: #000;
}

.auth-tab:hover {
    color: #000;
}

/* Form Groups */
#loginModal .form-group,
#addressModal .form-group {
    margin-bottom: 20px;
}

#loginModal .form-group label,
#addressModal .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
    font-size: 0.95rem;
}

#loginModal .form-group input[type="text"],
#loginModal .form-group input[type="email"],
#loginModal .form-group input[type="password"],
#addressModal .form-group input[type="text"],
#addressModal .form-group input[type="email"],
#addressModal .form-group input[type="password"],
#addressModal .form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #1d1d1f;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

#loginModal .form-group input:focus,
#loginModal .form-group select:focus,
#addressModal .form-group input:focus,
#addressModal .form-group select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

#loginModal .form-group .required,
#addressModal .form-group .required {
    color: #e74c3c;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

/* Form Actions */
#loginModal .modal-actions,
#addressModal .modal-actions {
    margin-top: 25px;
    text-align: center;
}

#loginModal .btn-block,
#addressModal .btn-block {
    width: 100%;
}

#loginModal .form-footer,
#addressModal .form-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

#loginModal .form-footer a,
#addressModal .form-footer a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

#loginModal .form-footer a:hover,
#addressModal .form-footer a:hover {
    text-decoration: underline;
}

/* Success/Error Messages */
.success-message,
.error-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Row Group (2 columns) */
.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Responsive Modals */
@media (max-width: 576px) {
    #loginModal,
    #addressModal {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .modal-header,
    #loginModal .modal-body,
    #addressModal .modal-body {
        padding: 20px;
    }
    
    .form-row-group {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PÁGINA NOSOTROS
======================================== */
.nosotros-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    padding: 3rem 0 4rem;
    text-align: center;
    color: #fff;
}

.nosotros-hero .page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.nosotros-hero .page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.nosotros-content {
    padding: 6rem 0;
    background: #fff;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nosotros-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.nosotros-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.nosotros-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nosotros-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #1d1d1f;
}

.nosotros-features .feature-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.nosotros-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.nosotros-image .about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.nosotros-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: #fff;
}

.nosotros-image .image-overlay h3 {
    font-size: 1.5rem;
    margin: 0;
}

.nosotros-values {
    background: #f9f9f9;
    padding: 6rem 0;
}

.nosotros-values .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: #fff;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* ========================================
   PÁGINA CONTACTO
======================================== */
.contacto-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    padding: 3rem 0 4rem;
    text-align: center;
    color: #fff;
}

.contacto-hero .page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.contacto-hero .page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contacto-content {
    padding: 6rem 0;
    background: #fff;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
}

.info-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-card > p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: #fff;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-item.whatsapp:hover {
    border-color: #25D366;
}

.contact-item.instagram:hover {
    border-color: #E1306C;
}

.contact-item.tiktok:hover {
    border-color: #000;
}

.contact-item.email:hover {
    border-color: #EA4335;
}

.contact-item.phone:hover {
    border-color: #4285F4;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item.whatsapp .contact-icon {
    background: #25D366;
}

.contact-item.instagram .contact-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.contact-item.tiktok .contact-icon {
    background: #000;
}

.contact-item.email .contact-icon {
    background: #EA4335;
}

.contact-item.phone .contact-icon {
    background: #4285F4;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #1d1d1f;
}

.contact-details p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-action {
    font-size: 0.85rem;
    color: #000;
    font-weight: 600;
}

.location-card {
    background: #000;
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.location-icon i {
    font-size: 1.5rem;
    color: #000;
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.location-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contacto-map {
    position: relative;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 600px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.contacto-cta {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.contacto-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contacto-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Responsive - Nosotros y Contacto */
@media (max-width: 768px) {
    .nosotros-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nosotros-image .about-img {
        height: 400px;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 400px;
    }
}

/* ========================================
   OVERRIDE FORZADO PARA MINIATURAS
   (Sobrescribe estilos inline de WooCommerce)
======================================== */
.woocommerce div.product .flex-control-thumbs li[style],
.woocommerce div.product div.images .flex-control-thumbs li[style],
body.single-product div.product .flex-control-thumbs li[style],
ol.flex-control-nav.flex-control-thumbs li[style] {
    width: 280px !important;
    min-width: 280px !important;
    flex: 0 0 280px !important;
}

.woocommerce div.product .flex-control-thumbs img[style],
.woocommerce div.product div.images .flex-control-thumbs img[style],
body.single-product div.product .flex-control-thumbs img[style],
ol.flex-control-nav.flex-control-thumbs img[style],
.woocommerce div.product .flex-control-thumbs img[width],
.woocommerce div.product .flex-control-thumbs img[height] {
    width: 280px !important;
    height: 370px !important;
    max-width: 280px !important;
    max-height: 370px !important;
    min-width: 280px !important;
    min-height: 370px !important;
}

/* Forzar tamaños en los atributos width/height del elemento img */
.flex-control-thumbs img {
    width: 280px !important;
    height: 370px !important;
}
