/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

svg {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: #0020c2;
    color: white;
}

.btn-primary:hover {
    background-color: #001a9d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #191a21;
    color: white;
}

.btn-secondary:hover {
    background-color: #0d0e12;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #0020c2;
    border: 2px solid #0020c2;
}

.btn-outline:hover {
    background-color: #0020c2;
    color: white;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #191a21;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0020c2;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0020c2;
}

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #191a21;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #191a21;
    color: white;
    padding: 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0020c2b9;
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0020c2, #191a21);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.page-header-icon {
    margin-bottom: 20px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #191a21;
    margin: 20px 0;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    margin-bottom: 20px;
}

/* Grids */
.info-grid,
.advantages-grid,
.achievements-grid,
.reviews-grid,
.products-grid,
.team-grid,
.values-grid {
    display: grid;
    gap: 30px;
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.info-card,
.advantage-item,
.achievement-item,
.review-card,
.product-card,
.team-member,
.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.advantage-item:hover,
.achievement-item:hover,
.product-card:hover,
.team-member:hover,
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.info-card h3,
.advantage-item h3,
.achievement-item h3,
.value-item h3 {
    color: #191a21;
    margin: 20px 0 15px;
    font-size: 1.25rem;
}

.product-card {
    text-align: left;
}

.product-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.product-info h3 {
    color: #191a21;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-price,
.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0020c2;
}

.review-card {
    position: relative;
}

.review-stars {
    margin-bottom: 15px;
}

.review-author {
    margin-top: 15px;
    font-style: italic;
    color: #666;
}

/* Team members */
.member-avatar {
    margin-bottom: 20px;
}

.member-role {
    color: #0020c2;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-card h3,
.vision-card h3 {
    color: #191a21;
    margin: 20px 0 15px;
    font-size: 1.5rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    color: #191a21;
    margin: 20px 0 25px;
    font-size: 2rem;
}

.content-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* Catalog Filters */
.catalog-filter {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #666;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #0020c2;
    color: white;
    border-color: #0020c2;
}

.filter-btn svg {
    width: 20px;
    height: 20px;
}

/* Product Categories */
.product-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.category-header h2 {
    color: #191a21;
    font-size: 2rem;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #0020c2, #191a21);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    color: white;
    margin: 20px 0 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0020c2;
}

.newsletter .form-group input {
    background: white;
    color: #333;
}

/* Contact Forms */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-text h2 {
    color: #191a21;
    margin: 20px 0 25px;
}

.contact-features {
    list-style: none;
    margin-top: 30px;
}

.contact-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkmark {
    display: none;
}

/* Contact Info */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card h3 {
    color: #191a21;
    margin: 20px 0 10px;
}

.contact-description {
    color: #666;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Store Hours */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hours-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.day-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.day-group:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.hours {
    font-weight: bold;
    color: #0020c2;
}

.hours.closed {
    color: #dc3545;
}

.hours-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-text h3 {
    color: #191a21;
    margin-bottom: 15px;
}

/* Map */
.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-info h3 {
    color: #191a21;
    margin-bottom: 20px;
}

.directions-list {
    list-style: none;
}

.directions-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #191a21;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
}

.thanks-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.contact-reminder {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-reminder h3 {
    color: #191a21;
    margin-bottom: 15px;
}

.phone-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 1.25rem;
    color: #0020c2;
}

.phone-hours {
    font-size: 0.9rem;
    color: #666;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #191a21;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.legal-section ul {
    margin: 15px 0 15px 20px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #666;
}

.legal-section a {
    color: #0020c2;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #191a21;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-info p,
.footer-links li {
    margin-bottom: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #0020c2;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .content-grid,
    .newsletter-content,
    .contact-content,
    .hours-grid,
    .map-content,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .legal-text {
        padding: 30px;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 18px;
    }

    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    table {
    display: none;}
}