* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-500: #ec4899;
    --purple-500: #a855f7;
    --blue-500: #3b82f6;
    --cyan-600: #0891b2;
    --orange-500: #f97316;
    --red-600: #dc2626;
    --green-500: #22c55e;
    --teal-600: #0d9488;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.bebas {
    font-family: 'Bebas Neue', sans-serif;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 100%;
    padding: 0 1rem;
    overflow-x: hidden;
}


/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    padding: 1.5rem 0;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--zinc-800);
    padding: 1rem 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--pink-500), var(--purple-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--pink-500);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: flex;
}

.mobile-nav {
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--zinc-800);
    animation: slideDown 0.3s ease;
}

.mobile-nav-link {
    display: block;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--pink-500);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.5), transparent);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.slide-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    background: linear-gradient(to right, #fff, #fbb6d4, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
    animation: pulse 2s ease-in-out infinite;
}

.slide-subtitle {
    font-size: clamp(1.25rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #d1d5db;
}

.slide-line {
    margin-top: 3rem;
    width: 8rem;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--pink-500), transparent);
}

.corner-accent {
    position: absolute;
    width: 5rem;
    height: 5rem;
    opacity: 0.5;
}

.corner-accent.top-left {
    top: 2rem;
    left: 2rem;
    border-left: 4px solid var(--pink-500);
    border-top: 4px solid var(--pink-500);
}

.corner-accent.bottom-right {
    bottom: 2rem;
    right: 2rem;
    border-right: 4px solid var(--purple-500);
    border-bottom: 4px solid var(--purple-500);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-btn.prev {
    left: 2rem;
}

.carousel-btn.next {
    right: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9ca3af;
}

.scroll-line {
    width: 2px;
    height: 3rem;
    background: linear-gradient(to bottom, #9ca3af, transparent);
}

/* Brand Showcase */
.brand-showcase {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #000, var(--zinc-900), #000);
    overflow: hidden;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.75rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--pink-500), var(--purple-500), var(--blue-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.title-underline {
    width: 6rem;
    height: 4px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, var(--pink-500), transparent);
}

.brand-scroll-wrapper {
    margin-bottom: 2rem;
    overflow: hidden;
}

.brand-scroll {
    display: flex;
    white-space: nowrap;
}

.brand-scroll.scroll-left {
    animation: scrollLeft 30s linear infinite;
}

.brand-scroll.scroll-right {
    animation: scrollRight 30s linear infinite;
}

.brand-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    margin: 0 2rem;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
    cursor: pointer;
}

.brand-item:hover {
    color: var(--pink-500);
    -webkit-text-stroke: 2px var(--pink-500);
}

/* Featured Products */
.featured-products {
    padding: 6rem 1rem;
    background: #000;
    position: relative;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.gradient-orb.orb-1 {
    top: 0;
    left: 25%;
    background: var(--purple-500);
}

.gradient-orb.orb-2 {
    bottom: 0;
    right: 25%;
    background: var(--pink-500);
    animation-delay: 3s;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-tag {
    color: var(--pink-500);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
}

.section-title-large {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.75rem, 8vw, 6rem);
    font-weight: 700;
    margin: 1rem 0 1.5rem;
}

.section-description {
    color: #9ca3af;
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.product-card {
    cursor: pointer;
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    transition: border 0.5s ease;
}

.product-card:hover .product-image-wrapper {
    border-color: #3f3f46;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: all 0.7s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
    filter: brightness(0.75);
}

.product-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card[data-color="from-pink-500 to-purple-600"]:hover .product-gradient {
    background: linear-gradient(to top, var(--pink-500), var(--purple-500));
    opacity: 0.4;
}

.product-card[data-color="from-blue-500 to-cyan-600"]:hover .product-gradient {
    background: linear-gradient(to top, var(--blue-500), var(--cyan-600));
    opacity: 0.4;
}

.product-card[data-color="from-orange-500 to-red-600"]:hover .product-gradient {
    background: linear-gradient(to top, var(--orange-500), var(--red-600));
    opacity: 0.4;
}

.product-card[data-color="from-green-500 to-teal-600"]:hover .product-gradient {
    background: linear-gradient(to top, var(--green-500), var(--teal-600));
    opacity: 0.4;
}

.product-content {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.5s ease;
}

.product-card:hover .product-content {
    transform: translateY(0);
    opacity: 1;
}

.product-line {
    width: 3rem;
    height: 4px;
    background: white;
    margin-bottom: 1rem;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #d1d5db;
    font-weight: 600;
}

.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.product-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: scale(0.75);
    transition: all 0.5s ease;
}

.product-card:hover .product-corner {
    opacity: 1;
    transform: scale(1);
}

/* Culture Section */
.culture-section {
    position: relative;
    padding: 8rem 1rem;
    overflow: hidden;
}

.culture-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--zinc-900), #000, var(--zinc-900));
}

.culture-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.culture-content {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 4rem;
    align-items: center;
}

.culture-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.culture-badge span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: #f9a8d4;
}

.culture-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.75rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1;
}

.gradient-text {
    background: linear-gradient(to right, var(--pink-500), var(--purple-500), var(--blue-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.culture-description {
    color: #9ca3af;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.culture-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number.pink { color: var(--pink-500); }
.stat-number.purple { color: var(--purple-500); }
.stat-number.blue { color: var(--blue-500); }

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
}

.culture-cards {
    position: relative;
    height: 600px;
}

.culture-card {
    position: absolute;
    width: 18rem;
    height: 24rem;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0.8;
    filter: blur(10px);
}

.card-glow.pink-glow {
    background: linear-gradient(to bottom right, var(--pink-500), var(--purple-500));
}

.card-glow.blue-glow {
    background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-600));
}

.card-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--zinc-900);
    border: 1px solid rgba(236, 72, 153, 0.5);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 
        0 0 10px rgba(255, 0, 128, 0.5),
        0 0 20px rgba(255, 0, 128, 0.3),
        0 0 30px rgba(255, 0, 128, 0.2);
}

.card-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.culture-card.card-1 {
    top: 0;
    left: 0;
    transform: rotate(6deg);
}

.culture-card.card-2 {
    top: 3rem;
    right: 0;
    transform: rotate(-6deg);
    border-color: rgba(59, 130, 246, 0.5);
}

.floating-orb {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 8rem;
    background: rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse 2s ease-in-out infinite;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid var(--zinc-900);
    padding: 5rem 1rem 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--pink-500), var(--purple-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    border-color: currentColor;
}

.social-icon:nth-child(1):hover { color: var(--pink-500); }
.social-icon:nth-child(2):hover { color: #60a5fa; }
.social-icon:nth-child(3):hover { color: #2563eb; }
.social-icon:nth-child(4):hover { color: #dc2626; }

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--pink-500);
}

.footer-newsletter {
    border-top: 1px solid var(--zinc-900);
    padding-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.newsletter-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.newsletter-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 48rem;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 9999px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-input:focus {
    border-color: var(--pink-500);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--pink-500), var(--purple-500));
    border: none;
    border-radius: 9999px;
    color: white;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.5);
}

.footer-bottom {
    border-top: 1px solid var(--zinc-900);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #9ca3af;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .culture-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
