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

:root {
    --primary-color: #FF6A00;
    --primary-dark: #E55A00;
    --black: #000000;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --border-radius: 12px;
    --border-radius-small: 8px;
    --border-radius-large: 20px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-800);
    margin: 0;
    padding: 0;
    padding-top: 40px;
    overflow-x: hidden;
}

/* Splash Loader */
.splash-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    color: var(--white);
    animation: splashFadeIn 0.8s ease-out;
}

.logo-container {
    position: relative;
}

.crown-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    animation: crownGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.3));
}

.crown-icon svg {
    width: 100%;
    height: 100%;
}

.splash-logo {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, var(--white) 0%, var(--primary-color) 50%, var(--white) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes crownGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.3));
        transform: scale(1);
    }
    to {
        filter: drop-shadow(0 0 30px rgba(255, 106, 0, 0.6));
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes dotPulse {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media (max-width: 480px) {
    .splash-logo {
        font-size: 2.5rem;
    }
    
    .crown-icon {
        width: 50px;
        height: 50px;
    }
}

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

/* Utility Classes */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    .desktop-nav {
        display: none;
    }
    
    /* Hero section responsive styling */
    .hero {
        height: 80vh;
    }
    
    .hero-image {
        object-position: center 20%;
    }
}

/* Top Bar */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 40px;
    display: flex;
    align-items: center;
}

.top-bar-slider {
    display: flex;
    animation: slideTopBar 15s infinite;
}

.top-bar-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.top-bar-item i {
    color: var(--primary-color);
}

@keyframes slideTopBar {
    0%, 30% { transform: translateX(0); }
    33%, 63% { transform: translateX(-100%); }
    66%, 96% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    z-index: 1000;
    position: sticky;
    top: 40px;
}

.header.sticky {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn, .cart-btn, .menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius-small);
    transition: var(--transition-fast);
    position: relative;
}

.search-btn:hover, .cart-btn:hover, .menu-btn:hover {
    background: var(--gray-100);
}

/* Mobile Menu Button */
.menu-btn {
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    display: none;
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-btn span:nth-child(1) {
    margin-bottom: 4px;
}

.menu-btn span:nth-child(2) {
    margin-bottom: 4px;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 40px;
    right: -100%;
    width: 300px;
    height: calc(100% - 40px);
    background: var(--white);
    z-index: 999;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-header h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-600);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius-small);
    transition: var(--transition-fast);
}

.mobile-nav-close:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.mobile-nav-links {
    flex: 1;
    padding: 32px 0;
}

.mobile-nav-link {
    display: block;
    padding: 16px 24px;
    color: var(--gray-800);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition-fast);
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: var(--gray-50);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.mobile-nav-footer {
    padding: 24px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.mobile-nav-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.mobile-nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: var(--border-radius-medium);
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-small);
}

.mobile-nav-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn {
    flex-direction: column;
    gap: 3px;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition-fast);
}

.menu-btn:hover span {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    z-index: -2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    z-index: -1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.5) 0%, rgba(255,106,0,0.3) 100%);
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Typewriter Animation */
.typewriter-container {
    display: inline-block;
    position: relative;
}

.typewriter-text {
    display: inline;
}

.typewriter-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFB366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-cursor {
    display: inline-block;
    background: var(--white);
    width: 3px;
    height: 1.2em;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: baseline;
}

.typewriter-cursor.hidden {
    opacity: 0;
    animation: none;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFB366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--gray-900);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 24px;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

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

/* Why Section Styling */
.why-section {
    padding: 80px 0;
    background-color: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text {
    z-index: 2;
}

.why-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-700);
}

.why-list {
    list-style: none;
    margin-bottom: 40px;
}

.why-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.why-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

.why-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image {
    width: 100%;
    height: auto;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.why-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, rgba(255, 179, 102, 0.05) 100%);
    border-radius: 24px;
    z-index: -1;
}

.why-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(255, 179, 102, 0.8) 100%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: -1;
    animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Media queries for Why Section */
@media (max-width: 992px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-visual {
        order: -1;
    }
    
    .why-image {
        max-width: 460px;
        transform: perspective(1000px) rotateY(0deg);
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
    }
    
    .why-image {
        max-width: 400px;
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
    }
    
    .why-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 40px 0;
    }
    
    .why-image {
        max-width: 340px;
        border-radius: 20px;
    }
    
    .why-intro {
        font-size: 1rem;
    }
    
    .why-list li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
}

/* USP Bar */
.usp-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

.usp-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
}

.usp-item:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.usp-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #FFB366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.usp-text h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.usp-text p {
    color: var(--gray-600);
    font-size: 14px;
}

@media (max-width: 768px) {
    .usp-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 10px;
    }
    
    .usp-item {
        min-width: 200px;
        scroll-snap-align: start;
    }
    
    .usp-slider::-webkit-scrollbar {
        display: none;
    }
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-badge.bestseller {
    background: var(--primary-color);
    color: var(--white);
}

.product-badge.new {
    background: var(--gray-900);
    color: var(--white);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    position: relative;
}

.product-img-placeholder::before {
    content: '🌟';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
}

.product-quick-add {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    opacity: 0;
}

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

.product-quick-add:hover {
    background: var(--primary-dark);
}

.product-info {
    padding: 24px;
}

.product-brand {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #FFD700;
}

.rating-text {
    font-size: 14px;
    color: var(--gray-500);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.original-price {
    font-size: 1rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

@media (max-width: 768px) {
    .products-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 10px;
    }
    
    .product-card {
        min-width: 250px;
        scroll-snap-align: start;
    }
    
    .products-carousel::-webkit-scrollbar {
        display: none;
    }
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.why-list {
    list-style: none;
    margin-bottom: 40px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--gray-700);
}

.why-list i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.why-visual {
    position: relative;
}

.why-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFB366 100%);
    border-radius: var(--border-radius-large);
    position: relative;
    overflow: hidden;
}

.why-image-placeholder::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .why-visual {
        order: -1;
    }
    
    .why-image-placeholder {
        height: 250px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info strong {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
}

.author-info span {
    color: var(--gray-500);
    font-size: 14px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .testimonials-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 10px;
    }
    
    .testimonial-card {
        min-width: 300px;
        scroll-snap-align: start;
    }
    
    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }
    
    .trust-badges {
        gap: 20px;
    }
}

/* TikTok Section */
.tiktok-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.tiktok-section .section-title {
    color: var(--white);
}

.tiktok-section .section-subtitle {
    color: var(--gray-300);
}

.tiktok-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tiktok-video {
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.tiktok-video:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ff0050, #ff4081);
    border-radius: var(--border-radius-large);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.video-placeholder .fab.fa-tiktok {
    font-size: 3rem;
    color: var(--white);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.tiktok-video:hover .play-button {
    background: var(--white);
    transform: scale(1.1);
}

.video-info h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.video-info span {
    color: var(--gray-400);
    font-size: 14px;
}

.tiktok-cta {
    text-align: center;
}

.tiktok-cta .btn {
    gap: 12px;
}

.tiktok-cta .fab.fa-tiktok {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .tiktok-videos {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 10px;
    }
    
    .tiktok-video {
        min-width: 180px;
        scroll-snap-align: start;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .tiktok-videos::-webkit-scrollbar {
        display: none;
    }
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFB366 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
}

.offer-content {
    position: relative;
    z-index: 1;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.offer-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .offer-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 15px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: var(--white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text {
    text-align: left;
}

.newsletter-form {
    background: var(--gray-100);
    padding: 40px;
    border-radius: var(--border-radius-large);
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.form-group input {
    flex: 1;
    padding: 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.form-group .btn {
    white-space: nowrap;
    min-width: 140px;
}

.form-disclaimer {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .newsletter-text {
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group .btn {
        width: 100%;
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-payment span {
    color: var(--gray-400);
    font-weight: 500;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-icons i {
    font-size: 1.5rem;
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.payment-icons i:hover {
    color: var(--white);
}

.ideal-logo {
    background: #cc0066;
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal p {
    color: var(--gray-400);
    margin: 0;
}

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

.legal-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payment {
        justify-content: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
}

.sticky-cta-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

.sticky-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.sticky-cta-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive - Enhanced Mobile-First Design */

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .mobile-nav {
        width: 100%;
        max-width: 320px;
        top: 36px;
        height: calc(100% - 36px);
    }
    
    .mobile-nav-overlay {
        top: 36px;
        height: calc(100% - 36px);
    }
    
    /* Fix announcement bar on mobile */
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        height: 36px;
        padding: 6px 0;
    }
    
    .top-bar-slider {
        animation: slide 8s infinite;
    }
    
    @keyframes slide {
        0%, 33% { transform: translateX(0); }
        33.33%, 66% { transform: translateX(-100%); }
        66.66%, 100% { transform: translateX(-200%); }
    }
    
    .top-bar-item {
        min-width: 100%;
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .top-bar-item i {
        margin-right: 8px;
    }
    
    /* Header adjustments for mobile */
    .header {
        top: 36px;
        position: sticky;
    }
    
    .header.sticky {
        top: 36px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    body {
        padding-top: 36px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    /* Typewriter responsive adjustments */
    .typewriter-cursor {
        width: 2px;
        height: 1em;
        margin-left: 1px;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .search-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 100%;
        top: 32px;
        height: calc(100% - 32px);
    }
    
    .mobile-nav-overlay {
        top: 32px;
        height: calc(100% - 32px);
    }
    
    .container {
        padding: 0 16px;
        max-width: calc(100% - 32px);
    }
    
    .top-bar {
        height: 32px;
        padding: 4px 0;
    }
    
    .top-bar-item {
        font-size: 12px;
    }
    
    .header {
        top: 32px;
    }
    
    .header.sticky {
        top: 32px;
    }
    
    body {
        padding-top: 32px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
}

/* Base mobile styles (320px and up) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        max-width: calc(100% - 32px);
    }
    
    /* Enhanced touch targets - minimum 44px */
    .btn, .nav-links a, .cart-btn, .mobile-sticky-cta {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    /* Safe zones for mobile devices */
    .top-bar, .header, .mobile-sticky-cta {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    
    .mobile-sticky-cta {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
    
    /* Typography scaling for mobile */
    .hero-content h1 {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        z-index: 1;
        position: relative;
    }
    
    .hero-content {
        z-index: 1;
        position: relative;
        padding: 0 16px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    /* Enhanced mobile navigation */
    .header {
        padding: 0.75rem 0;
    }
    
    .nav-links {
        gap: 1.5rem;
        font-size: 0.875rem;
        font-weight: 500;
    }
    
    .nav-links a {
        padding: 8px 12px;
        border-radius: 6px;
        transition: background-color 0.2s ease;
    }
    
    .nav-links a:hover {
        background-color: var(--gray-100);
    }
    
    /* Mobile-optimized buttons */
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        font-weight: 600;
        padding: 16px 24px;
        border-radius: 12px;
    }
    
    /* Product cards mobile optimization */
    .product-card {
        min-width: 280px;
        padding: 16px;
    }
    
    .product-card .btn {
        width: 100%;
        font-size: 0.875rem;
        padding: 12px 16px;
    }
    
    /* Testimonial cards */
    .testimonial-card {
        min-width: 300px;
        padding: 20px;
    }
    
    /* Video cards */
    .video-card {
        min-width: 200px;
        height: 280px;
    }
    
    /* Enhanced mobile forms */
    .email-form {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .email-form input[type="email"] {
        width: 100%;
        padding: 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 12px;
    }
    
    .email-form button {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Mobile sticky elements */
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    /* Footer mobile optimization */
    .footer {
        padding: 2.5rem 0 5rem; /* Extra bottom padding for sticky CTA */
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icons a {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
}

/* Tablet styles (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .btn {
        min-width: 200px;
    }
    
    .product-card {
        min-width: 320px;
    }
    
    .testimonial-card {
        min-width: 400px;
    }
    
    .video-card {
        min-width: 240px;
        height: 320px;
    }
}

/* Large tablet and small desktop (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .mobile-sticky-cta {
        display: none;
    }
    
    .footer {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        gap: 16px;
    }
}

/* Performance Optimizations */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Smooth animations with reduced motion respect */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .splash-loader .crown-icon,
    .splash-logo,
    .loading-dots span {
        animation: none !important;
    }
}

/* Enhanced Focus States for Accessibility */
.btn:focus-visible,
.nav-links a:focus-visible,
input:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: var(--black);
    }
    
    .btn-primary {
        border: 2px solid var(--primary-color);
    }
    
    .btn-secondary {
        border: 2px solid var(--gray-900);
    }
}

/* Print styles */
@media print {
    .splash-loader,
    .mobile-sticky-cta,
    .video-section,
    .countdown-section {
        display: none !important;
    }
    
    .hero {
        background: none;
        color: var(--black);
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Additional Mobile-First Enhancements */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .product-card {
        min-width: 260px;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    .video-card {
        min-width: 180px;
        height: 260px;
    }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}
