* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jockey One', sans-serif;
    font-size: 1rem;
    font-weight: 400;

}

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

a {
    color: #111;
    text-decoration: none;
}

a:hover {
    color: #111;
    text-decoration: none;
}

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

.modal-window {
    display: block;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    max-width: 500px;
    width: 95%;
    padding: 30px;
    font-size: 1rem;
}

.modal-window img {
    max-width: 300px;
}

.modal-window h2 {
    font-size: 25px;
    margin-bottom: 1.7rem;
    line-height: 1.3em;
    clear: both;
}

.modal-buttons {
    margin: 20px auto;

}

.modal-button {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 20px;
    color: #ff6c2d;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6em;
    letter-spacing: 1px;
    cursor: pointer;
}

#yes {
    background: #ff6c2d;
    color: #fff !important;
}

#no {
    background: #fff;
    color: #ff6c2d !important;
}

#no:hover {
    color: green !important;
}

/* Header Styles */
header {
    background: #fff;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.header-email {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #111;
}

.header-email img {
    width: 16px;
    height: 16px;
}

.header-logo img {
    width: 120px;
    height: auto;
}

.header-cart {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-price {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.cart-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    fill: #111;
}

.vertical-line {
    width: 1px;
    height: 24px;
    background: #111;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.header-nav {
    padding: 15px 50px;
    border-top: 1px solid #e0e0e0;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 15px 0;
    line-height: 50px;
    font-family: 'Jockey One', sans-serif;
}

.header-nav a {
    text-decoration: none;
    color: #111;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1.3rem;
    padding: 0 20px;
    font-weight: 200;
}

.header-nav a:hover,
.header-nav a.active {
    color: #7ed957;
}

/* Hamburger & Mobile Nav Styles */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    background: #7CC68D;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    border-radius: 1px;
    margin-left: 20px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.nav-close {
    display: none;
    margin-left: auto;
    width: 17px;
    height: 17px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
}

@media (max-width: 922px) {
    .header-email {
        display: none;
    }

    .vertical-line {
        display: none;
    }

    .account-icon {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: 5px;
    }

    .header-nav-top {
        display: block;
        position: fixed;
        top: 0;
        transform: translateX(100%);
        z-index: 1000;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.3);
        transition: transform 0.1s ease-out;
    }

    .header-nav-top.active {
        transition: transform 0.1s ease-in;
        transform: translateX(0);
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 90%;
        height: 100vh;
        background: #fff;
        z-index: 2000;

    }

    .nav-close {
        display: flex;
    }

    .header-cart {
        gap: 5px;
    }

    .header-logo img {
        width: 100px;
    }

    .header-top {
        display: flex;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        align-items: stretch;
    }

    .header-nav ul li {
        border-bottom: 1px solid #f0f0f0;
        min-height: 50px;
        padding: 10px 20px;
        font-size: 1rem;
    }

    .header-nav a {
        display: block;
        font-size: 1rem;
        color: #111;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        border-top: none;
        padding: 0;
    }

    .header-nav a.active {
        color: #7CC68D;
    }

    .header-nav {
        padding: 0;
    }

    .header-top {
        padding: 15px 20px;
    }
}



/* Slider Section */
.slider-section {
    padding: 60px 0;

}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.slider-wrapper {
    flex: 1;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    min-width: 100%;
    display: none;
}

.slider-slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    align-items: center;
}

.slide-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 40px;
    border-radius: 8px;
    background: #f5f5f5;
}

.slide-category {
    font-size: 18px;
    color: #111111;
    line-height: 1.2rem;
    margin-bottom: 15px;
    clear: both;
    font-family: 'Jockey One', sans-serif;

}

.slide-title {
    font-size: 48px;
    color: #111;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.1;

}

.slide-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.slide-description {
    font-size: 18px;
    color: #111;
    line-height: 1.6;
    margin-bottom: 30px;
}

.slide-button {
    background: #7CC68D;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    width: max-content;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}



.slide-button:hover {
    background: #6bc745;
}

.slide-image {
    background: #f5f5f5;
    padding: 36px;
    border-radius: 8px;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

figcaption {
    margin-right: auto;
    font-family: none;
    font-size: 20px;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.slider-arrow {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    opacity: 0.7;
}

.slider-arrow svg {
    width: 100%;
    height: 100%;
    fill: #999;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #111;
}

/* Responsive */
@media (max-width: 768px) {

    .width {
        padding: 0 20px !important;
    }

    /* Slider responsive */
    .slider-section {
        padding: 30px 0;
    }

    .slider-container {
        gap: 10px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .slide-text {
        padding: 30px 20px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 24px;
    }

    .slide-description {
        font-size: 14px;
    }

    .slide-image {
        padding: 20px;
    }
}

/* News Section Styles */
.news-section {
    padding: 80px 0;
    text-align: center;
}

.news-header {
    margin-bottom: 50px;
}

.news-logo-icon {
    width: 50px;
    margin-bottom: 15px;
}

.news-header h1 {
    font-size: 2.125rem;
    color: #111;
    font-style: bold;
    font-family: 'Jockey One', sans-serif;
    line-height: 1.3em;
    clear: both;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    background: #f8f8f8;
    border-radius: 12px;

    margin-bottom: 15px;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 1em;
    box-shadow: none;
}

.product-badge {
    font-size: 14px;
    color: #999;
}

.product-info h3 {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 400;
}

.product-rating {
    color: #111;
    font-size: 14px;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.3rem;
    color: #111;
    font-weight: 600;
}

/* Features Section Styles */
.features-section {
    padding: 60px 0 100px;
    margin: 20px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: #111;
    color: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
}

.feature-icon {
    width: 35px;
    margin-bottom: 25px;
    filter: invert(1);
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.feature-box p {
    font-size: 18px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
}

.feature-box strong {
    color: #fff;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

/* Banner Section Styles */
.banner-section {
    padding: 80px 0;
    text-align: center;
}

.banner-header {
    margin-bottom: 50px;
}

.banner-header-icon {
    width: 50px;
    margin-bottom: 20px;
}

.banner-header h2 {
    font-size: 2.125rem;
    color: #111;

    margin: 0 auto;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

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

.banner-card {
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    overflow: hidden;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.card-icon {
    width: 35px;
    position: relative;
    z-index: 2;
    filter: invert(1);
}

.card-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.banner-btn {
    width: 100%;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-btn.white {
    background: #fff;
    color: #111;
}

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

.banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1100px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }

    .banner-card {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .banner-header h2 {
        font-size: 1.6rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }
}

/* Promo Cards Section Styles */
.promo-cards-section {
    padding: 70px 20px 100px;
    background: #f8f8f8;
}

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

.promo-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-content h3 {
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.2;
}

.promo-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.promo-btn {
    background: #7CC68D;
    color: #fff;
    border: none;
    padding: 17px 34px;
    border-radius: 5px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    line-height: 1em;
}


.promo-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
}

.promo-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-card {
        padding: 30px;
    }
}

/* Articles Section Styles */
.articles-section {
    padding: 80px 0;
    text-align: center;
}

.articles-header {
    margin-bottom: 50px;
}

.articles-header-icon {
    width: 50px;
    margin-bottom: 20px;
}

.articles-header h2 {
    font-size: 2.5rem;
    color: #111;
    letter-spacing: 0.5px;
}

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

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 250px;
    background: #f1f1f1;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-content h3 {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 500;
}

.article-content p {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    flex-grow: 1;
}

.article-btn {
    background: #7CC68D;
    color: #fff;
    border: none;
    padding: 17px 34px;
    border-radius: 5px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    line-height: 1em;
}


@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Info and FAQ Section Styles */
.info-faq-section {
    padding: 80px 0;
}

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

.info-columns {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.info-image {
    flex: 1;
    text-align: left;
}

.info-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-image .caption {
    margin-top: 10px;
    font-size: 14px;
    color: #888;
}

.info-text {
    flex: 1;
}

.info-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.faq-container {
    background: #f9f9f9;
    padding: 20px 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    color: #111;
}

.faq-icon {
    font-size: 20px;
    color: #888;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.conclude-section {
    text-align: left;
}

.conclude-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #111;
}

.conclude-section p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 900px) {
    .info-columns {
        flex-direction: column;
    }
}

/* Brands Advantages Section Styles */
.brands-advantages {
    padding: 60px 0;
}

.brands-main-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #111;
}

.brand-item {
    margin-bottom: 40px;
}

.brand-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #111;
}

.brand-details {
    list-style: none;
    padding-left: 0;
}

.brand-details li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-left: 20px;
}

.brand-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #111;
    font-weight: bold;
}

.brand-details strong {
    color: #111;
    font-weight: 600;
}

.brand-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.expanded-content {
    display: none;
}

.expanded-content.show {
    display: block;
}

.brands-more {
    text-align: center;
    margin-top: 50px;
}

.brands-more a {
    border: 1px solid rgb(17, 17, 17, 0.3);
    color: #111;
    text-decoration: none;
    font-size: 16px;
    padding: 7px 25px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.brands-more a:hover {
    color: #000;
}

@media (max-width: 768px) {
    .brands-main-title {
        font-size: 1.8rem;
    }

    .brand-title {
        font-size: 1.5rem;
    }
}

/* Site Footer Styles */
.site-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
    margin-top: 60px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-logo {
    width: 60px;
    filter: invert(1);
    opacity: 0.8;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    color: #555;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }
}