/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary-color: #1A1A1A;
    --accent-color: #27AE60;
    --accent-light: #2ECC71;
    
    /* Neutrals */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #E8E8E8;
    --medium-gray: #999999;
    --dark-gray: #666666;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-highlight {
    color: var(--primary-color);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--gray);
}

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

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn--full {
    width: 100%;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.top-bar__info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar__link {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.top-bar__link:hover {
    opacity: 0.9;
}

.top-bar__divider {
    opacity: 0.5;
}

.top-bar__promo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: relative;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    height: 70px;
}

.nav {
    width: 100%;
    height: 100%;
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.4rem;
    color: var(--primary-color);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.6rem;
    color: var(--medium-gray);
    font-weight: 400;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
}

.nav__link {
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
    font-size: 0.9rem;
    white-space: nowrap;
}

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

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

.nav__buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn--small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* ===== HERO SECTION ===== */
/* ===== HERO SECTION - REDESIGN ===== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
    margin-top: 0;
}

.hero__wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero__tag i {
    font-size: 0.9rem;
}

.hero__title {
    font-size: clamp(2.5rem, 7vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    letter-spacing: -0.015em;
}

.hero__highlight {
    color: var(--primary-color);
    position: relative;
}

.hero__highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.hero__description {
    font-size: 1.0625rem;
    color: var(--dark-gray);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    max-width: 520px;
}

.hero__location {
    font-size: 0.95rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero__cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero__image-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: var(--white);
    border: 2px solid rgba(255, 107, 53, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.hero__image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.hero__image-badge i {
    font-size: 1rem;
}

.hero__stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero__stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hero__stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.hero__stat-content strong {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
}

.hero__stat-content span {
    display: block;
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: 0.25rem;
}

/* ===== RESPONSIVE HERO ===== */
@media screen and (max-width: 1024px) {
    .hero__wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .hero__title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    .hero__image-card {
        max-width: 400px;
    }

    .hero__stats-section {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 50px 0 60px;
    }

    .hero__wrapper {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .hero__tag {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .hero__title {
        font-size: clamp(1.75rem, 5vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .hero__description {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    .hero__cta {
        gap: 1rem;
    }

    .hero__image-card {
        max-width: 100%;
        aspect-ratio: 3/4;
    }

    .hero__image-badge {
        top: 15px;
        right: 15px;
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }

    .hero__stats-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        padding-top: 2rem;
    }

    .hero__stat-item i {
        font-size: 2rem;
    }

    .hero__stat-content strong {
        font-size: 1.1rem;
    }

    .hero__stat-content span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 40px 0 50px;
    }

    .hero__wrapper {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero__tag {
        padding: 0.35rem 0.9rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .hero__title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }

    .hero__description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

    .hero__location {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .hero__cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .hero__image-card {
        max-width: 100%;
        aspect-ratio: 3/4;
        border-radius: 16px;
    }

    .hero__image-badge {
        top: 12px;
        right: 12px;
        padding: 0.6rem 0.9rem;
        font-size: 0.75rem;
        border-radius: 10px;
    }

    .hero__stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .hero__stat-item {
        gap: 1rem;
    }

    .hero__stat-item i {
        font-size: 1.75rem;
    }

    .hero__stat-content strong {
        font-size: 1rem;
    }

    .hero__stat-content span {
        font-size: 0.75rem;
    }
}
/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 5rem 0;
    background: var(--white);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray);
}

.product__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product__image {
    height: 280px;
    overflow: hidden;
}

.product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product__card:hover .product__image img {
    transform: scale(1.05);
}

.product__content {
    padding: 2rem;
}

.product__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.product__description {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.product__features {
    margin-bottom: 2rem;
}

.product__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.product__features i {
    color: var(--accent-color);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 5rem 0;
    background: var(--light-gray);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit__card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray);
}

.benefit__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.benefit__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.benefit__description {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.benefits__cta {
    text-align: center;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    padding: 5rem 0;
    background: var(--white);
}

.comparison__table {
    margin: 3rem 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray);
    font-size: 0.95rem;
}

table th {
    background: var(--light-gray);
    font-weight: 700;
    color: var(--secondary-color);
}

table td {
    color: var(--dark-gray);
}

table th.highlight,
table td.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
    font-weight: 600;
    color: var(--primary-color);
}

table i.fa-check {
    color: var(--accent-color);
}

table i.fa-times {
    color: var(--medium-gray);
}

.why-choose__badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.badge-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.badge-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.badge-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 5rem 0;
    background: var(--light-gray);
}

.faq__grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray);
}

.faq__question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq__question:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.faq__question i {
    font-size: 0.875rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 2rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq__cta {
    text-align: center;
    margin-top: 3rem;
}

.faq__cta p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial__card {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.testimonial__rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial__rating i {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial__text {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial__author {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.testimonial__location {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* ===== WHOLESALE SECTION ===== */
.wholesale {
    padding: 5rem 0;
    background: var(--light-gray);
}

.wholesale__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.wholesale__card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray);
}

.wholesale__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.wholesale__card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.wholesale__card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.wholesale__card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.wholesale__requirements {
    margin-bottom: 2rem;
}

.wholesale__requirements h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    text-align: center;
}

.requirements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.requirement__card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.requirement__card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
    transform: translateY(-4px);
}

.requirement__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #FF8A50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
}

.requirement__card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.requirement__highlight {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.requirement__description {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

.wholesale__cta {
    text-align: center;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn--primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta .btn--primary:hover {
    background: var(--light-gray);
}

.cta .btn--secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta .btn--secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 0 2rem;
    background: var(--secondary-color);
    color: var(--white);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.8rem;
}

.footer__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__links,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 0.8rem;
}

.footer__links a:hover {
    color: var(--primary-color);
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-size: 0.8rem;
}

.footer__contact i {
    color: var(--primary-color);
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.footer__bottom {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    background: #20BA5A;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero__image img {
        height: 400px;
    }
    
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose__badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wholesale__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .top-bar__content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-bar__promo {
        font-size: 0.75rem;
    }
    
    .header {
        height: 60px;
    }
    
    .nav__container {
        padding: 0 1rem;
    }
    
    .nav__list {
        gap: 1.5rem;
    }
    
    .nav__link {
        font-size: 0.85rem;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero__image img {
        min-height: 400px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        padding: 4rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1001;
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .products__grid,
    .benefits__grid,
    .wholesale__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose__badges {
        grid-template-columns: 1fr;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose__badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .wholesale__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer__title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .footer__links a,
    .footer__contact li {
        font-size: 0.8rem;
    }
    
    .whatsapp-btn {
        right: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__badge-float,
    .hero__promo-float {
        font-size: 0.75rem;
        padding: 0.625rem 1rem;
    }
    
    .benefit__number {
        font-size: 2.5rem;
    }
    
    .faq__question {
        font-size: 0.9rem;
        padding: 1.25rem 1.5rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    .hero__badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.7rem;
    }
}

/* ===== RESPONSIVE REQUIREMENTS ===== */
@media screen and (max-width: 1024px) {
    .requirements__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .requirements__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .requirement__card {
        padding: 1.5rem;
    }
    
    .requirement__icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .requirement__highlight {
        font-size: 1.25rem;
    }
    
    .requirement__card h4 {
        font-size: 1rem;
    }
    
    .requirement__description {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .requirements__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .requirement__card {
        padding: 1.25rem;
    }
    
    .requirement__icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .requirement__card h4 {
        font-size: 0.95rem;
    }
    
    .requirement__highlight {
        font-size: 1.1rem;
    }
    
    .requirement__description {
        font-size: 0.8rem;
    }
}
