:root {
    --primary-color: #2d5016;
    --secondary-color: #7fb069;
    --accent-color: #f4a261;
    --light-bg: #f8f9fa;
    --dark-text: #1a1a1a;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    --gradient-2: linear-gradient(135deg, #7fb069 0%, #9bc47d 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(360deg) scale(1.1);
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.header-contact:hover {
    background: var(--primary-color);
    color: var(--white);
    animation: pulse 0.6s ease;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dropdown-menu {
    position: fixed;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.dropdown-menu.active {
    max-height: 400px;
}

.dropdown-menu ul {
    list-style: none;
    padding: 20px 40px;
}

.dropdown-menu li {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-text);
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/hero.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 0%, #e8f5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(10deg);
    }
}

.hero-subtitle {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: transparent;
    border: 3px solid var(--white);
    border-radius: 8px;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    animation: pulse 0.6s ease;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-description {
    font-size: 20px;
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease backwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 24px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.product-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.product-btn {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.product-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    animation: pulse 0.6s ease;
}

.video-cta-section {
    position: relative;
    padding: 120px 0;
    background: var(--light-bg);
    overflow: hidden;
}

.video-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
}

.cta-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    animation: pulse 0.6s ease;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeIn 0.6s ease backwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.testimonial-date {
    font-size: 14px;
    color: #999;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    animation: fadeIn 0.6s ease;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.form-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: "EB Garamond", Georgia, serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-family: "EB Garamond", Georgia, serif;
}

.submit-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    animation: pulse 0.6s ease;
}

.footer {
    background: var(--gradient-1);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 0;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    justify-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: bold;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    font-size: 18px;
    opacity: 0.9;
    max-width: 400px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 17px;
    opacity: 0.95;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    opacity: 0.9;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 15px;
    opacity: 0.8;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 50px;
    height: 32px;
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.section-light-bg {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 16px;
    color: #666;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.process-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 6px solid var(--primary-color);
}

.process-card-step1 {
    border-left-color: var(--primary-color);
}

.process-card-step2 {
    border-left-color: var(--secondary-color);
}

.process-card-step3 {
    border-left-color: var(--accent-color);
}

.process-card-step4 {
    border-left-color: var(--primary-color);
}

.process-step {
    font-size: 48px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 16px;
}

.process-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.process-description {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.container-centered {
    text-align: center;
}

.section-description-wide {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta-btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.contact-info {
    margin-top: 48px;
    padding: 32px;
    background: var(--light-bg);
    border-radius: 12px;
    display: inline-block;
}

.contact-hours {
    font-size: 18px;
    color: #666;
    margin-bottom: 12px;
}

.contact-details {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 1600px) {
    .hero h1 {
        font-size: 64px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 800px) {
    .header-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 18px;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 17px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .video-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 17px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {

    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-details {
        font-size: 20px;
    }
}

@media (max-width: 320px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }
}

.header-spacer {
    height: 90px;
}

.about-hero {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
    }
}

.about-hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-hero-description {
        font-size: 18px;
    }
}

.about-hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.timeline-wrapper {
    max-width: 1000px;
    margin: 60px auto 0;
}

.timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-1);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

@media (max-width: 768px) {
    .timeline-item {
        gap: 20px;
        margin-bottom: 40px;
    }

    .timeline-item-left {
        flex-direction: column-reverse;
    }

    .timeline-item-right {
        flex-direction: column;
    }
}

.timeline-item-right {
    text-align: right;
}

.timeline-item-left {
    text-align: left;
}

@media (max-width: 768px) {

    .timeline-item-right,
    .timeline-item-left {
        text-align: left;
    }
}

.timeline-year {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.timeline-year-right {
    margin-right: 60px;
}

.timeline-year-left {
    margin-left: 60px;
}

@media (max-width: 768px) {

    .timeline-year-right,
    .timeline-year-left {
        margin: 0 0 20px 60px;
        align-self: flex-start;
    }
}

.timeline-content {
    flex: 1;
}

.timeline-content-left {
    padding-left: 60px;
}

.timeline-content-right {
    padding-right: 60px;
}

@media (max-width: 768px) {

    .timeline-content-left,
    .timeline-content-right {
        padding: 0;
    }
}

.timeline-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.timeline-text {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.timeline-item:nth-child(2) .timeline-year {
    background: var(--secondary-color);
}

.timeline-item:nth-child(3) .timeline-year {
    background: var(--accent-color);
}

.timeline-item:nth-child(4) .timeline-year {
    background: var(--primary-color);
}

.timeline-item:nth-child(5) .timeline-year {
    background: var(--secondary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.value-text {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-member {
    text-align: center;
}

.team-member-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-2);
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    box-shadow: var(--shadow-md);
}

.team-member-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.team-member-position {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.about-cta {
    padding: 100px 0;
    background: var(--gradient-1);
    text-align: center;
}

.about-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .about-cta-title {
        font-size: 36px;
    }
}

.about-cta-description {
    font-size: 22px;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-cta-description {
        font-size: 18px;
    }
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-hero {
    padding: 80px 0;
    background: var(--gradient-2);
    text-align: center;
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #e8f5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 36px;
    }
}

.contact-hero-description {
    font-size: 22px;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .contact-hero-description {
        font-size: 18px;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .contact-info-title {
        font-size: 28px;
    }
}

.contact-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
}

.contact-item-large {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-large:last-child {
    margin-bottom: 0;
}

.contact-icon-large {
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
}

.contact-item-large:nth-child(2) .contact-item-value {
    font-size: 20px;
    font-weight: 600;
}

.contact-item-large:nth-child(3) .contact-item-value {
    font-size: 18px;
    font-weight: 600;
}

.working-hours {
    background: var(--light-bg);
    padding: 28px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.working-hours-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.working-hours-text {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

.working-hours-text:last-child {
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: left;
}

@media (max-width: 768px) {
    .contact-form-title {
        font-size: 28px;
    }
}

.contact-form-description {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.form-icon {
    font-size: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group label {
    display: block;
}

.checkbox-group input {
    width: fit-content;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.map-section {
    padding-top: 80px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.company-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.company-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.company-info-text:last-of-type {
    margin-bottom: 32px;
}

.stats-container {
    display: inline-flex;
    gap: 20px;
    padding: 28px 40px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    align-items: center;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 28px;
    }
}

.stat-label {
    font-size: 15px;
    color: #666;
    margin-top: 4px;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: #ddd;
}

@media (max-width: 768px) {
    .stat-divider {
        width: 100%;
        height: 2px;
    }
}

.disclaimer-section {
    padding-top: 80px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .disclaimer-title {
        font-size: 36px;
    }
}

.disclaimer-update-date {
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
}

.disclaimer-warning {
    background: #fff3cd;
    padding: 32px;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
    margin-bottom: 40px;
}

.disclaimer-warning p {
    font-size: 18px;
    line-height: 1.8;
    color: #856404;
}

.disclaimer-section-content {
    margin-bottom: 48px;
}

.disclaimer-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .disclaimer-section-title {
        font-size: 24px;
    }
}

.disclaimer-section-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.disclaimer-list {
    font-size: 17px;
    line-height: 2;
    color: #555;
    padding-left: 24px;
    margin-bottom: 16px;
}

.disclaimer-list li {
    margin-bottom: 8px;
    position: relative;
}

.disclaimer-list li:before {
    content: "•";
    position: absolute;
    left: -24px;
    color: var(--primary-color);
    font-weight: bold;
}

.disclaimer-contact {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 12px;
    margin-top: 48px;
}

.disclaimer-contact-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.disclaimer-contact p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.disclaimer-contact strong {
    color: var(--dark-text);
}

.disclaimer-contact-footer {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-top: 16px;
    font-style: italic;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media print {

    .header,
    .footer,
    .mobile-menu-toggle,
    .header-contact,
    .scroll-top-btn {
        display: none !important;
    }

    .header-spacer {
        height: 20px;
    }

    .disclaimer-content {
        max-width: 100%;
    }

    .disclaimer-title {
        -webkit-text-fill-color: var(--primary-color) !important;
        background: none !important;
    }
}

.privacy-section {
    padding-top: 80px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .privacy-title {
        font-size: 36px;
    }
}

.privacy-update-date {
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
}

.privacy-intro {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 40px;
}

.privacy-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.privacy-section-content {
    margin-bottom: 48px;
}

.privacy-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .privacy-section-title {
        font-size: 24px;
    }
}

.privacy-section-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.privacy-list {
    font-size: 17px;
    line-height: 2;
    color: #555;
    padding-left: 24px;
    margin-bottom: 16px;
}

.privacy-list li {
    margin-bottom: 8px;
    position: relative;
}

.privacy-list li:before {
    content: "•";
    position: absolute;
    left: -24px;
    color: var(--primary-color);
    font-weight: bold;
}

.privacy-list strong {
    color: var(--dark-text);
}

.privacy-contact {
    background: var(--light-bg);
    padding: 36px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    margin-top: 48px;
}

.privacy-contact-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.privacy-contact p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.privacy-company-name {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 8px;
}

.privacy-contact-detail {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
}

.cookie-consent-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.cookie-consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
}

.cookie-btn-settings {
    background: var(--light-bg);
    color: var(--dark-text);
    border: 1px solid #ddd;
}

.cookie-btn-settings:hover {
    background: #e9e9e9;
}

.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.cookie-settings-content {
    background: var(--white);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.cookie-settings-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cookie-settings-group {
    margin-bottom: 25px;
}

.cookie-settings-group h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.cookie-settings-group p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.cookie-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cookie-switch:last-child {
    border-bottom: none;
}

.cookie-switch label {
    font-size: 16px;
    color: var(--dark-text);
    cursor: pointer;
}

.cookie-switch input[type="checkbox"] {
    appearance: none;
    width: 50px;
    height: 26px;
    background: #ddd;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-switch input[type="checkbox"]:checked {
    background: var(--primary-color);
}

.cookie-switch input[type="checkbox"]:before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.cookie-switch input[type="checkbox"]:checked:before {
    transform: translateX(24px);
}

.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.privacy-quick-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 15px;
    display: none;
    z-index: 500;
}

@media (min-width: 1200px) {
    .privacy-quick-nav {
        display: block;
    }
}

.privacy-quick-nav h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.privacy-quick-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-quick-nav li {
    margin-bottom: 8px;
}

.privacy-quick-nav a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.privacy-quick-nav a:hover,
.privacy-quick-nav a.active {
    background: var(--light-bg);
    color: var(--primary-color);
}

.products-hero {
    padding: 80px 0;
    background: var(--gradient-2);
    text-align: center;
}

.products-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #e8f5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .products-hero-title {
        font-size: 36px;
    }
}

.products-hero-description {
    font-size: 22px;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .products-hero-description {
        font-size: 18px;
    }
}

.category-filters {
    padding-top: 60px;
    padding-bottom: 40px;
}

.filters-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'EB Garamond', Georgia, serif;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.filter-btn-active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.filter-btn-active:hover {
    background: var(--primary-dark);
}

.products-section {
    padding-top: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.product-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-btn:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.video-showcase {
    padding: 100px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
}

.video-content {
    padding: 24px;
}

.video-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.video-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.material-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.material-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
}

.material-content {
    flex: 1;
}

.material-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .material-title {
        font-size: 20px;
    }
}

.material-description {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.products-cta {
    padding: 100px 0;
    background: var(--gradient-2);
    text-align: center;
}

.products-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .products-cta-title {
        font-size: 36px;
    }
}

.products-cta-description {
    font-size: 22px;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .products-cta-description {
        font-size: 18px;
    }
}

.products-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.products-cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal-content {
    background: var(--white);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.product-modal-close:hover {
    background: var(--light-bg);
    transform: rotate(90deg);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: var(--light-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.disabled:hover {
    background: var(--white);
    border-color: #ddd;
    color: var(--dark-text);
}

.terms-section {
    padding-top: 80px;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .terms-title {
        font-size: 36px;
    }
}

.terms-update-date {
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
}

.terms-intro {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 40px;
}

.terms-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.terms-section-content {
    margin-bottom: 48px;
}

.terms-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .terms-section-title {
        font-size: 24px;
    }
}

.terms-section-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.terms-list {
    font-size: 17px;
    line-height: 2;
    color: #555;
    padding-left: 24px;
    margin-bottom: 16px;
}

.terms-list li {
    margin-bottom: 8px;
    position: relative;
}

.terms-list li:before {
    content: "•";
    position: absolute;
    left: -24px;
    color: var(--primary-color);
    font-weight: bold;
}

.terms-list strong {
    color: var(--dark-text);
}

.terms-contact {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 12px;
    margin-top: 48px;
}

.terms-contact-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.terms-contact p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.terms-contact strong {
    color: var(--dark-text);
}

.terms-contact-hours {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-top: 16px;
}

.terms-accept-modal {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 350px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 24px;
    z-index: 1000;
    border: 2px solid var(--primary-color);
}

.terms-accept-content {
    text-align: center;
}

.terms-accept-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.terms-accept-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.terms-accept-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.terms-accept-buttons {
    display: flex;
    gap: 10px;
}

.terms-accept-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.terms-accept-btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.terms-accept-btn-primary:hover {
    background: var(--primary-dark);
}

.terms-accept-btn-secondary {
    background: var(--light-bg);
    color: var(--dark-text);
    border: 1px solid #ddd;
}

.terms-accept-btn-secondary:hover {
    background: #e9e9e9;
}

.terms-toc {
    position: fixed;
    left: 20px;
    top: 150px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 20px;
    width: 250px;
    max-height: 70vh;
    overflow-y: auto;
    display: none;
    z-index: 500;
}

@media (min-width: 1200px) {
    .terms-toc {
        display: block;
    }
}

.terms-toc-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-bg);
}

.terms-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-toc-item {
    margin-bottom: 8px;
}

.terms-toc-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.terms-toc-link:hover,
.terms-toc-link.active {
    background: var(--light-bg);
    color: var(--primary-color);
}

.terms-important {
    background: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
}

.terms-important h4 {
    color: #ff8f00;
    font-size: 18px;
    margin-bottom: 10px;
}

.print-terms-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.print-terms-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.download-terms-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.download-terms-btn:hover {
    background: #e85a00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    padding: 80px 20px;
}

.thank-you-container {
    max-width: 700px;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 64px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 36px;
    }
}

.thank-you-message {
    font-size: 22px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .thank-you-message {
        font-size: 18px;
    }
}

.thank-you-info {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .thank-you-info {
        font-size: 16px;
    }
}

.thank-you-info strong {
    color: var(--primary-color);
}

.thank-you-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.thank-you-btn {
    padding: 16px 36px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-family: 'EB Garamond', Georgia, serif;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 576px) {
    .thank-you-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

.thank-you-btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.thank-you-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.thank-you-btn-secondary {
    background: transparent;
    color: var(--primary-color);
}

.thank-you-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.showroom-info {
    margin-top: 60px;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

@media (max-width: 768px) {
    .showroom-info {
        padding: 24px;
        text-align: center;
    }
}

.showroom-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .showroom-title {
        font-size: 20px;
    }
}

.showroom-description {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.showroom-address {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .showroom-address {
        font-size: 16px;
    }
}

.showroom-hours {
    font-size: 16px;
    color: #888;
}

.redirect-counter {
    display: inline-block;
    background: var(--light-bg);
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.redirect-text {
    font-size: 16px;
    color: #666;
    margin-right: 8px;
}

.redirect-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 4px;
}

.thank-you-icon.success {
    animation: successPulse 1.5s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0;
    animation: confettiFall 3s ease forwards;
}

.confetti:nth-child(2n) {
    background: var(--secondary-color);
}

.confetti:nth-child(3n) {
    background: var(--accent-color);
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.form-submit-progress {
    width: 100%;
    height: 4px;
    background: var(--light-bg);
    border-radius: 2px;
    overflow: hidden;
    margin: 20px 0;
}

.form-submit-progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    animation: progressFill 2s ease-in-out forwards;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    margin-top: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-products-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.no-products-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.no-products-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.product-card-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.modal-show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.modal-show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--light-bg);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

@media (max-width: 768px) {
    .modal-body {
        padding: 30px 20px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
}

.modal-image-container {
    border-radius: 12px;
    overflow: hidden;
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.modal-info {
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.modal-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.modal-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .modal-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .modal-price {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .modal-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.modal-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 16px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-input::placeholder {
    color: #999;
}

.modal-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.modal-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.modal-benefits {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.benefit-item {
    margin-bottom: 8px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.modal-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.modal-btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.modal-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.modal-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.modal-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .modal-btn {
        width: 100%;
    }
}

.modal-features {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
}

.modal-features-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.modal-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.feature-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .modal-features {
        padding: 20px;
    }

    .modal-features-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .modal-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 0;
    }

    .contact-item-large {
        flex-direction: column;
    }

    .contact-card {
        padding: 16px;
    }
}