@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-h: 24;
    --primary-s: 100%;
    --primary-l: 50%;
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --primary-light: hsl(var(--primary-h), var(--primary-s), 45%);
    --primary-soft: hsla(var(--primary-h), var(--primary-s), 50%, 0.10);
    --accent: #F59E0B;
    --bg-base: #F8F9FB;           /* Clean light gray page background */
    --bg-alt:  #FFFFFF;           /* Pure white sections */
    --white:   #FFFFFF;           /* Cards */
    --text-main:  #111827;        /* Near-black text */
    --text-muted: #6B7280;        /* Medium gray */
    --border-color: rgba(0, 0, 0, 0.08);
    --radius-full: 100px;
    --radius-xl: 40px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Premium Navigation */
nav.premium-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,0.07);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

/* High-End Hero Section */
.premium-hero {
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -3px;
}

.hero-title span {
    color: var(--primary-light);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 48px;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.main-img {
    width: 85%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    width: 280px;
    backdrop-filter: blur(20px);
}

/* Glassmorphism Product Cards */
.products-section {
    padding: 120px 5%;
}

.product-card-premium {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.product-card-premium:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(255, 107, 0, 0.12);
}

.product-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card-premium:hover .product-img-wrapper img {
    transform: scale(1.1);
}

/* Scroll Progress Bar */
#progress-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 4px;
    z-index: 2000;
}

#progress-bar {
    height: 100%;
    background: var(--primary-light);
    width: 0%;
}

/* Custom Cursor (The 'Pro' touch) */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s;
}

/* Responsive */
/* Main Slider Styles */
.main-slider {
    margin: 120px auto 0;
    width: 90%;
    max-width: 1400px;
    height: 650px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-content {
    width: 100%;
    height: 100%;
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: center;
    padding: 0 80px;
    color: white;
}

.slide-text {
    max-width: 600px;
}

.slide-text h1 {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.slide-text h1 span {
    color: var(--primary-light);
}

.slide-text p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* Customize Swiper Buttons */
.swiper-button-next, .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white !important;
    transition: var(--transition-smooth);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary);
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-light) !important;
    opacity: 1;
    width: 24px !important;
    border-radius: 10px !important;
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.product-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.add-to-cart {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.add-to-cart:hover {
    background: var(--primary-soft);
    color: var(--primary);
    border-color: var(--primary);
}

/* Footer Links Hover */
footer a:hover {
    color: var(--primary-light) !important;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .slide-text h1 { font-size: 3.5rem; }
    .hero-title { font-size: 4rem; }
    .hero-container { gap: 40px; }
}

@media (max-width: 1024px) {
    nav.premium-nav { padding: 10px 24px; width: 95%; }
    .nav-links { gap: 20px; }
    
    .main-slider { height: 500px; margin-top: 100px; }
    .slide-text h1 { font-size: 3rem; }
    .slide-overlay { padding: 0 40px; }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; display: flex; }
    .hero-image-stack { height: 450px; }
    .main-img { width: 100%; }
    
    .products-section { padding: 80px 5%; }
}

@media (max-width: 768px) {
    nav.premium-nav { top: 12px; }
    .nav-links { display: none; } 
    .cursor, .cursor-follower { display: none; }
    
    .main-slider { height: 400px; width: 100%; border-radius: 0; margin-top: 80px; }
    .slide-text h1 { font-size: 2.2rem; margin-bottom: 16px; }
    .slide-text p { font-size: 1rem; margin-bottom: 24px; }
    .slide-overlay { padding: 0 20px; text-align: center; justify-content: center; }
    
    .hero-title { font-size: 2.8rem; letter-spacing: -1px; }
    .hero-image-stack { height: 350px; }
    .floating-card { display: none; }
    
    footer { padding: 60px 5% 40px; }
    footer > div { grid-template-columns: 1fr !important; gap: 40px !important; text-align: center; }
    footer div div { align-items: center; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; gap: 16px; }
    .hero-actions button { margin-left: 0 !important; width: 100%; }
}
