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

:root {
    --primary: #55B000;
    --dark: #1B2316;
    --darker: #222C1D;
    --white: #ffffff;
    --white-75: rgba(255, 255, 255, 0.75);
    --glass: rgba(255, 255, 255, 0.05);
    --yellow: #FFF84E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 64px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(27, 35, 22, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(27, 35, 22, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(85, 176, 0, 0.4);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(360deg) scale(1.1);
}

.logo-icon.large {
    width: 94px;
    height: 94px;
    font-size: 48px;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    opacity: 0.75;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 60px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 26px;
    opacity: 0.75;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.icon-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 150px 0 100px;
    position: relative;
}

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

.hero-title {
    font-size: 118px;
    font-weight: 600;
    opacity: 0.75;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-desc {
    font-size: 23px;
    font-weight: 500;
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 893px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
    padding: 18px 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    background: transparent;
    color: var(--white);
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-play {
    width: 64px;
    height: 64px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    font-size: 20px;
    opacity: 0.75;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    opacity: 1;
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.live-text {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.75;
}

.hero-card-wrapper {
    animation: fadeInRight 1s ease 0.6s backwards;
}

.featured-card {
    background: var(--glass);
    backdrop-filter: blur(12.5px);
    border: 2px solid var(--white);
    border-radius: 77px;
    padding: 40px;
    box-shadow: 0 9px 18.4px rgba(0, 0, 0, 0.25);
    animation: float 3s ease-in-out infinite;
}

.plant-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
}

.plant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plant-tag {
    font-size: 23px;
    font-weight: 400;
    opacity: 0.75;
    margin-bottom: 10px;
}

.plant-name {
    font-size: 38px;
    font-weight: 400;
    opacity: 0.75;
    margin-bottom: 20px;
}

.dots {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.dot.active {
    width: 21px;
    border-radius: 46px;
    opacity: 1;
}

.btn-buy {
    width: 100%;
    margin-bottom: 15px;
}

.btn-fav {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--white);
    border-radius: 12px;
    background: transparent;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-fav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-fav:hover i {
    transform: scale(1.2);
}

/* Review Float */
.review-float {
    position: absolute;
    bottom: 50px;
    left: 64px;
    width: 409px;
    background: var(--glass);
    backdrop-filter: blur(10.1px);
    border: 2px solid var(--white);
    border-radius: 45px;
    padding: 40px;
    animation: slideInLeft 1s ease 0.8s backwards;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
}

.stars {
    color: var(--yellow);
    font-size: 14px;
}

.review-text {
    font-size: 17px;
    font-weight: 400;
    opacity: 0.75;
    line-height: 1.5;
}

/* Sections */
.trendy-section,
.products-section,
.reviews-section,
.o2-section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.section-title {
    font-size: 55px;
    font-weight: 600;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.09);
}

.arrow-btn {
    width: 68.5px;
    height: 69px;
    border: 5px solid var(--primary);
    border-radius: 23px;
    background: transparent;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

/* Showcase */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.showcase.reverse {
    direction: rtl;
}

.showcase.reverse > * {
    direction: ltr;
}

.showcase-img img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.content-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--white);
    border-radius: 151px;
    padding: 80px;
}

.content-card h3 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.06);
}

.content-card p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.price {
    font-size: 38px;
    font-weight: 600;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.17);
}

.btn-group {
    display: flex;
    gap: 15px;
}

.btn-icon {
    width: 64px;
    height: 64px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    border-radius: 12px;
    background: transparent;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateX(5px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.product-card {
    background: var(--glass);
    backdrop-filter: blur(12.5px);
    border: 2px solid var(--white);
    border-radius: 77px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(85, 176, 0, 0.3);
}

.product-desc {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.75;
    line-height: 1.5;
    margin-bottom: 25px;
}

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

.product-price {
    font-size: 38px;
    font-weight: 400;
    opacity: 0.75;
}

.btn-cart {
    width: 55px;
    height: 55px;
    border: 2px solid var(--white-75);
    border-radius: 12px;
    background: transparent;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(15deg) scale(1.1);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.review-card {
    background: var(--glass);
    backdrop-filter: blur(12.5px);
    border: 2px solid var(--white);
    border-radius: 77px;
    padding: 50px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(85, 176, 0, 0.2);
}

.review-card .review-header {
    margin-bottom: 30px;
}

.review-card .reviewer-img {
    width: 88px;
    height: 88px;
}

.review-card .reviewer-name {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
}

.review-card .stars {
    font-size: 16px;
}

.review-card .review-text {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.75;
    line-height: 1.6;
}

/* O2 Section */
.o2-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--glass);
    border: 3px solid var(--white);
    border-radius: 92px;
    padding: 100px;
    margin-bottom: 60px;
}

.o2-img img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.o2-content h3 {
    font-size: 38px;
    font-weight: 600;
    opacity: 0.75;
    margin-bottom: 30px;
}

.o2-content p {
    font-size: 28px;
    font-weight: 600;
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-num {
    font-size: 20px;
    font-weight: 700;
    opacity: 0.75;
}

.page-num small {
    font-size: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-dot {
    width: 11px;
    height: 11px;
    background: var(--white-75);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 31px;
    border-radius: 48px;
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
}

.footer-desc {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.6;
    margin: 30px 0;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.newsletter-form {
    display: flex;
    position: relative;
    margin-bottom: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 25px;
    border: 2px solid var(--white);
    border-radius: 8px;
    background: transparent;
    color: var(--white-75);
    font-size: 24px;
    font-weight: 500;
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 74px;
    height: 74px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.copyright-text {
    font-size: 24px;
    font-weight: 500;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 100px;
    right: -400px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    z-index: 10000;
    transition: right 0.5s ease;
    box-shadow: 0 10px 30px rgba(85, 176, 0, 0.3);
}

.toast.show {
    right: 30px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 80px;
    }
    .section-title {
        font-size: 45px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-grid,
    .showcase,
    .o2-showcase,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-float {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .content-card {
        padding: 40px;
    }
}
