﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c2410c;
    --secondary-color: #9a3412;
    --accent-color: #fbbf24;
    --text-color: #1a1a2e;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #fff7ed;
    --border-color: #fed7aa;
    --nav-bg: #431407;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.main-header {
    background-color: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.brand-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-color), #e8c870);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--nav-bg);
    letter-spacing: 0.5px;
}

.brand-logo span {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active-link {
    color: #ffffff;
    background-color: rgba(201, 168, 76, 0.15);
}

.nav-menu a.active-link {
    color: var(--accent-color);
}

.language-selector {
    background-color: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
}

.language-selector:hover {
    background-color: rgba(201, 168, 76, 0.15);
}

.language-selector option {
    background-color: var(--nav-bg);
    color: #ffffff;
}

/* ===== HERO ===== */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a2f08 50%, #9a3412 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero-banner .container-fluid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #e8c870);
    color: var(--nav-bg);
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background-color: var(--secondary-color);
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-item .stat-label {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTIONS GENERAL ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background-color: rgba(201, 168, 76, 0.12);
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.3px;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.category-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.category-card:hover .category-img img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--accent-color), #e8c870);
    color: var(--nav-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-body {
    padding: 24px;
}

.category-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.category-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 18px;
}

.btn-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-category:hover {
    background-color: var(--secondary-color);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.products-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-light);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--nav-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-color);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-img {
    height: 180px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-body {
    padding: 18px;
}

.product-tag {
    display: inline-block;
    background-color: rgba(26, 58, 92, 0.08);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.product-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 14px;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--primary-color);
    padding: 7px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-product:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* ===== FEATURES ===== */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2a5a8c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    background: linear-gradient(135deg, var(--primary-color), #0d2a45);
    padding: 64px 0;
    text-align: center;
}

.quote-section blockquote p {
    font-size: 22px;
    font-style: italic;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.quote-section blockquote cite {
    font-size: 15px;
    color: var(--accent-color);
    font-style: normal;
    font-weight: 600;
}

/* ===== BENEFITS ===== */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-color);
    border-radius: 14px;
    padding: 28px 22px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(201, 168, 76, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.benefit-icon i {
    font-size: 22px;
    color: var(--accent-color);
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #0d2a45);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.page-hero p {
    font-size: 17px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-history-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.about-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-history-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 24px;
}

.about-history-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-history-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-color);
    border-radius: 14px;
    padding: 28px 22px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), #2a5a8c);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-icon i {
    font-size: 22px;
    color: var(--accent-color);
}

.value-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.location-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.location-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
}

.location-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.location-info i {
    color: var(--accent-color);
    width: 20px;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), #2a5a8c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 16px;
    color: var(--accent-color);
}

.contact-detail-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-item p,
.contact-detail-item a {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.6;
}

.contact-detail-item a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-color);
    background: var(--bg-color);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), #2a5a8c);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 92, 0.3);
}

.form-success {
    background-color: #d1fae5;
    color: #065f46;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid #6ee7b7;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 60px 0 80px;
    background-color: var(--bg-color);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.legal-block p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-block ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-block ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-block strong {
    color: var(--text-color);
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--nav-bg);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-brand p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links ul a {
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #475569;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0d1f35;
    border-top: 2px solid var(--accent-color);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    white-space: nowrap;
}

.cookie-content p {
    font-size: 13px;
    color: #94a3b8;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--accent-color), #e8c870);
    color: var(--nav-bg);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-cookie-accept:hover {
    transform: scale(1.03);
}

.btn-cookie-decline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-cookie-decline:hover {
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid,
    .benefits-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-banner .container-fluid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-image {
        display: none;
    }

    .navigation-bar {
        flex-direction: column;
        gap: 12px;
        padding: 14px 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .about-history-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .benefits-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
