:root {
    --primary-green: #3B821A;
    --dark-green: #2B5D13;
    --text-dark: #333333;
    --text-light: #777777;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --border-color: #EAEAEA;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Removed .header-top */

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.phone-text {
    transition: var(--transition);
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #3B821A;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transition: var(--transition);
}

.whatsapp-link:hover {
    background-color: #8EBD40;
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .phone-link {
        width: 38px;
        height: 38px;
        background-color: var(--primary-green);
        color: var(--white) !important;
        border-radius: 50%;
        justify-content: center;
        font-size: 18px;
    }

    .phone-text {
        display: none;
    }
    
    .phone-link:hover {
        background-color: #8EBD40;
        transform: scale(1.1);
    }
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    color: #00431B;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #8EBD40;
}

.nav {
    display: none;
    /* Mobile menu hidden by default */
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary-green);
}

/* --- Navigation Dropdown --- */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--primary-green);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: normal;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-green);
    padding-left: 30px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 1000;
        border-top: 1px solid var(--border-color);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }

    /* Mobile Dropdown Adjustments */
    .nav-item-dropdown {
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        border-top: none;
        background: transparent;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .nav-item-dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .header-main {
        position: relative;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background-image: url('../img/banner.jpg');
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .btn-wholesale {
    margin-top: 25px;
}

/* --- Features Section --- */
.features {
    padding: 60px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.feature-icon {
    width: auto;
    height: auto;
    margin: 0 auto 20px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 52px;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-desc {
    color: var(--text-light);
    font-size: 15px;
}

/* --- Catalog Section --- */
.catalog {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.catalog-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.catalog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
    background-color: var(--white);
}

.catalog-item:hover .catalog-title {
    color: var(--primary-green);
}

.catalog-img-wrapper {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalog-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.catalog-item:hover .catalog-img {
    transform: scale(1.08);
}

.catalog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

/* --- Footer --- */
.footer {
    background-color: #222222;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer .logo {
    color: #AAAAAA !important;
}

.footer .logo:hover {
    color: #8EBD40 !important;
}

/* Removed .footer-logo block to use identical .logo class */

.footer-address {
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-nav-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-link {
    color: #cccccc;
    transition: var(--transition);
}

.footer-nav-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-phone {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.footer-email {
    color: #cccccc;
}

.footer-email:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 20px;
    text-align: center;
    color: #888888;
    font-size: 14px;
}

/* --- Media Queries --- */
@media (max-width: 767px) {
    .header-main .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col .logo {
        margin: 0 auto 20px;
        display: block;
    }

    .footer-contact {
        align-items: center;
    }
}

@media (min-width: 768px) {
    .header-top {
        display: block;
    }

    .header-main .container {
        position: relative;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav {
        display: block;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-col {
        flex: 1;
    }

    .footer-col:nth-child(2) {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
    }
}

/* --- Product Grid & Tiles --- */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    width: 100%;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .col--sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .col--md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px) {
    .col--lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.product-tile {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    height: 100%;
}

.product-tile:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: #8ebd40;
}

.product-tile-header {
    display: flex;
    min-height: 3rem;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: space-between;
}

.product-category {
    font-weight: 700;
    color: #ccc;
    font-size: 13px;
}

.product-tile-img {
    display: flex;
    height: 200px;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;
}

.product-tile-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Ensure the content link is a flex container and grows */
.product-tile>a:first-of-type {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-decoration: none;
}

.product-tile-title {
    display: block;
    margin-bottom: 1rem;
    transition: var(--transition);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    flex-grow: 1;
}

.product-tile:hover .product-tile-title {
    color: #8ebd40;
}

.product-tile-items {
    margin-top: auto;
}

.product-tile-items-el {
    display: inline-block;
    margin-right: 1.5rem;
    color: var(--text-light);
    font-size: 14px;
}

.btn-buy {
    display: block;
    width: 100%;
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    margin-top: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 0;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-buy:hover {
    background-color: var(--dark-green);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(59, 130, 26, 0.3);
}

/* --- About Page Styles --- */
.about-hero {
    background-image: url('../img/about.jpg');
    background-color: #2c5e13;
}

.history-section {
    padding: 80px 0;
}

.history-intro {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.9;
    position: relative;
    padding: 40px 50px;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 6px solid var(--primary-green);
}

/* --- Infographic Stats --- */
.stats-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    padding: 70px 0;
    color: var(--white);
}

.stats-section .section-title {
    color: var(--white);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 34px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.stat-number {
    display: block;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Timeline --- */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-green), var(--dark-green));
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 60px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    right: -11px;
    background-color: var(--white);
    border: 4px solid var(--primary-green);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(59, 130, 26, 0.12);
}

.left {
    left: 0;
    text-align: right;
}

.right {
    left: 50%;
}

.right::after {
    left: -11px;
}

.timeline-content {
    padding: 24px 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 30px rgba(59, 130, 26, 0.12);
}

.timeline-date {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.timeline-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .timeline::before {
        left: 24px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 68px;
        padding-right: 15px;
        text-align: left;
    }

    .timeline-item::after {
        left: 13px;
        right: auto;
    }

    .right {
        left: 0;
    }

    .history-intro {
        padding: 30px 25px;
        font-size: 16px;
    }
}

/* --- Info Cards --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.info-card {
    background: var(--white);
    padding: 34px 28px;
    border-radius: 16px;
    border-top: 5px solid var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(59, 130, 26, 0.12);
}

.info-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 18px;
}

.info-card h3 {
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* --- Contacts Page --- */
.contacts-hero {
    background-image: url('../img/contacts.jpg');
    background-color: #2a5413;
}

.contacts-section {
    padding: 80px 0;
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contacts-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Contact info items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.contact-item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.contact-item-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
}

.contact-item-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

a.contact-link {
    color: var(--primary-green);
    font-weight: 700;
    transition: var(--transition);
}

a.contact-link:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* Contact Form */
.contacts-form-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: #e04040;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 26, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #bbb;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.form-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 26, 0.35);
}

/* --- Export Page Styles --- */
.export-section {
    padding: 80px 0;
}

.export-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.export-block {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border-left: 6px solid var(--primary-green);
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    text-align: left;
}

.export-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.export-block p:last-child {
    margin-bottom: 0;
}

.export-map-container {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #f0f4f0;
    position: relative;
    border: 1px solid var(--border-color);
}

.map-placeholder-text {
    text-align: center;
    padding: 20px;
}

.map-placeholder-text i {
    font-size: 64px;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: block;
}

.map-placeholder-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* --- Wholesale Button & Modal Styles --- */
.catalog-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-wholesale {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 26, 0.2);
    transition: var(--transition);
}

.btn-wholesale:hover {
    background-color: var(--dark-green);
    box-shadow: 0 6px 20px rgba(59, 130, 26, 0.35);
    transform: translateY(-2px);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: #e04040;
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.modal-form {
    gap: 18px;
}

.modal-form .form-btn {
    width: 100%;
    margin-top: 10px;
}