@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html,
body {
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

@media (max-width: 900px) {
    body {
        font-size: 16px;
    }
    .navigation {
        flex-direction: column;
        gap: 10px;
    }
    .header {
        padding: 35px 0;
        display: flex;
        justify-content: center;
    }
}
body::-webkit-scrollbar {
    width: 10px;
    background-color: #5e5e5e;
}
body::-webkit-scrollbar-thumb {
    background-color: #b8e74a;
}
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #a9a9a9;
    background-color: transparent;
}
.header {
    padding: 20px 100px;
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    background-color: #b8e74a;
    transition: top 0.3s;
    z-index: 1000;
    max-width: 1920px;
    margin: 0 auto;
    border-radius: 50px;
}
.navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.header-link, .footer-link {
    text-decoration: none;
    color: #808080;
    font-weight: 900;
    font-size: 20px;
    transition: color 0.3s ease;
}
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.nav-item {
    margin-left: 20px;
}
.nav-link {
    padding: 2px 4px;
    font-weight: 100;
    font-size: 15px;
    text-decoration: none;
    color: #000000;
    border-bottom: 1px solid black;
    border-top: 1px solid transparent;
    border-radius: 10px;
    transition: color 0.3s ease,
                border-top 0.3s ease;
}
.main-content {
    margin-top: 70px;
}
@media (max-width: 768px) {
    .main-content {
        margin-top: 100px;
    }
}
@media (max-width: 550px) {
    .nav-item {
        margin-left: 5px;
        font-size: 14px;
    }
    .main-content {
        margin-top: 100px;
    }
    .nav-link{
        padding: 2px 4px;
    }
}

.name-section {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.name-section-title {
    font-size: 2.5rem;
    color: #333;
    margin: 0 0 20px;
}

.name-section-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .name-section-title {
        font-size: 2rem;
    }
    
    .name-section-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .name-section-title {
        font-size: 1.5rem;
    }
    
    .name-section-text {
        font-size: 0.9rem;
    }
}
.new-arrivals {
    padding: 20px;
    text-align: center;
}

.new-arrivals-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    font-weight: 100;
    text-decoration: underline;
}

.new-arrivals-slider {
    position: relative;
    overflow: hidden;
}

.new-arrivals-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: flex-start;
}

.new-arrivals-card {
    margin: 10px;
    padding: 15px;
    text-align: center;
    flex: 0 0 calc(25% - 20px);
    min-width: 200px;
}

.new-arrivals-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.new-arrivals-card h3 {
    font-size: 1.2em;
    margin: 5px 0;
    font-weight: 200;
}

.new-arrivals-card p {
    color: #000000;
}

.order-btn {
    margin-top: 5px;
    padding: 4px 25px;
    background-color: #b8e74a;
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease,
                color 0.3s ease;
}

.new-arrivals-prev, .new-arrivals-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.218);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
}

.new-arrivals-prev {
    left: 10px;
}

.new-arrivals-next {
    right: 10px;
}

@media (max-width: 768px) {
    .new-arrivals-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .new-arrivals-card {
        flex: 0 0 calc(100% - 20px);
    }
}

.for-you-product-section {
    background-color: #cbcbcb;
    background-position: center;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.for-you-product-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.for-you-arrow-link {
    margin-bottom: 20px;
}

.for-you-arrow-link-btn {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.for-you-product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.for-you-product-card {
    position: relative;
    margin: 10px;
    width: calc(25% - 20px);
    overflow: hidden;
    border-radius: 10px;
}

.for-you-product-card img {
    width: 100%;
    height: auto;
}

.for-you-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.474);
    color: white;
    padding: 10px;
    text-align: center;
}

.for-you-price {
    font-size: 1.2em;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .for-you-product-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .for-you-product-card {
        width: 100%;
    }
}

.brand {
    padding: 20px;
    text-align: center;
}

.brand-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    font-weight: 100;
    text-decoration: underline;
}

.brand-slider {
    position: relative;
    overflow: hidden;
}

.brand-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: flex-start;
}

.brand-card {
    margin: 10px;
    padding: 15px;
    text-align: center;
    flex: 0 0 calc(25% - 20px);
    min-width: 200px;
}

.brand-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.brand-card h3 {
    font-size: 1.2em;
    margin: 5px 0;
    font-weight: 200;
}

.brand-card p {
    color: #000000;
}

.brand-prev, .brand-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.218);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
}

.brand-prev {
    left: 10px;
}

.brand-next {
    right: 10px;
}

.cosmetics-store {
    background-image: url('../img/for-you-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    color: rgb(255, 255, 255);
    text-align: left;
}

.store-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.store-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.submit-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #23543c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .store-title {
        font-size: 1.5em;
    }

    .store-description {
        font-size: 1em;
    }

    .submit-button {
        padding: 8px 16px;
    }
}

.info-brand-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.info-brand-block {
    flex: 1 1 45%;
    display: flex;
    margin: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.info-brand-content {
    padding: 20px;
    flex: 1;
}

.info-brand-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.info-brand-description {
    font-size: 1em;
}

.info-brand-image {
    width: 40%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .info-brand-block {
        flex-direction: column;
    }

    .info-brand-image {
        width: 100%;
    }
}

.footer {
    background-color: #b8e74a;
    color: white;
    padding: 20px 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info {
    text-align: center;
    margin-bottom: 20px;
}

.contact-footer {
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    margin: 0 15px;
    padding: 2px 4px;
    border-bottom: 1px solid black;
    border-top: 1px solid transparent;
    border-radius: 10px;
    transition: color 0.3s ease,
                border-top 0.3s ease;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-links a {
        margin: 5px 0;
    }
}

.reviews-section-title {
    text-align: center;
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
}
.slider {
    margin-top: 15px;
      display: flex;
      gap: 15px;
      transition: transform 0.5s ease-in-out;
  }
  .review {
      min-width: 45%;
      width: 100px;
      padding: 5px;
      border: 1px solid rgb(234, 234, 234);
  }

.review p {
    font-size: 14px;
}
  
  .author {
      font-weight: bold;
      color: #000000;
      margin-top: 5px;
      font-size: 12px;
  }
  .buttons {
      margin-top: 10px;
      display: flex;
      justify-content: center;
  }
  .btn {
        min-width: 60px;
        padding: 5px 10px;
        margin: 5px;
        border: none;
        color: black;
        cursor: pointer;
        background-color: #eaeaea;
        transition: background-color 0.3s ease;
  }
  
  .review img {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 5px;
}
.reviews-section{
    overflow: hidden;
}

.comprehensive-care {
    margin-top: 10px;
    padding: 20px;
    background-color: #f9f9f9;
}

.comprehensive-section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.comprehensive-blocks-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.comprehensive-image-block {
    flex: 1 1 30%;
    margin: 10px;
}

.comprehensive-care-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.comprehensive-text-block {
    flex: 1 1 55%;
    margin: 10px;
}

.comprehensive-text-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.comprehensive-product-title {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.comprehensive-benefits-list {
    list-style-type: disc;
    padding-left: 20px;
}

.comprehensive-benefits-list li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .comprehensive-blocks-container {
        flex-direction: column;
    }

    .comprehensive-image-block, .comprehensive-text-block {
        flex: 1 1 100%;
    }
    .review img {
        width: 70%;
    }
}

.office-address {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.address-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.map-container {
    margin: 0 auto;
    max-width: 100%;
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .map-iframe {
        height: 300px;
    }
}

.mini-about-us {
    padding: 20px;
    text-align: center;
}

.mini-about-section-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.mini-about-cards-container {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between;
}

.mini-about-card {
    flex: 1 1 22%;
    margin: 10px; 
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.mini-about-card-image {
    width: 100%; 
    height: auto;
    border-radius: 8px;
}

.mini-about-card-title {
    font-size: 1em;
    margin: 10px 0;
}

.mini-about-card-text {
    font-size: 0.8em;
    margin-bottom: 15px;
}

.mini-about-learn-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d5d5d5;
    color: #000000;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .mini-about-card {
        flex: 1 1 100%;
    }
}

.privacy-content {
    margin-top: 80px;
    padding: 20px;
    line-height: 1.6;
}

.privacy-content h1 {
    text-align: center;
    color: #333;
}

.compliance-section, .data-collection-section, .transparency-section, .user-rights-section {
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
}

.compliance-title, .data-collection-title, .transparency-title, .user-rights-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.compliance-text, .data-collection-text, .transparency-text, .user-rights-text {
    font-size: 1em;
    color: #555;
}

.contact-email {
    color: #007BFF;
    text-decoration: none;
}

.contact-email:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 10px;
    }

    .compliance-title, .data-collection-title, .transparency-title, .user-rights-title {
        font-size: 1.3em;
    }

    .compliance-text, .data-collection-text, .transparency-text, .user-rights-text {
        font-size: 0.9em;
    }
}

.terms-content {
    margin-top: 80px;
    padding: 20px;
    line-height: 1.6;
}

.terms-content h1 {
    text-align: center;
    color: #333;
}

.legal-compliance-section, .user-responsibilities-section, .dispute-resolution-section, .contact-information-section {
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
}

.legal-compliance-title, .user-responsibilities-title, .dispute-resolution-title, .contact-information-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.legal-compliance-text, .user-responsibilities-text, .dispute-resolution-text, .contact-information-text {
    font-size: 1em;
    color: #555;
}

.contact-email {
    color: #007BFF;
    text-decoration: none;
}

.contact-email:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-content {
        padding: 10px;
    }

    .legal-compliance-title, .user-responsibilities-title, .dispute-resolution-title, .contact-information-title {
        font-size: 1.3em;
    }

    .legal-compliance-text, .user-responsibilities-text, .dispute-resolution-text, .contact-information-text {
        font-size: 0.9em;
    }
}

.form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.heading-form {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.box {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.box:focus {
    border-color: #31b67a;
    outline: none;
}
.contact-form__checkbox {
    margin-right: 10px;
}

.btn-form {
    width: 100%;
    padding: 12px;
    background-color: #dcdcdc;
    border: none;
    color: #000000;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}
.privacy-link {
    color: #27a25c;
    text-decoration: none;
}

@media (max-width: 768px) {
    .form {
        padding: 15px;
    }

    .heading-form {
        font-size: 1.5em;
    }

    .box {
        padding: 10px;
        font-size: 0.9em;
    }

    .btn-form {
        padding: 10px;
        font-size: 0.9em;
    }
}

.discounts-content {
    margin-top: 80px;
}

.discounts-heading {
    text-align: center;
    font-size: 2.5em;
    color: #525252;
    margin: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .discounts-heading {
        font-size: 2em;
    }

    .discounts-content {
        padding: 30px 15px;
    }
}

.discounts-product-cards {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; 
    margin: 20px;   
}

.discounts-card {
    padding: 20px;              
    margin: 10px;             
    text-align: center;      
}

.discounts-small-card {
    flex: 1 1 25%;           
    max-width: 25%;       
}

.discounts-large-card {
    flex: 1 1 50%;         
    max-width: 50%;           
}

.discounts-product-image {
    width: 100%;                
    height: auto;          
    border-radius: 8px;     
}

.discounts-product-title {
    font-size: 1.5em;      
    margin: 10px 0;  
}

.discounts-old-price {
    color: lightgray;          
    text-decoration: line-through;
}

.discounts-new-price {
    color: black;         
    font-weight: bold;       
}

@media (max-width: 768px) {
    .discounts-product-cards {
        flex-direction: column;  
    }
    
    .discounts-card {
        flex: 1 1 100%;           
        max-width: 100%;         
    }
}

.bonus-system {
    padding: 20px;
    text-align: center;
    margin-top: 80px;
}

.bonus-system__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.bonus-system__blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bonus-system__block {
    border-radius: 8px;
    margin: 10px;
    padding: 20px;
    width: calc(50% - 40px);
    transition: transform 0.3s ease;
}

.bonus-system__block-title {
    font-size: 2rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    color: #666;
}

.bonus-system__block-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.bonus-system__button {
    display: inline-block;
    padding: 5px 40px;
    background-color: #c8c8c8;
    color: #000000;
    text-decoration: none;
    transition: background-color 0.3s;
}

@media (max-width: 768px) {
    .bonus-system__block {
        width: 100%;
    }
}

.bonus-system__info {
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.bonus-system__info-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.bonus-system__info-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #555;
}

@media (max-width: 768px) {
    .bonus-system__info {
        padding: 15px;
    }

    .bonus-system__info-title {
        font-size: 1.5rem;
    }

    .bonus-system__info-text {
        font-size: 0.9rem;
    }
}

.stores-content {
    margin-top: 80px;
}
.store-info {
    padding: 20px;
    text-align: center;
}

.store-info__title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.store-info__card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.store-info__text {
    flex: 1;
    padding-right: 20px;
}

.store-info__image {
    flex: 0 0 70%;
}

.store-info__img {
    width: 100%;
    border-radius: 8px;
}

.stores-contact-footer {
    display: inline-block;
    margin-top: 10px;
    color: #515151;
    text-decoration: none;
}

@media (max-width: 768px) {
    .store-info__card {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-info__image {
        width: 100%;
        margin-top: 20px;
    }
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.about-subtitle {
    font-size: 22px;
    color: #2980b9;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-natural-cosmetics-overview p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555555;
}

.about-product-categories {
    list-style-type: disc;
    margin-left: 20px;
}

.about-product-categories li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .about-content {
        padding: 15px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-subtitle {
        font-size: 20px;
    }

    .about-natural-cosmetics-overview p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 10px;
    }

    .about-title {
        font-size: 22px;
    }

    .about-subtitle {
        font-size: 18px;
    }

    .about-natural-cosmetics-overview p {
        font-size: 14px;
    }
}

.catalog-content {
    margin-top: 80px;
}

.catalog-section {
    padding: 20px;
    text-align: center;
}

.catalog-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

.catalog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.catalog-card {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 150px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    overflow: hidden;
    border-radius: 8px;
}

.catalog-card.shampoo {
    background-image: url('../img/category/category-1.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.shower-gel {
    background-image: url('../img/category/category-2.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.creams {
    background-image: url('../img/category/category-3.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.lotions {
    background-image: url('../img/category/category-4.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.perfume {
    background-image: url('../img/category/category-5.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.lipsticks {
    background-image: url('../img/category/category-6.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.nail-polish {
    background-image: url('../img/category/category-7.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.hair-dye {
    background-image: url('../img/category/category-10.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.toothpaste {
    background-image: url('../img/category/category-11.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.deodorants {
    background-image: url('../img/category/category-12.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.catalog-card h3 {
    position: relative;
    z-index: 2;
    font-size: 20px;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .catalog-title {
        font-size: 28px;
    }

    .catalog-card {
        height: 120px;
    }

    .catalog-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .catalog-title {
        font-size: 24px;
    }

    .catalog-card {
        height: 100px;
    }

    .catalog-card h3 {
        font-size: 16px;
    }
}

.category-content {
    margin-top: 80px;
}

.category-heading {
    text-align: center;
    font-size: 2.5em;
    color: #525252;
    margin: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .category-heading {
        font-size: 2em;
    }

    .category-content {
        padding: 30px 15px;
    }
}

.category-product-cards {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; 
    margin: 20px;   
}

.category-card {
    padding: 20px;              
    margin: 10px;             
    text-align: center;      
}

.category-small-card {
    flex: 1 1 25%;           
    max-width: 25%;       
}

.category-large-card {
    flex: 1 1 50%;         
    max-width: 50%;           
}

.category-product-image {
    width: 100%;                
    height: auto;          
    border-radius: 8px;     
}

.category-product-title {
    font-size: 1.5em;      
    margin: 10px 0;  
}

.category-old-price {
    color: lightgray;          
    text-decoration: line-through;
}

.category-new-price {
    color: black;         
    font-weight: bold;       
}

@media (max-width: 768px) {
    .category-product-cards {
        flex-direction: column;  
    }
    
    .category-card {
        flex: 1 1 100%;           
        max-width: 100%;         
    }
}

@media (min-width: 1025px) {
    .header-link:hover, .footer-link:hover {
        color: #000000;
    }
    .nav-link:hover, .footer-links a:hover {
        color: #848484;
        border-top: 1px solid black;
    }
    .order-btn:hover {
        background-color: #c8d8a1;
        color: rgb(61, 61, 61);
    }
    .for-you-arrow-link-btn:hover {
        color: #000000;
    }
    .submit-button:hover {
        background-color: #21744c;
    }
    .contact-footer:hover {
        color: rgb(174, 174, 174);
    }
    .btn:hover {
        background-color: #b8e74a;
  }
    .mini-about-learn-more-button:hover {
        background-color: #b8e74a;
    }
    .btn-form:hover {
        background-color: #b8e74a;
    }
    .privacy-link:hover {
        text-decoration: underline;
    }  
    .bonus-system__button:hover {
        background-color: #b8e74a;
    }
    
    .bonus-system__block:hover .bonus-system__block-title {
        transform: scale(1.6);
    }
    .bonus-system__block:hover .bonus-system__block-image {
        transform: rotate(-16deg);
    }
    .stores-contact-footer:hover {
        text-decoration: underline;
    }
    .catalog-card:hover::before {
        background-color: rgba(0, 0, 0, 0);
    }
}