/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ec4899;
    --primary-purple: #8b5cf6;
    --primary-blue: #3b82f6;
    --dark-blue: #1e3a8a;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-pink);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 30px;
}

.top-bar-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.top-bar-link:hover {
    opacity: 0.9;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

.logo-subtitle {
    font-size: 13px;
    color: var(--text-gray);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-pink);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-pink);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    overflow: hidden;
}

.slider-container {
    position: relative;
    /*height: 100vh;*/
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide-products {
    flex: 0 0 45%;
}

.slide-products img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.slide-text {
    flex: 0 0 50%;
    color: var(--white);
}

.slide-text h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-style: italic;
    line-height: 1.1;
}

.slide-text p {
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    opacity: 0.95;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #fbbf24;
    width: 30px;
    border-radius: 6px;
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
}

.welcome-card {
    background: var(--primary-pink);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

.welcome-content h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.welcome-content p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.7;
}

.btn {
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-white {
    background: var(--white);
    color: #059669;
    font-size: 18px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-white-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    font-size: 18px;
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--primary-purple);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-header {
    position: relative;
    /*padding: 30px;*/
    /*height: 250px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-header img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
}

.product-title-overlay h3 {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-title-overlay p {
    color: var(--white);
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

.product-body {
    padding: 30px;
}

.product-body h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-body p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.product-link:hover {
    gap: 12px;
    color: var(--primary-pink);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.video-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background: #000;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.video-time {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.video-progress {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.video-progress-bar {
    height: 100%;
    background: var(--white);
    width: 25%;
    transition: width 0.1s;
}

/* Premium Products */
.premium-products {
    padding: 80px 0;
}

.premium-products h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.premium-products .subtitle {
    text-align: center;
    margin-bottom: 50px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-card {
    border-radius: 20px;
    overflow: hidden;
    /*padding: 40px 30px;*/
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.premium-card:hover {
    transform: translateY(-10px);
}

.premium-header h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.premium-header p {
    font-size: 16px;
    opacity: 0.9;
    font-style: italic;
}

.premium-image {
    /*margin: 30px 0;*/
}

.premium-image img {
    width: 100%;
    /*max-width: 280px;*/
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.premium-footer p {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.blog-link:hover {
    gap: 10px;
    color: var(--primary-pink);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
}

.testimonial-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.testimonial-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-content {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.cta-content h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #f3f4f6;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    background: var(--primary-pink);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-cards,
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .slide-text h1 {
        font-size: 48px;
    }

    .slide-text p {
        font-size: 24px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .product-cards,
    .premium-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .welcome-card {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }
}