:root {
    --font-primary: 'Inter',
    sans-serif;
    --text-color: #000;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    outline: none !important;
}

*:hover,
*:focus {
    outline: none !important;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 16px;
    /* overflow: hidden; */
}

body {
    min-width: 320px;
    position: relative;
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.35;
    color: var(--text-color);
    background: #fff;
    opacity: 1;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.wrapper {
    overflow: hidden;
    width: 100%;
}

.wrapper-in {
    overflow: hidden;
}

.container,
.wrap {
    max-width: 1170px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: auto;
    margin-left: auto;
}

input[type="search"]::-ms-clear {
    width : 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

a,
button {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    background: none;
    padding: 0;
    border: none;
    font-weight: inherit;
    line-height: inherit;
    font-size: inherit;
    cursor: pointer;
}

a {
    transition: color 0.3s ease 0s;
}

a:hover,
a:focus {
    color: #FFB607;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-header {
    padding: 10px;
    font-size: 24px;
}

.logo {
}

.logo img {
    height: 60px;
}

.site-main {
    padding: 15px 0;
}

.page-content {
    text-align: center;
}

.page-content img {
    max-height: 82vh;
    margin: 0 auto;
}

.site-footer {
    text-align: center;
    font-size: 18px;
    padding: 15px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/bg_tinified.png');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    margin-top: 0.2em;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-logo img {
    max-height: 200px;
    width: auto;
}

/* Products Section */
.products {
    padding: 60px 5%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #e52d27;
    bottom: -10px;
    left: 20%;
}

.product-catalog {
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.product-catalog img {
    max-width: 100%;
    display: block;
}

.promotional-images {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.promotional-item {
    flex: 1 0 0;
    width: 100%;
    max-width: 100%;
    padding: 15px;
}

.promotional-image {
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.promotional-image img {
    max-width: 100%;
    display: block;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-form {
    flex-basis: 48%;
}

.map {
    flex-basis: 48%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

form textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #e52d27;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #c41e1a;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 5% 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo, .footer-contact, .footer-social {
    flex-basis: 30%;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #e52d27;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background-color: #fff;
    padding: 80px 30px;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }
    
    .mobile-header {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .contact-form, .map {
        flex-basis: 100%;
    }
    
    .map {
        margin-top: 30px;
        height: 300px;
    }
    
    .footer-logo, .footer-contact, .footer-social {
        flex-basis: 100%;
        margin-bottom: 30px;
    }
}