/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #3d4f3a;
    --primary-wine: #6b2737;
    --dark-gray: #2b2b2b;
    --medium-gray: #4a4a4a;
    --light-gray: #f5f4f0;
    --beige: #c9b896;
    --beige-dark: #a89968;
    --gold: #b8975a;
    --white: #ffffff;
    --cream: #faf9f6;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

/* ===== Header & Navigation ===== */
.header {
    background: var(--dark-gray);
    border-bottom: 1px solid rgba(184, 151, 90, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.8rem;
    margin: 0;
    display: none;
}

.tagline {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 2rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--dark-gray);
    border-color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    background: var(--dark-gray);
    color: var(--white);
    padding: 160px 0 140px;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
}

/* Hero Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 43, 43, 0.75);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(184, 151, 90, 0.03) 50px,
        rgba(184, 151, 90, 0.03) 51px
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    border-radius: 2px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-gray);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--beige-dark);
    border-color: var(--beige-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 151, 90, 0.3);
}

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

.btn-secondary:hover {
    background: transparent;
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-3px);
}

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

.btn-light:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ===== About Section ===== */
.about {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-wine);
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--medium-gray);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--gold);
    opacity: 1;
    position: relative;
    overflow: hidden;
}


/* ===== Services Section ===== */
.services {
    padding: 120px 0;
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 151, 90, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2.5rem;
    border-radius: 2px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(184, 151, 90, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--beige-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--font-display);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== Categories Preview ===== */
.categories-preview {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 4rem;
    font-size: 1.2rem;
    font-weight: 300;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.category-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(61, 79, 58, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-wine));
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-wine);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.category-card:hover i {
    color: var(--gold);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.cta-center {
    text-align: center;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255, 255, 255, 0.02) 60px,
        rgba(255, 255, 255, 0.02) 61px
    );
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

/* ===== Page Header ===== */
.page-header {
    background: var(--dark-gray);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 43, 43, 0.75);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(184, 151, 90, 0.03) 80px,
        rgba(184, 151, 90, 0.03) 81px
    );
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ===== Suppliers Section ===== */
.suppliers-section {
    padding: 120px 0;
    background: var(--cream);
}

.category-section {
    margin-bottom: 6rem;
}

.category-view-more {
    text-align: center;
    margin-top: 2.5rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold);
}

.category-header i {
    font-size: 3rem;
    color: var(--primary-wine);
}

.category-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-wine);
    letter-spacing: -1px;
}

.category-description {
    color: var(--medium-gray);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.supplier-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2px;
    transition: var(--transition);
    border: 1px solid rgba(61, 79, 58, 0.1);
    position: relative;
}

.supplier-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--beige-dark));
    transition: var(--transition);
}

.supplier-card:hover::before {
    height: 100%;
}

.supplier-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.supplier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.supplier-header h3 {
    font-size: 1.6rem;
    color: var(--dark-gray);
    font-family: var(--font-display);
}

.supplier-country {
    font-size: 0.95rem;
    background: var(--light-gray);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-green);
}

.supplier-card p {
    color: var(--medium-gray);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.supplier-link {
    color: var(--primary-wine);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.supplier-link:hover {
    color: var(--gold);
    gap: 1rem;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 120px 0;
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.contact-form-container {
    background: var(--white);
    padding: 4rem;
    border-radius: 2px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(61, 79, 58, 0.1);
}

.contact-form-container h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-wine);
    letter-spacing: -1px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(61, 79, 58, 0.2);
    border-radius: 2px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 151, 90, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    text-align: center;
    padding: 4rem;
    background: rgba(61, 79, 58, 0.1);
    border-radius: 2px;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.form-success i {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    margin-bottom: 0.7rem;
    font-size: 1.8rem;
}

.contact-info {
    background: var(--dark-gray);
    padding: 4rem;
    border-radius: 2px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    color: var(--white);
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--gold);
    letter-spacing: -1px;
}

.contact-info-item {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(184, 151, 90, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
    border: 1px solid rgba(184, 151, 90, 0.3);
}

.contact-details h4 {
    margin-bottom: 0.6rem;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
}

.business-hours {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours h3 {
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-size: 1.3rem;
}

.business-hours p {
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Info Section ===== */
.info-section {
    padding: 120px 0;
    background: var(--white);
}

.info-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-wine);
    letter-spacing: -1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.info-card {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 2px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(61, 79, 58, 0.1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.info-card i {
    font-size: 3.5rem;
    color: var(--primary-wine);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--dark-gray);
    font-family: var(--font-display);
}

.info-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(184, 151, 90, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    opacity: 0.7;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* ===== Decorative Elements ===== */
.section-divider {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 3rem auto;
}

/* ===== Small Supplier Cards (for individual category pages) ===== */
.suppliers-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.supplier-card-small {
    background: var(--white);
    padding: 2rem;
    border-radius: 2px;
    transition: var(--transition);
    border: 1px solid rgba(61, 79, 58, 0.1);
    position: relative;
}

.supplier-card-small::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--beige-dark));
    transition: var(--transition);
}

.supplier-card-small:hover::before {
    height: 100%;
}

.supplier-card-small:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.supplier-card-small .supplier-header {
    margin-bottom: 1rem;
}

.supplier-card-small .supplier-header h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.supplier-card-small .supplier-country {
    font-size: 0.85rem;
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-green);
    display: inline-block;
}

.supplier-card-small p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.supplier-card-small .supplier-link {
    color: var(--primary-wine);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.supplier-card-small .supplier-link:hover {
    color: var(--gold);
    gap: 0.8rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 1.8rem;
        white-space: normal;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .suppliers-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-gray);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
        border-right: 1px solid rgba(184, 151, 90, 0.2);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .language-selector {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-left: 0;
        padding-top: 1.5rem;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about,
    .services,
    .categories-preview,
    .suppliers-section,
    .contact-section,
    .info-section {
        padding: 80px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
    
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.3rem;
        white-space: normal;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}