/* ============================================
   GLOBAL LAYOUT & STICKY FOOTER
   ============================================ */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF; /* Color de fondo base de la marca */
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content {
    flex: 1 0 auto; 
    background-color: #FFFFFF; /* Asegura que el contenido sea uniforme */
}

.woocommerce-shop-modern {
    padding: 140px 0 80px; 
}

.shekinah-footer {
    flex-shrink: 0; /* Evita que el footer se colapse en el diseño flex */
}

/* ============================================
   HEADER STYLES
   ============================================ */
.header-top {
    background: var(--shekinah-pink);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 1.5rem;
    color: var(--shekinah-gray-dark);
}

.header-contact i {
    color: var(--shekinah-gold);
    margin-right: 0.5rem;
}

.header-social {
    display: flex;
    gap: 1rem;
}

.header-social a {
    color: var(--shekinah-gray-dark);
    transition: color 0.3s ease;
}

.header-social a:hover {
    color: var(--shekinah-gold);
}

/* Header Main */
.header-main {
    background: var(--shekinah-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-branding {
    flex-shrink: 0;
}

.site-branding img {
    max-height: 60px;
    width: auto;
}

/* Navigation */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--shekinah-black);
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--shekinah-gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

/* Submenu */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--shekinah-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0;
}

.main-navigation li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-transform: none;
    font-weight: 400;
}

.main-navigation .sub-menu a::after {
    display: none;
}

.main-navigation .sub-menu a:hover {
    background: var(--shekinah-pink-light);
    color: var(--shekinah-gold-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions button,
.header-actions a {
    background: none;
    border: none;
    color: var(--shekinah-black);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.header-actions button:hover,
.header-actions a:hover {
    color: var(--shekinah-gold);
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--shekinah-gold);
    color: var(--shekinah-white);
    font-size: 0.625rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    position: relative;
}

.search-form {
    position: relative;
}

.search-field {
    width: 100%;
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px solid var(--shekinah-gold);
    background: transparent;
    color: var(--shekinah-white);
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--shekinah-gold);
    cursor: pointer;
    padding: 0.5rem;
}

.search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--shekinah-white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: var(--shekinah-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--shekinah-black);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--shekinah-black);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(255, 255, 255, 0.3),
        rgba(245, 213, 224, 0.5)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    color: var(--shekinah-black);
    animation: fadeIn 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--shekinah-gold);
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--shekinah-black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: var(--shekinah-gray-dark);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    border-color: var(--shekinah-gold);
    color: var(--shekinah-gold);
}

.hero-buttons .btn-outline:hover {
    background: var(--shekinah-gold);
    color: var(--shekinah-white);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--shekinah-gold);
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
    color: var(--shekinah-gold-dark);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--shekinah-gold), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--shekinah-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

/* ============================================
   CATEGORÍAS DESTACADAS
   ============================================ */
.featured-categories {
    background: var(--shekinah-cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
    transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(196, 163, 90, 0.6), transparent);
}

.category-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: var(--shekinah-white);
    width: 100%;
}

.category-content h3 {
    font-size: 1.75rem;
    color: var(--shekinah-white);
    margin-bottom: 0.5rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--shekinah-gold-light);
    transition: color 0.3s ease;
}

.category-card:hover .category-link {
    color: var(--shekinah-white);
}

/* ============================================
   PRODUCTOS
   ============================================ */
.featured-products {
    background: var(--shekinah-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--shekinah-white);
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    background: var(--shekinah-pink-light);
}

.product-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-badge.sale {
    background: var(--shekinah-gold);
    color: var(--shekinah-white);
}

.product-badge.featured {
    background: var(--shekinah-black);
    color: var(--shekinah-white);
}

.product-actions {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-actions a,
.product-actions button {
    width: 40px;
    height: 40px;
    background: var(--shekinah-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shekinah-black);
    transition: all 0.3s ease;
}

.product-actions a:hover,
.product-actions button:hover {
    background: var(--shekinah-gold);
    color: var(--shekinah-white);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-title a {
    color: var(--shekinah-black);
}

.product-title a:hover {
    color: var(--shekinah-gold);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--shekinah-gold);
}

.product-price del {
    color: var(--shekinah-gray);
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.product-price ins {
    text-decoration: none;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
}

.promo-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    color: var(--shekinah-white);
}

.promo-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--shekinah-gold-light);
    display: block;
    margin-bottom: 1rem;
}

.promo-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--shekinah-white);
    margin-bottom: 1rem;
}

.promo-text {
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--shekinah-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--shekinah-gold);
    color: var(--shekinah-white);
    padding: 2rem;
    text-align: center;
    min-width: 150px;
}

.about-experience .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience .text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-content {
    padding: 2rem 0;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-features i {
    width: 24px;
    height: 24px;
    background: var(--shekinah-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--shekinah-pink);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--shekinah-white);
    padding: 2rem;
    text-align: center;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    color: var(--shekinah-gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--shekinah-gray);
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
    background: var(--shekinah-white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 163, 90, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay svg {
    color: var(--shekinah-white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--shekinah-black);
    color: var(--shekinah-white);
}

.footer-widgets {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--shekinah-gold);
    margin-bottom: 1.5rem;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--shekinah-gold);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list i {
    color: var(--shekinah-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-list a:hover {
    color: var(--shekinah-gold);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--shekinah-white);
    padding: 0.75rem 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    padding: 0.75rem 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--shekinah-gold);
    color: var(--shekinah-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-icon {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header-banner {
    background: var(--shekinah-pink);
    padding: 4rem 0;
    text-align: center;
}

.page-header-banner .page-title {
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.875rem;
    color: var(--shekinah-gray);
}

.breadcrumb a {
    color: var(--shekinah-gray-dark);
}

.breadcrumb a:hover {
    color: var(--shekinah-gold);
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: var(--shekinah-gold);
}

/* ============================================
   BLOG / POSTS
   ============================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background: var(--shekinah-white);
    overflow: hidden;
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--shekinah-gold);
    color: var(--shekinah-white);
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.post-content {
    padding: 1.5rem;
}

.entry-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.entry-title a {
    color: var(--shekinah-black);
}

.entry-title a:hover {
    color: var(--shekinah-gold);
}

.entry-meta {
    font-size: 0.875rem;
    color: var(--shekinah-gray);
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-summary {
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--shekinah-gold);
}

.read-more:hover {
    color: var(--shekinah-gold-dark);
}

.read-more svg {
    transition: transform 0.3s ease;
}

.read-more:hover svg {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--shekinah-pink-dark);
    color: var(--shekinah-gray-dark);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background: var(--shekinah-gold);
    border-color: var(--shekinah-gold);
    color: var(--shekinah-white);
}

/* ============================================
   SIDEBAR
   ============================================ */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.widget-area {
    padding: 2rem 0;
}

.widget {
    background: var(--shekinah-white);
    padding: 2rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--shekinah-gold);
}

.widget ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--shekinah-pink);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--shekinah-gray-dark);
}

.widget a:hover {
    color: var(--shekinah-gold);
}

/* ============================================
/* --- DYNAMIC HOME CARDS --- */
.dynamic-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.dynamic-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(61, 44, 42, 0.12);
    border-color: #E8D5D0;
}

.dynamic-card .product-image-modern {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
}

.dynamic-card .product-image-modern img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dynamic-card:hover .product-image-modern img {
    transform: scale(1.1);
}

.product-badge-elite {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #00AEEF 0%, #EC008C 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(192, 159, 128, 0.3);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.product-actions-home {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.dynamic-card:hover .product-actions-home {
    opacity: 1;
}

.btn-direct-buy-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #231F20;
    color: #00AEEF;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1.5px solid #231F20;
}

.btn-direct-buy-home:hover {
    background: transparent;
    color: #231F20;
    transform: scale(1.02);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Overlay para menú móvil */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   MENÚ MÓVIL - ESTILOS CORREGIDOS
   ============================================ */

/* Botón de menú hamburguesa - Oculto por defecto en desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle .hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    position: relative;
    transition: all 0.3s ease;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #333;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle .hamburger::before {
    top: -8px;
}

.menu-toggle .hamburger::after {
    top: 8px;
}

/* Overlay para menú móvil */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    /* Mostrar botón de menú hamburguesa en móvil */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ocultar menú de navegación principal en móvil por defecto */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        z-index: 1000;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        flex-direction: column;
        justify-content: flex-start;
        display: flex;
    }
    
    /* Mostrar menú cuando tiene clase active */
    .main-navigation.active {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation li {
        border-bottom: 1px solid var(--shekinah-pink);
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 0;
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0 0 0 1rem;
    }
    
    .main-navigation li.menu-item-has-children > a::before {
        content: '+';
        float: right;
        font-size: 1.25rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-experience {
        right: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* ============================================================
   FOOTER — Los estilos del footer están definidos en footer.php
   con clases .shekinah-footer y .sf-* para evitar conflictos.
   Aquí solo se incluyen estilos de compatibilidad.
   ============================================================ */

/* Compatibilidad con footers antiguos (por si acaso) */
.modern-footer { display: none !important; }


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    max-height: 60px;
    margin-bottom: 20px;
    opacity: 0.95;
    filter: brightness(1.1);
}

.footer-brand p {
    color: #b8c5d6;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.footer-column h6 {
    color: #e94560;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a::before {
    content: '→';
    opacity: 0;
    margin-right: 0;
    transition: all 0.3s ease;
    color: #e94560;
}

.footer-column ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    margin-right: 8px;
}

/* Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter input[type="email"] {
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.footer-newsletter input[type="email"]::placeholder {
    color: #8892b0;
}

.footer-newsletter input[type="email"]:focus {
    border-color: #e94560;
    background: rgba(255,255,255,0.08);
}

.footer-newsletter button {
    padding: 14px 24px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8892b0;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-brand img {
        margin: 0 auto 20px;
        display: block;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 0;
        margin-top: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-column h6::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-newsletter {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* 
 * WooCommerce Variable Products & Swatches 
 */
.variations_form {
    margin: 20px 0;
}
.variations_form table.variations {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: separate;
    border-spacing: 0 10px;
}
.variations_form table.variations td.label {
    width: 25%;
    padding: 10px 0;
    vertical-align: top;
    color: var(--shekinah-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.variations_form table.variations td.value {
    width: 75%;
    padding: 10px 0;
}
.variations_form table.variations select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23c9a962%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}
.variations_form table.variations select:focus {
    border-color: var(--shekinah-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}
.variations_form .single_variation_wrap {
    background: #fdfdfd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}
.variations_form .woocommerce-variation-price {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}
.variations_form .reset_variations {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    color: #e31837;
}

/* Woo Variation Swatches Premium UI Support */
.woo-variation-swatches .variable-items-wrapper {
    gap: 10px;
    margin-bottom: 5px;
}
.woo-variation-swatches .variable-item {
    border-radius: 6px !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}
.woo-variation-swatches .variable-item:not(.disabled):hover {
    border-color: var(--shekinah-primary) !important;
}
.woo-variation-swatches .variable-item.selected,
.woo-variation-swatches .variable-item.selected:hover {
    border-color: var(--shekinah-primary) !important;
    box-shadow: 0 0 0 2px var(--shekinah-primary-light), 0 0 0 1px var(--shekinah-primary) !important;
}

/* ============================================
   PAGINACIÓN MODERNA BOUTIQUE
   ============================================ */
.pagination-modern {
    margin: 60px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pagination-modern .nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pagination-modern .page-numbers {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(192, 159, 128, 0.3);
    border-radius: 50%;
    color: #231F20;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pagination-modern .page-numbers.current {
    background: #00AEEF;
    color: #fff;
    border-color: #00AEEF;
    box-shadow: 0 10px 25px rgba(192, 159, 128, 0.4);
}

.pagination-modern .page-numbers:hover:not(.current):not(.dots) {
    background: #F9F9F9;
    color: #00AEEF;
    border-color: #00AEEF;
    transform: translateY(-4px);
}

.pagination-modern .dots {
    border: none;
    background: transparent;
    box-shadow: none;
    width: auto;
}

.pagination-modern .prev, .pagination-modern .next {
    background: #231F20;
    color: #fff !important;
    border: none;
}

.pagination-modern .prev:hover, .pagination-modern .next:hover {
    background: #000;
    transform: translateY(-4px);
}

/* ============================================
   RESERVA MODERNA - ELITE BOUTIQUE VIEW
   ============================================ */
.reserva-modern-view {
    font-family: 'Montserrat', sans-serif;
    color: #231F20;
    overflow-x: hidden;
}

.reserva-premium-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #231F20;
    background-image: linear-gradient(to bottom, rgba(61,44,42,0.7) 0%, rgba(61,44,42,0.4) 100%), url('../../../uploads/2026/03/WhatsApp-Image-2026-03-21-at-12.54.50-PM.jpeg');
    background-size: cover;
    background-position: center 30%;
    padding: 140px 20px 80px;
    color: white;
}

.reserva-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(61,44,42,0.85) 0%, rgba(61,44,42,0.6) 100%);
    z-index: 1;
}

.reserva-center { position: relative; z-index: 2; max-width: 800px; animation: fadeInUp 1.2s ease; }

.reserva-badge { 
    display: inline-block; background: #00AEEF; color: #fff; padding: 6px 16px; border-radius: 50px; 
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}

.reserva-main-title { font-family: 'Montserrat', serif; font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; }
.reserva-main-subtitle { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto; line-height: 1.6; }

.section-spacing { padding: 80px 20px; }

/* Pasos de Proceso */
.reserva-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.reserva-step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(192,159,128,0.15);
    transition: all 0.4s ease;
}

.reserva-step-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: #00AEEF; }

.step-icon { 
    width: 50px; height: 50px; background: #F9F9F9; color: #00AEEF; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; margin: 0 auto 20px; font-weight: 800; font-size: 18px;
}

.reserva-step-card h4 { font-family: 'Montserrat', serif; font-size: 1.4rem; margin-bottom: 12px; }
.reserva-step-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* Layout Partidor */
.reserva-split-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.reserva-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.card-header { margin-bottom: 40px; }
.card-header h3 { font-family: 'Montserrat', serif; font-size: 2.2rem; margin-bottom: 10px; }
.card-header p { color: #888; font-size: 15px; }

/* Formulario Estilizado Boutique */
.boutique-form .floating-group { position: relative; margin-bottom: 30px; }
.boutique-form .floating-group input, .boutique-form .floating-group textarea {
    width: 100%; padding: 14px 0; border: none; border-bottom: 2px solid #EEE;
    font-size: 15px; background: transparent; transition: all 0.3s;
}

.boutique-form .floating-group label {
    position: absolute; left: 0; top: 14px; color: #999; font-size: 15px;
    pointer-events: none; transition: all 0.3s;
}

.boutique-form .floating-group input:focus, .boutique-form .floating-group input:not(:placeholder-shown) { border-color: #00AEEF; outline: none; }
.boutique-form .floating-group input:focus + label, .boutique-form .floating-group input:not(:placeholder-shown) + label {
    top: -12px; font-size: 12px; color: #00AEEF; font-weight: 700;
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.form-select-group { margin-bottom: 25px; }
.form-select-group label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: #888; margin-bottom: 10px; }

.premium-select {
    width: 100%; padding: 14px 20px; border-radius: 12px; border: 1px solid #EEE;
    background: #FFFFFF; font-size: 15px; color: #231F20; cursor: pointer; transition: all 0.3s;
}

.premium-select:focus { border-color: #00AEEF; box-shadow: 0 0 0 4px rgba(192,159,128,0.1); outline: none; }

.btn-boutique-primary {
    width: 100%; padding: 20px; background: #231F20; color: #fff; border: none; border-radius: 15px;
    font-weight: 700; font-size: 14px; letter-spacing: 2px; cursor: pointer; transition: all 0.4s;
    display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 20px;
}

.btn-boutique-primary:hover { background: #000; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transform: translateY(-3px); }

/* Recibo Dinámico */
.reserva-summary-view { position: sticky; top: 120px; }

.receipt-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.receipt-cut {
    height: 15px; background: #231F20;
    mask-image: radial-gradient(circle at 10px 15px, transparent 10px, black 11px);
    mask-size: 20px 20px;
}

.receipt-body { padding: 40px 30px; }
.receipt-header { text-align: center; padding-bottom: 25px; border-bottom: 1px dashed rgba(192,159,128,0.3); margin-bottom: 25px; }
.receipt-logo { max-height: 40px; margin-bottom: 10px; opacity: 0.8; }
.receipt-header h5 { text-transform: uppercase; font-size: 11px; letter-spacing: 3px; color: #888; margin: 0; }

.receipt-item-main { padding: 15px 0; display: flex; flex-direction: column; gap: 8px; font-family: 'Montserrat', serif; }
.receipt-item-main span { font-size: 16px; color: #888; font-style: italic; }
.receipt-item-main strong { font-size: 2.2rem; color: #231F20; }

.receipt-details { margin-top: 20px; border-top: 1px solid #EEE; padding-top: 20px; display: flex; flex-direction: column; gap: 15px; }
.detail-row { display: flex; justify-content: space-between; font-size: 14px; font-weight: 500; }
.detail-row.dashed { padding-top: 15px; border-top: 1px dashed #DDD; }
.detail-row span.green { color: #27ae60; font-weight: 800; font-size: 18px; }
.detail-row span.gold { color: #00AEEF; font-weight: 800; font-size: 18px; }

.receipt-footer { margin-top: 30px; background: rgba(0,0,0,0.03); padding: 15px; border-radius: 8px; }
.receipt-footer p { font-size: 12px; color: #777; margin: 5px 0; display: flex; align-items: center; gap: 8px; }
.receipt-footer i { color: #00AEEF; }

.extra-benefits-card { background: #231F20; color: #fff; padding: 25px; border-radius: 20px; margin-top: 30px; }
.extra-benefits-card h5 { color: #00AEEF; margin-bottom: 15px; text-transform: uppercase; font-size: 11px; letter-spacing: 2px; }
.extra-benefits-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.extra-benefits-card li { font-size: 13px; display: flex; align-items: center; gap: 10px; opacity: 0.9; }
.extra-benefits-card i { color: #00AEEF; font-size: 11px; }

/* ============================================
   MEJORAS PÁGINA DE PRODUCTO INDIVIDUAL
   Botones de acción y variaciones elegantes
   ============================================ */

/* Botón WhatsApp Destacado */
.btn-whatsapp-contact {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    padding: 14px 24px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    width: 100% !important;
}
.btn-whatsapp-contact:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    background: linear-gradient(135deg, #22c55e 0%, #0d9488 100%) !important;
}

/* Sección de Acciones de Producto */
.product-actions-premium {
    background: #fafafa;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    margin-top: 20px;
}

/* Sección de Reserva Mejorada */
.reserva-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.reserva-section p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    text-align: center;
    font-style: italic;
}

/* Mejoras en Variaciones de Producto */
.variations_form {
    margin: 0 0 20px 0 !important;
}

.variations_form table.variations {
    border-spacing: 0 15px !important;
}

.variations_form table.variations td.label {
    padding: 12px 0 !important;
}

.variations_form table.variations td.label label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #231F20 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.variations_form table.variations select {
    padding: 14px 18px !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    background-color: #fff !important;
    color: #231F20 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.variations_form table.variations select:hover {
    border-color: #00AEEF !important;
}

.variations_form table.variations select:focus {
    border-color: #00AEEF !important;
    box-shadow: 0 0 0 4px rgba(192, 159, 128, 0.15) !important;
    outline: none !important;
}

/* Botón Añadir al Carrito Mejorado */
.single-product .single_add_to_cart_button {
    background: linear-gradient(135deg, #231F20 0%, #5a3d3a 100%) !important;
    color: white !important;
    padding: 16px 30px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(61, 44, 42, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.single-product .single_add_to_cart_button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(61, 44, 42, 0.4) !important;
    background: linear-gradient(135deg, #4a3532 0%, #6b4a47 100%) !important;
}

/* Selector de Cantidad Mejorado */
.single-product .quantity {
    margin-bottom: 15px !important;
}

.single-product .quantity input[type="number"] {
    padding: 14px !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: center !important;
    width: 80px !important;
}

/* ============================================
   PRODUCTO - Página Individual Mejorada
   ============================================ */

/* Contenedor principal de acciones */
.product-actions-wrapper {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
}

/* Botón WhatsApp Principal */
.btn-whatsapp-main {
    display: block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Sección de Variaciones */
.variations-section {
    margin-bottom: 15px;
}

/* Tabla de variaciones - Talla y Color en fila horizontal */
.single-product .variations_form table.variations {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.single-product .variations_form table.variations tbody {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.single-product .variations_form table.variations tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    margin-bottom: 0;
}

.single-product .variations_form table.variations td {
    padding: 0;
    width: 100%;
}

.single-product .variations_form table.variations td.label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-align: left;
}

.single-product .variations_form table.variations td.label label {
    margin: 0;
    font-weight: 600;
}

.single-product .variations_form table.variations td.value {
    width: 100%;
}

.single-product .variations_form table.variations td.value select {
    width: 100%;
    padding: 10px 35px 10px 12px;
    font-size: 14px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.3s ease;
}

.single-product .variations_form table.variations td.value select:focus {
    border-color: #00AEEF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 159, 128, 0.15);
}

.single-product .variations_form table.variations td.value select:hover {
    border-color: #00AEEF;
}

/* Reset de selección */
.single-product .variations_form .reset_variations {
    font-size: 12px;
    color: #888;
    text-decoration: underline;
    margin-top: 10px;
    display: block;
    text-align: center;
}

/* Cantidad centrada */
.single-product .cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.single-product .quantity {
    margin: 0 !important;
}

.single-product .quantity input[type="number"] {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    width: 80px;
    height: 45px;
}

/* Cambiar texto de botón a COMPRAR AHORA */
.single-product .single_add_to_cart_button {
    background: linear-gradient(135deg, #231F20 0%, #5a3d3a 100%) !important;
    color: white !important;
    padding: 16px 40px !important;
    border-radius: 10px !important;
    font-size: 0 !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    width: 100% !important;
    max-width: 300px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(61, 44, 42, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.single-product .single_add_to_cart_button::before {
    content: "COMPRAR AHORA";
    font-size: 16px;
}

.single-product .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 44, 42, 0.4) !important;
    background: linear-gradient(135deg, #4a3532 0%, #6b4a47 100%) !important;
}

/* Sección de Reserva */
.reserva-section,
.product-actions-wrapper > div:last-of-type {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

/* Ocultar botón Ver Tallas - mostrar solo Reservar */
.reserva-section button:first-of-type,
.reserva-section a:first-of-type,
.reserva-section .btn-ver-tallas,
.reserva-form button:first-child,
.reserva-form a:first-child,
[class*="reserva"] button:first-child:not(:only-child),
[class*="reserva"] a:first-child:not(:only-child) {
    display: none !important;
}

/* Mostrar solo el botón de reserva con 50% */
.reserva-section button:last-of-type,
.reserva-section a:last-of-type,
.reserva-form button:last-child,
.reserva-form a:last-child {
    display: block !important;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .product-actions-wrapper {
        padding: 15px;
    }
    
    .single-product .variations_form table.variations td.label {
        flex: 0 0 60px;
        font-size: 13px;
    }
    
    .single-product .variations_form table.variations td.value select {
        max-width: none;
        width: 100%;
    }
    
    .btn-whatsapp-main {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Responsive para selectores */
@media (max-width: 768px) {
    .single-product .variations_form table.variations td.value select {
        font-size: 14px !important;
        padding: 12px 15px !important;
    }
}

/* Responsive */
@media (max-width: 960px) {
    .reserva-split-layout { grid-template-columns: 1fr; }
    .reserva-summary-view { position: static; order: -1; }
    .reserva-form-card { padding: 30px; }
}

@media (max-width: 600px) {
    .reserva-premium-hero { min-height: 50vh; padding: 120px 20px 60px; }
    .reserva-main-title { font-size: 1.8rem; }
    .form-grid-2 { grid-template-columns: 1fr; }
}
