/**
 * Main Styles - Shekinah Theme
 * Estilos principales para el tema de zapatos
 */

/* ============================================
   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);
}

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

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .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;
    }
    
    .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 MODERNO - ESTILOS MEJORADOS
   ============================================ */

.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 60px 0 0;
    margin-top: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.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;
    }
}
