/* Modern Theme CSS */

:root {
    --modern-hero-bg: #000000;
    --modern-hero-text: #ffffff;
    --modern-hero-accent: #ff69b4;
    --modern-hero-secondary: #333333;
    
    /* Modern theme variables */
    --modern-bg: #000000;
    --modern-text: #ffffff;
    --modern-accent: #1a1a1a;
    --modern-secondary: #333333;
    
    /* Font sizes */
    --small-font-size: 0.713rem;
}

/* Dark theme overrides */
:root.dark {
    --modern-hero-bg: #0a0a0a;
    --modern-hero-text: #e6e6e6;
    --modern-hero-accent: #ff69b4;
    --modern-hero-secondary: #444444;
    
    /* Modern theme dark variables */
    --modern-bg: #0a0a0a;
    --modern-text: #e6e6e6;
    --modern-accent: #2a2a2a;
    --modern-secondary: #444444;
}

/* Light theme */
:root.light {
    --modern-hero-bg: #ffffff;
    --modern-hero-text: #333333;
    --modern-hero-accent: #ff69b4;
    --modern-hero-secondary: #e0e0e0;
    
    /* Modern theme light variables */
    --modern-bg: #ffffff;
    --modern-text: #333333;
    --modern-accent: #f8f9fa;
    --modern-secondary: #e0e0e0;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--modern-hero-bg);
    color: var(--modern-hero-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.modern-header {
    background: var(--modern-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--modern-secondary);
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    min-height: 100px;
}

@media (max-width: 768px) {
    .modern-header {
        padding: 1rem 0;
        min-height: 70px;
    }
}

.modern-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--modern-text);
    text-decoration: none;
}

@media (max-width: 768px) {
    .modern-logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

.modern-nav-link {
    color: var(--modern-text);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin: 0 3rem;
}

@media (max-width: 991px) {
    .modern-nav-link {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    #mobileNavMenu .modern-nav-link {
        margin: 0.5rem 0;
        display: block;
        text-align: center;
    }
}

.modern-nav-link:hover {
    color: var(--brand-color);
}

.modern-nav-link.active {
    color: var(--brand-color);
}

/* Dropdown Styles */
.modern-dropdown-menu {
    background: var(--modern-accent) !important;
    border: 1px solid var(--modern-secondary) !important;
    backdrop-filter: blur(10px);
}

.modern-dropdown-item {
    color: var(--modern-text) !important;
    transition: background-color 0.3s ease;
}

.modern-dropdown-item:hover {
    background-color: var(--modern-secondary) !important;
    color: var(--modern-text) !important;
}

/* Cart Icon */
.modern-cart-icon {
    color: var(--modern-text) !important;
}

/* Theme Button */
.modern-theme-btn {
    background: var(--modern-secondary) !important;
    color: var(--modern-text) !important;
    border: 1px solid var(--modern-secondary) !important;
    transition: all 0.3s ease;
}

.modern-theme-btn:hover {
    background: var(--brand-color) !important;
    color: white !important;
    border-color: var(--brand-color) !important;
}

/* Hero Section */
.modern-hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (max-width: 768px) {
    .modern-hero {
        height: 85vh;
        background-attachment: scroll;
    }
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.modern-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .modern-hero-content h1 {
        font-size: 2.5rem !important;
        letter-spacing: 1px !important;
    }
    
    .modern-hero-content .btn {
        padding: 0.75rem 2rem !important;
        font-size: 0.9rem;
    }
}

/* General Sections */
.modern-section {
    padding: 5rem 0;
}

.modern-about {
    background: var(--modern-hero-bg);
    padding: 3rem 0;
}

/* About Us Layout */
.about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text-section {
    width: 40%;
}

.about-carousel-section {
    flex: 1;
}

@media (max-width: 1000px) {
    .about-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text-section {
        width: 100%;
        order: 1;
    }
    
    .about-carousel-section {
        width: 100%;
        order: 2;
    }

    .modern-about {
        padding-bottom: 10em;
    }
}

@media (max-width: 600px) {
    .about-carousel-section {
        width: 125vw;
        transform: translateX(17vw);
        margin-bottom: 30px;
    }

    .wishlist-carousel-container {
        height: 200px !important;
        margin: 0 !important;
    }
}

.modern-wishlist {
    background: var(--modern-hero-bg);
}

@media (max-width: 768px) {
    .modern-wishlist {
        padding: 2rem 0;
    }
    
    .categories-showcase {
        padding: 3rem 0 !important;
    }
}

.modern-big-text {
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 0.8;
    background: linear-gradient(45deg, #ff69b4, #ff1493, #dc143c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-instagram {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    padding: 3rem 0;
}

/* Image Carousel */
.image-carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;          
    gap: 50px;
}

@media (max-width: 1000px) {
    .image-carousel-container {
        height: 400px;
        gap: 30px;
        justify-content: center;
    }
    
    .carousel-main {
        width: 60%;
        height: 380px;
    }
    
    .carousel-secondary {
        width: 40%;
        height: 320px;
    }
    
    .carousel-third {
        width: 40%;
        height: 320px;
    }
}

.carousel-main {
    width: 55%;
    height: 580px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transform-origin: center center;
    z-index: 1;
}


.carousel-secondary {
    width: 45%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    opacity: 0.7;
    transform-origin: center center;
    z-index: 20;
}


.carousel-third {
    width: 45%;
    height: 450px;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    border-radius: 15px;
    opacity: 0;
    transform-origin: center center;
    z-index: 1;   
}


.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.5s ease-out;
}

.carousel-main .carousel-image {
    opacity: 1;
}

.carousel-secondary .carousel-image {
    opacity: 0.8;
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Wishlist Carousel */
.wishlist-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    margin: 4rem 0;
    display: flex;
    align-items: center;
}

.wishlist-carousel-track {
    display: flex;
    animation: scroll-horizontal 20s linear infinite;
    gap: 40px;
    height: 100%;
    align-items: center;
}

.wishlist-card {
    flex: 0 0 450px;
    height: 320px;
    background: #000;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    transform-origin: center center;
    animation: card-scale 20s linear infinite;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .wishlist-card {
        flex: 0 0 280px;
        height: 200px;
        clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
    }
}

.wishlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.7), rgba(220, 20, 60, 0.7));
    opacity: 0.6;
    transition: all 0.5s ease;
    z-index: 2;
}

.wishlist-card::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ff69b4, #dc143c, #ff1493, #ff69b4);
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.wishlist-card:hover::after {
    opacity: 1;
}

.wishlist-card:hover::before {
    opacity: 0.3;
}

.wishlist-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 80px rgba(255, 105, 180, 0.5);
}

.wishlist-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 3;
}

.wishlist-card-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.wishlist-text-content {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    z-index: 4;
    text-align: left;
}

.wishlist-product-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.1;
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transform: translateY(20px);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .wishlist-product-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

.wishlist-product-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transform: translateY(10px);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.wishlist-card:hover .wishlist-product-title {
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 6px 30px rgba(0,0,0,0.7);
}

.wishlist-card:hover .wishlist-product-subtitle {
    transform: translateY(0);
    opacity: 1;
    color: #ffffff;
}

.wishlist-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.wishlist-card:hover .wishlist-product-image {
    transform: scale(1.1);
}

.wishlist-carousel-track:hover {
    animation-play-state: paused;
}

.wishlist-carousel-track:hover .wishlist-card {
    animation-play-state: paused;
}

/* Product Cards */
.product-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    width: 280px;
    height: 360px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4) !important;
}

.product-card-modern .product-image {
    width: 100% !important;
    height: 220px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 20px 20px 0 0 !important;
    display: block !important;
    background-color: #f0f0f0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-card-modern .product-info {
    padding: 1rem !important;
    text-align: center !important;
    background: #ffffff !important;
    height: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    border-radius: 0 0 20px 20px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-card-modern .product-title {
    color: #333333;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.product-card-modern .product-price {
    color: var(--brand-color);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
}

/* Category Cards */
.category-card-modern {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(220, 20, 60, 0.15));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.4);
    border-color: rgba(255, 105, 180, 0.4);
}

.category-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.category-card-modern:hover .category-card-image {
    transform: scale(1.05);
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8), rgba(0,0,0,0.95));
    padding: 3rem 2rem 2rem;
    transition: all 0.4s ease;
}

.category-card-modern:hover .category-card-overlay {
    background: linear-gradient(transparent, rgba(255, 105, 180, 0.3), rgba(0,0,0,0.9));
}

.category-card-title {
    color: white;
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-card-title {
    color: var(--brand-color);
    text-shadow: 0 2px 12px var(--brand-color);
}

/* Category Showcase Cards */
.categories-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-showcase-card {
    width: 100%;
    height: 800px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .category-showcase-card {
        height: 300px;
        border-radius: 15px;
    }
}

.category-showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px var(--brand-color);
}

.category-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    opacity: 0.7;
}

.category-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.category-showcase-card:hover .category-image-bg {
    transform: scale(1.1);
    opacity: 0.8;
}

.category-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
}

.category-title-cutout {
    font-size: 12rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.6s ease;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    padding: 0 2rem;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    .category-title-cutout {
        font-size: 3rem;
        white-space: normal;
        word-break: break-word;
        padding: 0 1rem;
    }
}

.category-showcase-card:hover .category-title-cutout {
    color: var(--brand-color);
    transform: scale(1.02);
}

/* Instagram Section */
.instagram-section {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 2rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.instagram-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 2rem 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.instagram-subtitle {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.instagram-subtitle-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-subtitle-link:hover .instagram-subtitle {
    color: var(--brand-color);
    transform: translateY(-2px);
}

.instagram-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .instagram-grid {
        flex-direction: column;
        gap: 15px;
    }
}

.instagram-post-item {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.instagram-post-item:hover {
    transform: translateY(-5px);
}

.instagram-post-header {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.instagram-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff69b4, #dc143c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

.instagram-username {
    font-weight: 700;
    font-size: 0.85rem;
    color: #333;
    margin: 0;
}

.instagram-post-image {
    width: 18vw;
    height: 60vh;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

@media (max-width: 1800px) {
    .instagram-post-image {
        width: 22vw;
        height: 60vh;
    }
}

@media (max-width: 1400px) {
    .instagram-post-image {
        width: 22vw;
        height: 50vh;
    }
}

@media (max-width: 1200px) {
    .instagram-post-image {
        width: 22vw;
        height: 40vh;
    }
}

@media (max-width: 768px) {
    .instagram-post-image {
        width: 90vw;
        height: 40vh;
        margin: 0 auto;
        
    }
}

.instagram-post-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    background: transparent;
}

.instagram-post-actions {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 15px;
    align-items: center;
}

.instagram-action-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.instagram-action-btn:hover {
    color: #ff1493;
}

.instagram-likes {
    font-weight: 700;
    font-size: 0.8rem;
    color: #333;
    margin: 0;
}

.instagram-post-content {
    padding: 1rem 0;
    text-align: center;
    background: transparent;
}

.instagram-post-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.instagram-hashtags {
    color: #1e90ff;
    font-weight: 500;
}

.instagram-time {
    color: #999;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 5px;
}

.instagram-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 20px;
    height: 100%;
    align-items: center;
}

.mini-product {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.instagram-post-item:hover .mini-product {
    opacity: 1;
    transform: scale(1.03);
}

.instagram-reel-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.instagram-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Navigation Cart */
.nav__cart__icon {
    font-size: var(--h2-font-size);
    position: relative;
}

.nav__cart-items {
    font-size: 10px;
    font-style: normal;
    color: #fff;
    background: var(--brand-color);
    border-radius: 50%;
    padding: 0px 4px;
    position: absolute;
    right: -4px;
    top: -4px;
}

.nav__cart-detail {
    font-size: var(--small-font-size);
    font-style: normal;
    top: 7px;
}

@media only screen and (max-width: 836px) {
    .nav__cart-detail {
        display: none;
    }
}

/* Animations */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scroll-horizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes card-scale {
    0% { transform: scale(1); }
    25% { transform: scale(1.02); }
    50% { transform: scale(1.05); }
    75% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes text-glow {
    0% { text-shadow: 0 0 5px var(--brand-color); }
    100% { text-shadow: 0 0 20px var(--brand-color), 0 0 30px var(--brand-color); }
}

/* Modern Footer */
.modern-footer {
    background: var(--modern-accent);
    color: var(--modern-text);
    margin-top: auto;
    border-top: 1px solid var(--modern-secondary);
}

.footer-main {
    background: var(--modern-accent);
    border-bottom: 1px solid var(--modern-secondary);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-color);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--modern-text);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--modern-text);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-color);
}

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

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

.footer-links a {
    color: var(--modern-text);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--brand-color);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-link:hover::before {
    transform: translateX(100%);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.twitter {
    background: #1da1f2;
    color: white;
}

.social-link.youtube {
    background: #ff0000;
    color: white;
}

.social-link.whatsapp {
    background: #25d366;
    color: white;
}

.social-link.tiktok {
    background: #000000;
    color: white;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-cta {
    color: var(--modern-text);
    opacity: 0.7;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.footer-bottom {
    background: var(--modern-bg);
    border-top: 1px solid var(--modern-secondary);
}

.footer-copyright {
    color: var(--modern-text);
    opacity: 0.6;
    font-size: 0.85rem;
    margin: 0;
}

.footer-links-inline {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-links-inline a {
    color: var(--modern-text);
    opacity: 0.6;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links-inline a:hover {
    color: var(--brand-color);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

#mobileNavMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--modern-bg);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 1000;
}

#mobileNavMenu.show {
    left: 0;
}

#mobileNavMenu .modern-nav-link {
    font-size: 1.2rem;
    margin: 1rem 0;
    text-align: center;
    width: 100%;
    padding: 1rem;
    display: block;
}

#mobileNavMenu .navbar-secondary {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#mobileNavMenu .navbar-secondary form {
    display: flex;
    justify-content: center;
}

#mobileNavMenu .modern-search {
    width: 250px !important;
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Keep desktop secondary menu visible on desktop nav */
    .modern-header .navbar-secondary {
        display: flex;
    }
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    #mobileNavMenu {
        display: none !important;
    }
    
    /* Ensure desktop nav items stay horizontal */
    #navbarNav {
        display: flex !important;
        flex-direction: row;
        align-items: center;
    }
    
    #navbarNav .modern-nav-link {
        display: inline-block;
        margin: 0 3rem;
    }
}

@media (max-width: 768px) {
    .footer-links-inline {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 3rem;
    }
}