/* ==========================================
   MODERN PREMIUM MARKETPLACE - FRESH DESIGN
   ========================================== */

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

:root {
    /* Green Theme Colors */
    --green-primary: #10b981;
    --green-dark: #059669;
    --green-light: #34d399;
    --green-pale: #d1fae5;
    
    /* Neutrals */
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Typography */
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}

.nav__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.nav__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo-img {
    height: 45px;
    width: auto;
}

.nav__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.nav__menu-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: var(--space-10);
    align-items: center;
}

.nav__link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-700);
    position: relative;
    padding: var(--space-2) 0;
    transition: var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--green-primary);
}

.nav__link:hover::after {
    width: 100%;
}

/* ==========================================
   HERO SECTION - NEW SPLIT LAYOUT
   ========================================== */

.hero {
    margin-top: 80px;
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-16);
    align-items: center;
}

.hero__tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: var(--space-6);
}

.hero__heading {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}

.hero__gradient {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    max-width: 600px;
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn--primary {
    background: var(--green-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn--primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn--outline {
    background: var(--white);
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
}

.btn--outline:hover {
    background: var(--green-pale);
}

.hero__metrics {
    display: flex;
    gap: var(--space-12);
}

.metric {
    text-align: left;
}

.metric__value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.metric__label {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__visual {
    position: relative;
    height: 600px;
}

.hero__card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.hero__card:hover {
    transform: scale(1.05) rotate(2deg);
}

.hero__card--1 {
    width: 65%;
    top: 0;
    right: 10%;
    z-index: 3;
}

.hero__card--2 {
    width: 55%;
    bottom: 15%;
    left: 0;
    z-index: 2;
}

.hero__card--3 {
    width: 45%;
    top: 30%;
    right: 0;
    z-index: 1;
}

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

/* ==========================================
   SHOWCASE/PRODUCTS SECTION
   ========================================== */

.showcase {
    padding: var(--space-24) 0;
    background: var(--white);
}

.showcase__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.showcase__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.text-accent {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-600);
}

.showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

/* PRODUCT CARDS - MODERN DESIGN */
.product-card {
    background: var(--white);
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--green-primary);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.product-card__badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: var(--green-primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 10;
    letter-spacing: 0.5px;
}

.product-card__image {
    height: 320px;
    overflow: hidden;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__img {
    transform: scale(1.1);
}

.product-card__body {
    padding: var(--space-6);
}

.product-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.product-card__name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
    flex: 1;
}

.product-card__price {
    font-size: 22px;
    font-weight: 800;
    color: var(--green-primary);
    white-space: nowrap;
}

.product-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: var(--space-5);
}

.product-card__tags {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
}

.tag {
    padding: var(--space-1) var(--space-3);
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
}

.product-card__btn {
    display: block;
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--gray-900);
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition: var(--transition);
}

.product-card__btn:hover {
    background: var(--green-primary);
    transform: translateY(-2px);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.features__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.features__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.feature-box {
    background: var(--white);
    padding: var(--space-10);
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--green-primary);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1);
}

.feature-box__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 20px;
}

.feature-box__icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-box__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.feature-box__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ==========================================
   STORY/ABOUT SECTION
   ========================================== */

.story {
    padding: var(--space-24) 0;
    background: var(--white);
}

.story__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.story__image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

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

.story__badge {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    padding: var(--space-3) var(--space-6);
    background: var(--green-primary);
    border-radius: 50px;
}

.story__badge-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-5);
}

.story__stats {
    display: flex;
    gap: var(--space-10);
    margin-top: var(--space-8);
}

.stat-item {
    text-align: left;
}

.stat-item__number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-item__label {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: var(--white);
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--green-light);
}

.contact-section__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.contact-section__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
}

.contact-section__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: var(--space-5);
}

.contact-section__desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: var(--space-10);
}

.contact-section__guarantee {
    padding: var(--space-5);
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    margin-bottom: var(--space-10);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-section__guarantee-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-section__guarantee-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-detail {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.contact-detail__icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
}

.contact-detail__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400);
    margin-bottom: var(--space-1);
}

.contact-detail__value {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
}

/* CONTACT FORM */
.contact-form {
    background: var(--white);
    padding: var(--space-10);
    border-radius: 24px;
}

.form-field {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--gray-900);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--green-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: var(--space-4);
    background: var(--green-primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.h-captcha {
    margin-top: var(--space-4);
    text-align:center;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-20) 0 var(--space-8);
}

.site-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand__name {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-3);
}

.footer-brand__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.footer-col__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-col__link {
    font-size: 14px;
    color: var(--gray-500);
    transition: var(--transition);
}

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

.site-footer__bottom {
    text-align: center;
}

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

/* ==========================================
   COOKIE BANNER
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    border-top: 3px solid var(--green-primary);
    border-left: 3px solid var(--green-primary);
    border-right: 3px solid var(--green-primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-6);
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
    flex: 1;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: var(--space-3) var(--space-6);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.cookie-banner__btn--accept {
    background: var(--green-primary);
    color: var(--white);
}

.cookie-banner__btn--accept:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.cookie-banner__btn--decline {
    background: var(--gray-200);
    color: var(--gray-700);
}

.cookie-banner__btn--decline:hover {
    background: var(--gray-300);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .hero__visual {
        height: 500px;
    }
    
    .showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story__grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .contact-section__content {
        grid-template-columns: 1fr;
    }
    
    .site-footer__top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav__menu-toggle {
        display: flex;
    }
    
    .nav__list {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: var(--space-6) 0;
        border-top: 1px solid var(--gray-200);
        transform: translateX(-100%);
        transition: transform var(--transition);
    }
    
    .nav__list--active {
        transform: translateX(0);
    }
    
    .nav__item {
        width: 100%;
        text-align: center;
        padding: var(--space-4) 0;
    }
    
    .hero {
        padding: var(--space-16) 0;
    }
    
    .hero__heading {
        font-size: 2.5rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero__metrics {
        flex-wrap: wrap;
        gap: var(--space-8);
    }
    
    .showcase__grid {
        grid-template-columns: 1fr;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .story__stats {
        flex-wrap: wrap;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
    
    .cookie-banner__actions {
        width: 100%;
    }
    
    .cookie-banner__btn {
        flex: 1;
    }
}
