@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Nunito:wght@300;400;500;600;700;800;900&family=Fredoka:wght@300;400;500;600;700&display=swap');

/* Morning Breeze Font */
@font-face {
    font-family: 'Morning Breeze';
    src: url('fonts/MorningBreeze.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Morning Breeze';
    src: url('fonts/MorningBreeze-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Morning Breeze';
    src: url('fonts/MorningBreeze-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Morning Breeze';
    src: url('fonts/MorningBreeze-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll on html */
}

body {
    font-family: 'Morning Breeze', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fefbf6;
    overflow-x: hidden;
    color: #2d3748;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

/* Use Morning Breeze Bold for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Morning Breeze', 'Fredoka', 'Nunito', sans-serif;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* WAVE SECTION DIVIDERS - EXACT MATCH WITH GRADIENTS */
.wave-curve {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-curve.bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.wave-curve svg {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 72px;
    margin-bottom: -1px;
}

/* Hero section - purple-blue gradient (darker to lighter) */
.hero {
    position: relative;
    background: linear-gradient(90deg, #5e72e4 0%, #825ee4 50%, #a47dea 100%);
    padding: 100px 0 150px;
    color: white;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero h1 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 .highlight {
    color: #ffd93d;
    text-shadow: 0 4px 20px rgba(255, 217, 61, 0.4);
}

.hero p {
    font-size: 1.17rem;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ffd93d;
    color: #2d3748;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.08rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 217, 61, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-image {
    position: relative;
    z-index: 1;
    width: 540px;
    height: auto;
    border-radius: 20px;
}

/* Floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-yarn {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.7;
}

.floating-yarn:nth-child(1) { 
    top: 15%; 
    left: 10%; 
    background-color: rgba(255, 255, 255, 0.2);
}

.floating-yarn:nth-child(2) { 
    top: 25%; 
    right: 15%; 
    background-color: rgba(255, 255, 255, 0.15);
}

.floating-yarn:nth-child(3) { 
    bottom: 35%; 
    left: 20%; 
    background-color: rgba(255, 255, 255, 0.1);
}

/* Features section - light cream background */
.features-section {
    position: relative;
    background: #faf8f5;
    padding: 100px 0 150px;
    margin-top: -2px;
    z-index: 2;
}

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

.section-header h2 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 3.15rem;
    font-weight: 600;
    color: #825ee4;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.17rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(1) {
    border-color: rgba(255, 107, 157, 0.3);
}

.feature-card:nth-child(2) {
    border-color: rgba(78, 205, 196, 0.3);
}

.feature-card:nth-child(3) {
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-card:nth-child(4) {
    border-color: rgba(255, 154, 86, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #ff6b9d, #ffd93d);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #5e72e4, #825ee4);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #ff9a56, #ff6b95);
}

.feature-card h3 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 1.62rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-card:nth-child(1) h3 {
    color: #ff6b9d;
}

.feature-card:nth-child(2) h3 {
    color: #4ecdc4;
}

.feature-card:nth-child(3) h3 {
    color: #825ee4;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Product showcase - hero gradient reversed */
.product-showcase {
    position: relative;
    background: linear-gradient(90deg, #a47dea 0%, #825ee4 50%, #5e72e4 100%);
    padding: 100px 0 150px;
    color: white;
    margin-top: -2px;
    z-index: 1;
}

/* Section header for product showcase */
.product-showcase .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-showcase .section-header h2 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 3.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 2px 10px rgba(255, 255, 255, 0.1);
}

.product-showcase .section-header h2 .highlight {
    color: #ffd93d;
    text-shadow: 0 4px 20px rgba(255, 217, 61, 0.4);
}

.product-showcase .section-header p {
    font-size: 1.2rem;
    opacity: 1;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Products grid - two column layout */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Individual product card */
.product-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Product card image area */
.product-card-image {
    margin-bottom: 10px;
    position: relative;
}

.product-card .product-slider {
    max-width: 400px;
    width: 100%;
    padding: 0 20px 15px 20px;
}

.product-card .slider-container {
    height: 400px;
    width: 100%;
}

/* Main product video styling */
.main-product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.main-product-video:hover {
    transform: scale(1.02);
}

/* Main gallery video styling */
.main-gallery-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* Fallback image styling */
.fallback-image {
    display: none;
}

/* Video loading optimization */
.main-product-video {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f0f0f0"/><text x="50" y="50" text-anchor="middle" dy="0.3em" font-family="Arial" font-size="12" fill="%23999">Loading...</text></svg>');
    background-size: 100px 100px;
    background-position: center;
    background-repeat: no-repeat;
}

.main-product-video[poster] {
    background-image: none;
}

.product-card .slider-dots {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

/* Product card content */
.product-card-content h3 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    color: #ffd93d;
    text-shadow: 0 2px 8px rgba(255, 217, 61, 0.3);
}

.product-card-content p {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.5;
    color: #ffffff;
}

.product-card-content .character-description {
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
}

.product-card-content .product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-card-content .product-features li {
    font-size: 0.8rem;
    margin-bottom: 6px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
}

/* Product price styling */
.product-price {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.product-price .price {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd93d;
    display: block;
    text-shadow: 0 2px 10px rgba(255, 217, 61, 0.3);
}

.product-price .price-note {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 4px;
    display: block;
    color: rgba(255, 255, 255, 0.8);
}

/* General features section in header */
.general-features {
    margin-top: 40px;
    padding: 30px 0;
}

.general-features h3 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffd93d;
    text-shadow: 0 2px 10px rgba(255, 217, 61, 0.5), 0 0 20px rgba(255, 217, 61, 0.3);
    text-align: center;
}

.features-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 25px auto;
}

.feature-item-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item-inline:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-item-inline .feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-inline span:last-child {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.offer-highlight {
    text-align: center;
    font-size: 1.15rem;
    color: #ffd93d;
    text-shadow: 0 2px 10px rgba(255, 217, 61, 0.6), 0 0 20px rgba(255, 217, 61, 0.3);
    margin-bottom: 0;
    font-weight: 700;
    background: rgba(255, 217, 61, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 217, 61, 0.3);
    display: inline-block;
}

/* Hand-drawn Arrow Image Indicator above slider */
.slider-arrow-indicator {
    position: absolute;
    top: -60px; /* Move lower to overlap with product image */
    left: 35%; /* Move more to the left */
    transform: translateX(-50%);
    z-index: 15;
    pointer-events: none;
    animation: arrowFloat 2.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px; /* Even larger container width */
    height: 130px; /* Even larger container height */
    background: none !important; /* Force no background */
    background-color: transparent !important; /* Force transparent */
}

.arrow-image {
    width: 90%; /* Increased to 90% */
    height: auto;
    background: none !important; /* Force no background */
    background-color: transparent !important; /* Force transparent */
    border: none !important; /* Remove any borders */
    outline: none !important; /* Remove any outlines */
    box-shadow: none !important; /* Remove any box shadows */
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2)) 
            drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    transform: rotate(15deg); /* Rotate to point toward slider */
    transition: all 0.3s ease;
}

.arrow-text {
    position: absolute; /* Position over the arrow */
    top: 50%; /* Center vertically on arrow */
    left: 40%; /* Move a bit to the left (was 50%) */
    transform: translate(-50%, -50%) rotate(-8deg); /* Center and rotate */
    font-family: 'Comic Sans MS', cursive, Arial, sans-serif;
    font-size: 10px; /* Smaller text to fit on arrow */
    font-weight: bold;
    color: #000000; /* Black text */
    background: none !important; /* Force no background */
    background-color: transparent !important; /* Force transparent */
    text-shadow: 
        1px 1px 0px #ffffff,
        -1px -1px 0px #ffffff,
        1px -1px 0px #ffffff,
        -1px 1px 0px #ffffff; /* White outline for readability */
    animation: textPulse 2s ease-in-out infinite;
    z-index: 16; /* Above the arrow image */
}

@keyframes arrowFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-50%) translateY(-12px);
        opacity: 1;
    }
}

@keyframes textPulse {
    0%, 100% {
        transform: rotate(-8deg) scale(1);
    }
    50% {
        transform: rotate(-5deg) scale(1.1);
    }
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.product-info h2 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 3.15rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-info h2 .highlight {
    color: #ffffff;
}

.product-info p {
    font-size: 1.08rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin: 32px 0;
}

.product-features li {
    padding: 12px 0;
    position: relative;
    padding-left: 32px;
    font-size: 0.99rem;
}

.product-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.08rem;
    color: #ffffff;
}

.product-image {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

/* Product Slider Styles */
.product-slider {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px 50px 30px; /* Space for arrows and dots */
}

/* Ensure slider container doesn't interfere with arrow transparency */
.product-slider * {
    box-sizing: border-box;
}

.product-slider .slider-arrow-indicator,
.product-slider .slider-arrow-indicator * {
    background: none !important;
    background-color: transparent !important;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.product-slide-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
}

.product-slide-video {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(130, 94, 228, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #825ee4;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(130, 94, 228, 0.15);
}

.slider-nav:hover {
    background: #825ee4;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(130, 94, 228, 0.3);
    border-color: #825ee4;
}

.slider-nav.prev {
    left: -25px;
}

.slider-nav.next {
    right: -25px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(130, 94, 228, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(130, 94, 228, 0.2);
}

.dot.active {
    background: rgba(130, 94, 228, 0.8);
    transform: scale(1.3);
    border-color: rgba(130, 94, 228, 0.6);
}

.dot:hover {
    background: rgba(130, 94, 228, 0.6);
    transform: scale(1.15);
    border-color: rgba(130, 94, 228, 0.4);
}

.product-image img {
    max-width: 400px;
    width: 180%;
    height: auto;
    border-radius: 20px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Hide the old product image when slider is present */
.product-image > img {
    display: none;
}

/* Newsletter section - light cream background */
.newsletter-section {
    position: relative;
    background: #fefbf6;
    padding: 100px 0 150px;
    color: #2d3748;
    text-align: center;
    margin-top: -2px;
    z-index: 0;
}

.newsletter-content h2 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #5B2E90;
}

.newsletter-content p {
    font-size: 1.08rem;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    background: rgba(91, 46, 144, 0.05);
    padding: 8px;
    border-radius: 60px;
    border: 2px solid rgba(91, 46, 144, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: #ffffff;
    color: #2d3748;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.newsletter-form button {
    padding: 16px 32px;
    background: #ffd93d;
    color: #2d3748;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Social section - hero purple gradient */
.social-section {
    position: relative;
    background: linear-gradient(90deg, #5e72e4 0%, #825ee4 50%, #a47dea 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-top: -2px;
    z-index: 1;
}

.social-section h2 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.social-section p {
    margin-bottom: 40px;
    font-size: 0.99rem;
    color: white;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-links a svg {
    width: 28px;
    height: 28px;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-facebook:hover {
    background: #1877F2;
}

.social-tiktok:hover {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer p {
    opacity: 0.8;
}

/* Header */
header {
    padding: 20px 0;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    min-height: 90px;
}

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

.logo {
    height: 100px;
    width: auto;
    margin: 5px 0;
    flex-shrink: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: #2d3748;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

/* Mobile menu button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-button span {
    width: 24px;
    height: 3px;
    background-color: #2d3748;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

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

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #5e72e4, #825ee4);
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-content,
    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* New product grid responsive */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-showcase .section-header h2 {
        font-size: 2.2rem;
    }
    
    .features-grid-inline {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .general-features h3 {
        font-size: 1.3rem;
    }
    
    .product-card .product-slider {
        max-width: 280px;
        padding: 0 15px 12px 15px;
    }
    
    .product-card .slider-container {
        height: 260px;
    }
    
    .product-card .slider-dots {
        bottom: -8px;
        gap: 6px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .product-info h2 {
        font-size: 1.98rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Mobile image sizing */
    .product-hero-image {
        width: 100%;
        max-width: 280px;
    }
    
    .product-image img {
        width: 100%;
        max-width: 250px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 16px;
        max-width: calc(100% - 40px);
        margin: 0 auto;
        padding: 18px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .nav-links.mobile-open {
        right: 0;
    }
    
    .nav-links li {
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.08rem;
        padding: 12px 20px;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .wave-curve svg {
        height: 40px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Prevent horizontal scroll from various elements */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-buttons > * {
        max-width: 100%;
    }
}

/* Loading animation */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Video Popup Styling */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 1.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(0px);
}

.video-popup-overlay.show {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
}

.video-popup-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: scale(0.3) translateY(200px) rotateX(90deg);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    filter: blur(20px);
}

.video-popup-overlay.show .video-popup-container {
    transform: scale(1) translateY(0) rotateX(0deg);
    opacity: 1;
    filter: blur(0px);
}

.video-popup-player {
    width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: 18px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.15);
    transform: scale(0.7) translateY(50px);
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-delay: 0.8s;
}

.video-popup-overlay.show .video-popup-player {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.video-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #ff6b6b, #ff4757);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 8px 25px rgba(255, 107, 107, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.5) rotate(-180deg);
    opacity: 0;
}

.video-popup-overlay.show .video-popup-close {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    transition-delay: 1.2s;
}

.video-popup-close:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 
        0 12px 35px rgba(255, 107, 107, 0.7),
        0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, #ff5252, #ff3742);
}

.video-popup-close:active {
    transform: scale(0.95) rotate(90deg);
}

/* Clickable product image styling */
.product-clickable-image {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-clickable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.product-clickable-image:hover::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulsePlay 1.5s infinite;
}

@keyframes pulsePlay {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Gallery Popup Styles */
.gallery-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(0px);
}

.gallery-popup-overlay.show {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
}

.gallery-popup-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: scale(0.3) translateY(200px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-popup-overlay.show .gallery-popup-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.gallery-slider {
    position: relative;
    width: auto;
    height: auto;
    max-width: 80vw;
    max-height: 70vh;
    min-width: 300px;
    min-height: 200px;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    display: flex;
    z-index: 10;
}

.gallery-slide-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}

.gallery-slide-video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}

.gallery-slide-video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px;
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

/* Gallery Counter */
.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.gallery-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #ff6b6b, #ff4757);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 8px 25px rgba(255, 107, 107, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.5) rotate(-180deg);
    opacity: 0;
}

.gallery-popup-overlay.show .gallery-popup-close {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    transition-delay: 0.5s;
}

.gallery-popup-close:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 
        0 12px 35px rgba(255, 107, 107, 0.7),
        0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, #ff5252, #ff3742);
}

/* Mobile Responsiveness for Sliders */
@media (max-width: 768px) {
    .product-slider {
        max-width: 350px;
        padding: 0 25px 40px 25px;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .slider-nav.prev {
        left: -22px;
    }
    
    .slider-nav.next {
        right: -22px;
    }
    
    .slider-dots {
        bottom: -30px;
        gap: 8px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    /* Adjust arrow indicator on mobile - FORCE 3X SIZE */
    .slider-arrow-indicator {
        top: -120px !important; /* Adjust position for much larger arrow */
        left: 30% !important; /* More to the left on mobile */
        width: 255px !important; /* 3x larger container (85px * 3 = 255px) */
        height: 255px !important;
        max-width: 255px !important; /* Force max width */
        max-height: 255px !important; /* Force max height */
    }
    
    .product-slider .slider-arrow-indicator {
        width: 255px !important; /* More specific selector */
        height: 255px !important;
    }
    
    .arrow-image {
        width: 90% !important; /* Force percentage */
        max-width: 230px !important; /* Force max size */
        transform: rotate(20deg) !important; /* Force transform */
    }
    
    .product-slider .arrow-image {
        width: 90% !important; /* More specific selector */
        max-width: 230px !important;
    }
    
    .arrow-text {
        font-size: 24px !important; /* 3x larger text (8px * 3 = 24px) */
        transform: translate(-50%, -50%) rotate(-10deg) !important;
    }
    
    .product-slider .arrow-text {
        font-size: 24px !important; /* More specific selector */
    }
}
    
    .gallery-popup-container {
        max-width: 95vw;
        max-height: 95vh;
        padding: 15px;
        width: auto;
        height: auto;
    }
    
    .gallery-slider {
        max-width: 85vw;
        max-height: 60vh;
        width: auto;
        height: auto;
        min-width: 280px;
        min-height: 180px;
    }
    
    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .gallery-nav.prev {
        left: 15px;
    }
    
    .gallery-nav.next {
        right: 15px;
    }
    
    /* Extra small mobile screens */
    @media (max-width: 480px) {
        .product-slider {
            max-width: 280px;
            padding: 0 20px 35px 20px;
        }
        
        .slider-container {
            height: 280px;
        }
        
        .slider-nav {
            width: 35px;
            height: 35px;
            font-size: 18px;
        }
        
        .slider-nav.prev {
            left: -18px;
        }
        
        .slider-nav.next {
            right: -18px;
        }
        
        .slider-dots {
            bottom: -25px;
            gap: 6px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
        }
        
        .gallery-nav {
            display: none;
        }
        
        /* Further adjust arrow on very small screens */
        .slider-arrow-indicator {
            top: -30px; /* Move lower to overlap with product image on tiny screens */
            left: 25%; /* Even more to the left on tiny screens */
            width: 65px; /* Even larger container on tiny screens */
            height: 65px;
        }
        
        .arrow-image {
            width: 90%; /* Increased to 90% for tiny screens too */
        }
        
        .arrow-text {
            font-size: 6px; /* Smaller text on tiny screens to fit on smaller arrow */
            transform: translate(-50%, -50%) rotate(-12deg);
        }
    }

/* ===== BLOG SECTION STYLES ===== */
.blog-section {
    position: relative;
    background: #fefbf6;
    padding: 100px 0 120px;
    overflow: hidden;
}

/* Blog section wave separator specific styling */
.blog-section .wave-curve {
    z-index: 2;
    margin-bottom: -1px;
    overflow: hidden;
}

.blog-section .wave-curve svg {
    height: 80px;
    margin-bottom: 0;
    width: 100%;
    display: block;
    shape-rendering: geometricPrecision;
    min-width: 100%;
}

.blog-section .wave-curve svg path {
    vector-effect: non-scaling-stroke;
}

.blog-section .wave-curve svg path[stroke] {
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.blog-section .section-header h2 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-section .section-header h2 .highlight {
    color: #825ee4;
}

.blog-section .section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Hide 2nd and 3rd blog cards */
.blog-card:nth-child(2),
.blog-card:nth-child(3) {
    display: none;
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(130, 94, 228, 0.9), rgba(94, 114, 228, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.read-more {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    font-family: 'Morning Breeze', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    color: #825ee4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    align-self: flex-start;
    display: inline-block;
}

.blog-card:hover .blog-card-link {
    color: #5e72e4;
}

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

.blog-cta .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #825ee4, #5e72e4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(130, 94, 228, 0.3);
}

.blog-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(130, 94, 228, 0.4);
}

/* Responsive design for blog section */
@media (max-width: 768px) {
    .blog-section {
        padding: 80px 0 100px;
    }
    
    .blog-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .blog-articles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 25px;
    }
    
    .blog-card-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 60px 0 80px;
    }
    
    .blog-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-articles-grid {
        gap: 20px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-content h3 {
        font-size: 1.2rem;
    }
} 