:root {
    --primary-orange: #FF6B35;
    --light-orange: #FF8C42;
    --dark-orange: #E55934;
    --black: #1A1A1A;
    --dark-gray: #2D2D2D;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --success-green: #4CAF50;
    --water-blue: rgba(173, 216, 230, 0.6);
    --water-light: rgba(255, 255, 255, 0.8);
    --orange-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #E55934 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}


/* Smooth Scrolling */

html {
    scroll-behavior: smooth;
}


/* Gradient Background */

.gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #fff5f0 50%, #ffebe0 100%);
    z-index: -2;
}


/* Floating Elements */

.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-orange);
    top: 10%;
    left: 10%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--dark-orange);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: var(--light-orange);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}


/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    left: 0px;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 3rem;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar.scrolled {
    padding: 0.75rem 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 10.5rem;
    margin-right: 55vh;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* Mobile Toggle */

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}


/* Main Content */

.main-content {
    padding-top: 80px;
}


/* Hero Section with Wave */

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: var(--orange-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: slideDown 0.8s ease-out;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title .accent {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-orange);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Hero Visual */

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.5s both;
}

.product-showcase {
    position: relative;
    display: flex;
    background: none;
    justify-content: center;
    align-items: center;
}

.showcase-main {
    width: 400px;
    height: auto;
    z-index: 2;
    position: relative;
    top: 70px;
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.2));
    animation: floatProduct 4s ease-in-out infinite;
}

.showcase-side {
    position: absolute;
    width: 200px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(255, 255, 255, 0.1));
}

.showcase-side.left {
    left: -50px;
    top: 50px;
    transform: rotate(-15deg);
    animation: floatProduct 4s ease-in-out infinite 0.5s;
}

.showcase-side.right {
    right: -50px;
    top: 50px;
    transform: rotate(15deg);
    animation: floatProduct 4s ease-in-out infinite 1s;
}

@keyframes floatProduct {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* Container */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}


/* Section Headers */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-title .accent {
    color: var(--primary-orange);
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
}


/* Featured Section with Wave */

.featured-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M1200,0H0V53.94c23.86,10.54,50.86,19.3,78.24,17.32,31.62-2.29,62.64-15.42,95.35-17.24,41.74-2.32,83.69,7.75,125.77,15.46,42.07,7.7,84.77,12.82,128.67,6.77,44.8-6.17,87.4-21.9,132.32-27.42C620.3,42.41,680.18,49.3,740.41,55.48c61.09,6.27,122.74,11.85,184.88,6.66C982.35,57.93,1039.23,40.57,1096,25.56c28.13-7.44,56.76-14.11,85.73-16.67C1191.7,7.91,1196.15,3.86,1200,0Z' fill='%23FF6B35'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


/* Water Droplet Effect */

.water-droplets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.droplet {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, var(--water-light), var(--water-blue));
    border-radius: 50%;
    opacity: 0;
    animation: dropletFall 3s infinite ease-in;
    box-shadow: 0 2px 8px rgba(173, 216, 230, 0.3);
}

.droplet-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.droplet-2 {
    width: 12px;
    height: 12px;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.droplet-3 {
    width: 6px;
    height: 6px;
    top: 25%;
    left: 60%;
    animation-delay: 2s;
}

@keyframes dropletFall {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.5);
    }
    15% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    85% {
        opacity: 1;
        transform: translateY(10px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(30px) scale(0.3);
    }
}

.product-card:hover .droplet {
    animation-duration: 2s;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.product-badge.new {
    background: var(--success-green);
}

.product-badge.limited {
    background: var(--black);
}

.product-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffebe0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 300px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--dark-gray);
    font-size: 14px;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-size {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
}

.product-details {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-details:hover {
    background: var(--dark-orange);
    transform: scale(1.1);
}

.section-footer {
    text-align: center;
    position: relative;
    z-index: 3;
}


/* Benefits Section */

.benefits-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 24px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--black);
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.benefit-item p {
    color: var(--dark-gray);
    font-size: 14px;
}


/* About Section */

.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--primary-orange);
    font-size: 20px;
}

.feature span {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* Lifestyle Section */

.lifestyle-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.lifestyle-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 500px;
}

.lifestyle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.lifestyle-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.lifestyle-image img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lifestyle-card:hover .lifestyle-image img {
    transform: scale(1.05);
}

.lifestyle-content {
    padding: 2rem;
    text-align: center;
}

.lifestyle-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.lifestyle-content p {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.6;
}


/* Contact Section with Wave */

.contact-section {
    padding: 6rem 0;
    background: var(--orange-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23F5F5F5'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.contact-section .section-header,
.contact-grid {
    position: relative;
    z-index: 3;
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-title .accent {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: var(--black);
}

.contact-card a {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--dark-orange);
}

.contact-card address {
    font-style: normal;
    color: var(--dark-gray);
    line-height: 1.6;
}


/* Footer */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-info {
    text-align: center;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}


/* Animations */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Scroll Animations */

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        margin-top: 3rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .hero-section {
        padding: 2rem 1.5rem;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .showcase-main {
        width: 300px;
        position: relative;
        top: -40px;
    }
    .showcase-side {
        width: 150px;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-description {
        font-size: 16px;
    }
    .section-title {
        font-size: 32px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}