/* Import separate section styles */
@import url('dark_section.css');
@import url('light_section.css');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #0d1117;
    color: #f0f6fc;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 1000;
    background-color: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(48, 54, 61, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(125, 133, 144, 0.3);
}

/* Ticker Section */
.ticker-section {
    height: 40px;
    background: rgba(21, 26, 33, 0.8);
    border-bottom: 1px solid rgba(48, 54, 61, 0.2);
    overflow: hidden;
    position: relative;
}

.ticker-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    align-items: center;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    margin-right: 60px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(240, 246, 252, 0.8);
}

.ticker-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ff5722 100%);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
}

.ticker-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, rgba(240, 246, 252, 0.7), rgba(125, 133, 144, 0.8), rgba(240, 246, 252, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Main Header Section */
.main-header {
    height: 120px;
    background: rgba(13, 17, 23, 0.8);
    position: relative;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-link {
    text-decoration: none;
    color: #f0f6fc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    background: linear-gradient(45deg, rgba(240, 246, 252, 0.7), rgba(125, 133, 144, 0.8), rgba(240, 246, 252, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link:hover {
    background: linear-gradient(45deg, rgba(240, 246, 252, 0.8), rgba(125, 133, 144, 0.9), rgba(240, 246, 252, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(0);
}

.nav-link.active-mega {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.9), rgba(255, 140, 66, 0.8), rgba(255, 87, 34, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link.active-mega::after {
    transform: scaleX(0);
}

/* Mega Menu Styles */
.mega-menu-overlay {
    position: fixed;
    top: 160px;
    left: 0;
    width: 100%;
    height: calc(100vh - 160px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(20px) saturate(1.5) brightness(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.5) brightness(1.1);
}

.mega-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(13, 17, 23, 0.4) 0%,
        rgba(22, 27, 34, 0.3) 25%,
        rgba(13, 17, 23, 0.5) 50%,
        rgba(22, 27, 34, 0.3) 75%,
        rgba(13, 17, 23, 0.4) 100%
    );
    z-index: -1;
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mega-menu-backdrop {
    display: none;
}

.mega-menu-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 40px 40px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mega-menu-content {
    display: flex;
    gap: 40px;
    height: 100%;
    align-items: stretch; /* This makes both columns equal height */
}

.mega-menu-title {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(240, 246, 252, 0.95);
    margin-bottom: 24px;
    background: none;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-link {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(240, 246, 252, 0.9);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    background: transparent;
    border: none;
    transition: color 0.2s ease;
    position: relative;
}

.mega-menu-link:hover {
    color: #f0f6fc;
    background: transparent;
    border: none;
    transform: none;
}

.mega-menu-left,
.mega-menu-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
}

/* Optional: If you want the showcase to fill the available height */
.mega-menu-showcase {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 100%; /* Let it fill the available height */
    min-height: 320px; /* Minimum height as fallback */
    background: rgba(22, 27, 34, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 107, 53, 0.1);
}

.mega-menu-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 140, 66, 0.08) 100%
    );
    border-radius: 20px;
    z-index: 1;
}

.mega-menu-showcase:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 53, 0.2),
        0 0 60px rgba(255, 107, 53, 0.1);
}

.mega-menu-showcase:hover::before {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 140, 66, 0.12) 100%
    );
}

.mega-menu-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.mega-menu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.mega-menu-showcase:hover .mega-menu-image-container img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.mega-menu-showcase .mega-menu-content {
    position: relative;
    padding: 16px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.mega-menu-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 107, 53, 0.1);
    color: rgba(255, 107, 53, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    width: fit-content;
    margin-bottom: 8px;
}

.mega-menu-badge::before {
    content: '';
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    flex-shrink: 0;
}

.mega-menu-showcase-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f0f6fc;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mega-menu-showcase-description {
    font-size: 0.75rem;
    color: rgba(139, 148, 158, 0.8);
    line-height: 1.3;
    margin-bottom: 12px;
}

.mega-menu-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 53, 0.9);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.2px;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.mega-menu-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.mega-menu-cta-button:hover::before {
    left: 100%;
}

.mega-menu-cta-button:hover {
    background: rgba(255, 107, 53, 1);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.5);
}

.mega-menu-cta-button svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.mega-menu-cta-button:hover svg {
    transform: translateX(2px);
}

/* Main Content */
.main-content {
    margin-top: 160px;
    min-height: calc(100vh - 160px);
    background-color: #0d1117;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* First Component Styles - Account for header height */
.first-component {
    margin-top: 160px !important;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: calc(100vh - 160px);
    min-height: 500px;
    overflow: hidden;
    background: #0d1117;
}

/* Component wrapper for non-hero first components */
.component-wrapper {
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 1;
}

.hero-column-left,
.hero-column-right {
    position: relative;
    overflow: hidden;
}

/* Enhanced seamless fade between left and right with wider blend zones */
.hero-column-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(13, 17, 23, 0.1) 20%,
        rgba(13, 17, 23, 0.3) 50%,
        rgba(13, 17, 23, 0.5) 80%,
        rgba(13, 17, 23, 0.7) 100%
    );
    z-index: 2;
}

.hero-column-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to left, 
        transparent 0%, 
        rgba(13, 17, 23, 0.1) 20%,
        rgba(13, 17, 23, 0.3) 50%,
        rgba(13, 17, 23, 0.5) 80%,
        rgba(13, 17, 23, 0.7) 100%
    );
    z-index: 2;
}

/* Additional center blend overlay for seamless transition */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(13, 17, 23, 0.2) 0%,
        rgba(13, 17, 23, 0.1) 40%,
        transparent 70%
    );
    z-index: 3;
}

.fabric-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    filter: brightness(0.7) contrast(1.2) saturate(0.8);
    opacity: 0.9;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    filter: brightness(0.6) contrast(1.3) saturate(0.9);
}

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

/* Dark glass overlay with enhanced blur */
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    width: 520px;
    max-width: 42%;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 10;
    opacity: 0;
    transform: translateY(-50%) translateX(-30px);
    animation: floatIn 1.2s ease-out 0.8s forwards;
}

.hero-content {
    text-align: left;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 140, 66, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-family: 'Times New Roman', Times, 'Georgia', 'Playfair Display', serif;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3em;
}

.hero-title-token {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ff5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.hero-title-token.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-title-token:hover {
    transform: translateY(-2px) scale(1.05);
    text-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.hero-description {
    font-size: 1rem;
    color: rgba(240, 246, 252, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

.hero-button:active {
    transform: translateY(0);
}

/* Enhanced animations */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scale(1);
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-overlay {
        left: 10%;
        width: 480px;
        max-width: 45%;
        padding: 50px 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 1024px) {
    .hero-overlay {
        left: 8%;
        width: 450px;
        max-width: 48%;
        padding: 45px 35px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .first-component {
        margin-top: 160px !important;
    }
    
    .hero-section {
        height: calc(100vh - 160px);
        min-height: 400px;
    }
    
    .hero-background {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    
    /* Hide fabric image on mobile */
    .hero-column-left {
        display: none;
    }
    
    /* Make carousel take full height */
    .hero-column-right {
        grid-row: 1;
    }
    
    .hero-column-left::after,
    .hero-column-right::before,
    .hero-background::after {
        display: none;
    }
    
    .hero-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 85%;
        max-width: none;
        margin: 60px auto;
        text-align: center;
        animation: fadeInUp 1s ease-out 0.5s forwards;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .first-component {
        margin-top: 160px !important;
    }
    
    .hero-section {
        min-height: 350px;
    }
    
    /* Hide fabric image on mobile */
    .hero-column-left {
        display: none;
    }
    
    /* Make carousel take full height */
    .hero-column-right {
        grid-row: 1;
    }
    
    .hero-overlay {
        padding: 40px 30px;
        margin: 40px auto;
        width: 90%;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: rgba(13, 17, 23, 0.3);
    border-radius: 6px;
    margin: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(125, 133, 144, 0.4);
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: content-box;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(125, 133, 144, 0.6);
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:active {
    background: rgba(255, 107, 53, 0.7);
    background-clip: content-box;
}

/* For Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(125, 133, 144, 0.4) rgba(13, 17, 23, 0.3);
    scroll-behavior: smooth;
}

/* Section Separator */
.section-separator {
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%
    );
    margin: 0;
}

/* New Arrivals Section */
.new-arrivals-section {
    background: #0d1117;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.new-arrivals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 30%,
        transparent 70%
    );
    z-index: 1;
}

.new-arrivals-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.02) 0%, transparent 35%),
        radial-gradient(circle at 40% 80%, rgba(255, 87, 34, 0.025) 0%, transparent 45%);
    animation: fogDrift 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes fogDrift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-2%, -1%) rotate(0.5deg);
    }
    66% {
        transform: translate(1%, -2%) rotate(-0.3deg);
    }
}

.new-arrivals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #f0f6fc;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #8b949e;
    margin: 0;
    font-weight: 400;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
    position: relative;
    z-index: 3;
}

.product-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    width: 100%;
    max-width: 280px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    position: relative;
    padding: 16px;
    opacity: 0.7;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.2) 0%, 
        rgba(255, 140, 66, 0.1) 25%,
        transparent 50%,
        rgba(255, 87, 34, 0.1) 75%,
        rgba(255, 107, 53, 0.2) 100%
    );
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    filter: blur(12px);
}

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

.product-card:hover {
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.9) 0%, rgba(33, 38, 45, 0.8) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 1;
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: transparent;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.product-card:hover .product-image::before {
    background: transparent;
}

/* Hover overlay - removed dark overlay */
.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
    pointer-events: none;
    border-radius: 12px;
}

.product-card:hover .product-image::after {
    opacity: 0;
}

/* Product action button - moved above dots */
.product-action {
    position: absolute;
    bottom: 33px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 140, 66, 0.8) 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 5;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.3px;
    pointer-events: auto;
}

.product-card:hover .product-action {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-action:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, rgba(255, 107, 53, 1) 0%, rgba(255, 140, 66, 0.9) 100%);
}

/* Remove blue underline from all product links */
.product-action,
.arrivals-thin-product-link,
.light-action {
    text-decoration: none !important;
    color: inherit;
}

.product-action:hover,
.arrivals-thin-product-link:hover,
.light-action:hover {
    text-decoration: none !important;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1) saturate(1);
    position: relative;
    z-index: 0;
    border-radius: 12px;
}

.product-card:hover .product-image img {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1) saturate(1);
}

/* Image indicator dots - moved to bottom */
.product-image-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 4;
    pointer-events: auto;
}

.product-card:hover .product-image-dots {
    opacity: 1;
}

.image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.image-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.image-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.product-info {
    padding: 16px 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.4s ease;
}

.product-colors {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    order: 1;
}

.colors-count {
    font-size: 0.75rem;
    color: rgba(139, 148, 158, 0.5);
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.product-card:hover .colors-count {
    color: rgba(139, 148, 158, 0.8);
}

.colors-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: none;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.color-dot::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: inherit;
    opacity: 0;
    filter: blur(6px);
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 50%;
}

.color-dot:hover::before {
    opacity: 0.4;
}

.color-dot:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.product-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(240, 246, 252, 0.6);
    margin: 0;
    line-height: 1.3;
    transition: all 0.4s ease;
    order: 2;
}

.product-card:hover .product-name {
    color: rgba(240, 246, 252, 1);
    font-weight: 600;
}

.product-category {
    font-size: 0.85rem;
    color: rgba(139, 148, 158, 0.4);
    margin: 0;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s ease;
    order: 3;
}

.product-card:hover .product-category {
    color: rgba(139, 148, 158, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .new-arrivals-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-card {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .new-arrivals-container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-image {
        height: 250px;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    color: #f0f6fc;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 107, 53, 0.02) 0%,
        rgba(255, 140, 66, 0.01) 30%,
        transparent 70%
    );
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f0f6fc;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: 'Times New Roman', Times, 'Georgia', 'Playfair Display', serif;
}

.footer-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(240, 246, 252, 0.7);
    margin-bottom: 0;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f0f6fc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

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

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

.footer-column ul li a {
    color: #8b949e;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    position: relative;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f0f6fc;
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(48, 54, 61, 0.3);
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0f6fc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(48, 54, 61, 0.3);
    border-radius: 50%;
    color: #8b949e;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(48, 54, 61, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    color: #f0f6fc;
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #8b949e;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

.footer-legal-links a:hover {
    color: #f0f6fc;
}

/* Mobile Footer Layout */
.mobile-footer {
    display: none;
}

.mobile-footer-section {
    margin-bottom: 40px;
}

.mobile-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-footer-logo {
    display: flex;
    align-items: center;
}

.mobile-footer-logo .logo-image {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
}

.mobile-footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.mobile-footer-company {
    margin-bottom: 40px;
}

.mobile-footer-company-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(240, 246, 252, 0.8);
    margin: 0;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    text-align: justify;
}

.mobile-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mobile-footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f0f6fc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

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

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

.mobile-footer-column ul li a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    position: relative;
}

.mobile-footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transition: width 0.3s ease;
}

.mobile-footer-column ul li a:hover {
    color: #f0f6fc;
}

.mobile-footer-column ul li a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-section {
        padding: 50px 0 0;
        margin-top: 0;
    }

    .footer-main {
        gap: 40px;
    }

    .footer-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0;
        margin-top: 0;
    }

    /* Hide desktop footer on mobile */
    .desktop-footer {
        display: none;
    }

    /* Show mobile footer on mobile */
    .mobile-footer {
        display: block;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-title {
        font-size: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-title {
        font-size: 1.8rem;
    }

    .footer-subtitle {
        font-size: 1rem;
    }

    .footer-social {
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .mobile-footer-top {
        gap: 15px;
    }

    .mobile-footer-social {
        gap: 10px;
    }

    .mobile-footer-company-text {
        font-size: 0.9rem;
    }

    .mobile-footer-links {
        gap: 20px;
    }

    .mobile-footer-links-column {
        gap: 20px;
    }

    .mobile-footer-column h4 {
        font-size: 1rem;
    }

    .mobile-footer-column ul li a {
        font-size: 0.9rem;
    }
}

/* Hide navigation buttons on mobile */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .header-content {
        justify-content: center;
    }
    
    .mega-menu-overlay {
        display: none;
    }
}

