/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: all .25s
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem
}

.logo-text {
    font-family: var(--pm-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #000, #616161);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--pm-gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem
}

.nav-link {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .5rem .75rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--pm-gray-700);
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--pm-secondary);
    transition: all .25s;
    transform: translateX(-50%)
}

.nav-link:hover,
.nav-link.active {
    color: var(--pm-black)
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--pm-shadow-xl);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all .25s
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border-radius: 8px;
    font-size: .875rem;
    color: var(--pm-gray-700)
}

.dropdown-item:hover {
    background: var(--pm-gray-50);
    color: var(--pm-secondary)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.header-search {
    position: relative
}

.search-input {
    width: 200px;
    padding: .5rem 1rem .5rem 40px;
    background: var(--pm-gray-100);
    border: none;
    border-radius: 9999px;
    font-size: .875rem;
    transition: all .25s
}

.search-input:focus {
    outline: none;
    width: 280px;
    background: #fff;
    box-shadow: 0 0 0 2px var(--pm-secondary)
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pm-gray-500)
}

.header-icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: var(--pm-gray-700);
    transition: all .15s
}

.header-icon-btn:hover {
    background: var(--pm-gray-100);
    color: var(--pm-black)
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pm-secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 9999px
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #000;
    transition: all .25s
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    padding-top: 72px
}

.hero-slider {
    position: absolute;
    inset: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s
}

.hero-slide.active {
    opacity: 1
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3), rgba(0, 0, 0, .5))
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, .2);
    animation: fadeInUp .8s ease .2s both
}

.hero-badge-icon {
    width: 8px;
    height: 8px;
    background: var(--pm-secondary);
    border-radius: 9999px;
    animation: pulse 2s infinite
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp .8s ease .4s both
}

.hero-title span {
    background: var(--pm-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .8);
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp .8s ease .6s both
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp .8s ease .8s both
}

.hero-nav {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .75rem;
    z-index: 10
}

.hero-nav-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, .3);
    border-radius: 9999px;
    cursor: pointer;
    transition: all .25s
}

.hero-nav-dot.active {
    background: #fff;
    width: 60px
}

.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 10
}

.hero-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    color: #fff;
    transition: all .25s;
    border: 1px solid rgba(255, 255, 255, .2)
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, .2);
    transform: scale(1.1)
}