html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button,
input {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #edecf2;
}

.heading-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1a1a1a;
}

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

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-wrapper.loader-hidden {
    display: none;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid #eaeaea;
    border-top: 5px solid #222;
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-size: 1.2rem;
    color: #222;
    font-weight: 600;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.main-header {
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.desktop-nav {
    display: flex;
}

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

.nav-item-link {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav-item-link:hover {
    color: #fff;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: #000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.menu-open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cross-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #fff;
}

.cross-line-1 {
    transform: rotate(45deg);
}

.cross-line-2 {
    transform: rotate(-45deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-section {
    background-color: #dde4fa;
    padding: 100px 0;
    border-bottom: 1px solid #eaeaea;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: #111;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
}

.products-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #111;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
}

.product-img {
    width: 100%;
    height: 280px;
    background-color: #f1f1f1;
    object-fit: contain;
    padding: 10px;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.product-price-short {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-desc-short {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-primary {
    display: inline-block;
    padding: 12px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    margin-top: auto;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-back {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-back:hover {
    background-color: #000;
    color: #fff;
}

.reviews-section {
    background-color: #f1f1f1;
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #000;
}

.review-text {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.review-author {
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.about-section {
    padding: 100px 0;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #555;
    text-align: center;
}

.about-stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.main-footer {
    background-color: #111;
    color: #ccc;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.8;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.footer-link:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #777;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background-color: #fff;
    width: 90%;
    max-width: 650px;
    border-radius: 4px;
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
}

.modal-title-text {
    font-size: 1.4rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #000;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    color: #444;
    font-size: 0.95rem;
}

.modal-param {
    margin-bottom: 15px;
}

.modal-strong-text {
    font-weight: bold;
    color: #000;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    z-index: 4000;
    display: flex;
    justify-content: center;
    border-top: 3px solid #333;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
    padding: 0 20px;
}

.cookie-text {
    font-size: 0.9rem;
    color: #ccc;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.cookie-accept {
    background-color: #fff;
    color: #000;
}

.cookie-reject {
    background-color: #333;
    color: #fff;
}

.product-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.product-detail-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.product-detail-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.product-gallery-img {
    width: 100%;
    background-color: #f9f9f9;
    object-fit: contain;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.main-img {
    height: 450px;
    padding: 20px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.thumb {
    height: 180px;
    padding: 10px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.thumb:hover {
    opacity: 0.8;
}

.product-detail-info {
    flex: 1.2;
}

.product-detail-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #111;
}

.product-detail-price {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 25px;
    font-weight: 700;
}

.product-detail-desc {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.detail-list {
    list-style-type: none;
    margin-bottom: 30px;
}

.detail-item {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #444;
}

.detail-item strong {
    color: #111;
}

@media (max-width: 992px) {

    .products-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-flex {
        flex-direction: column;
    }

    .product-detail-images {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .products-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .about-stats-grid {
        flex-direction: column;
        gap: 30px;
    }
}