/*=== Import font Roboto ===*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*=== Import remix-icons ===*/
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css');

html {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}


body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    font-size: 16px;
    background-color: #f1f1f1;
}

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

.active {
    border-bottom: 1px #efad21 solid;
    color: #efad21;
}

/*=== begin Header ===*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    position: fixed;
    left: 0;
    width: 100%;
    height: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1000;
}


.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
}

.header__burger-btn {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    z-index: 2;
    margin-left: 20px;
}

.header__burger-btn span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: black;
    left: 5px;
    transition: transform .5s, opacity .5s, background-color .5s;
}

.header__burger-btn span:nth-child(1) {
    transform: translateY(-10px);
}

.header__burger-btn span:nth-child(3) {
    transform: translateY(10px);
}

.header.open .header__burger-btn span {
    background-color: white;
}

.header.open .header__burger-btn span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.header.open .header__burger-btn span:nth-child(2) {
    opacity: 0;
}

.header.open .header__burger-btn span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.menu__list {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

.menu__item:not(:last-child) {
    margin-right: 20px;
}

.menu__link {
    font-size: 18px;
    font-weight: 500;
}
.menu__item:hover {
    color: #efad21;
    transition: color .4s ease;
}

@media (max-width: 992px) {
    .header__burger-btn {
        display: block;
    }

    .menu {
        position: absolute;
        left: -500px;
        top: 0;
        width: 400px;
        background-color: #efad21;
        padding: 75px 20px 20px 80px;
        transition: transform .5s;
    }

    .menu__list {
        display: block;
        height: 100vh;
    }

    .menu__link {
        color: white;
        font-size: 21px;
        display: block;
        padding: 10px 0;
    }

    .active {
        border-bottom: 1px #000000 solid;
        color: #000000;
    }

    .header.open .menu {
        transform: translateX(100%);
    }
}

.header__logo {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
    padding-left: 30px;
}

.header__logo a {
    text-decoration: none;
    color: #efad21;
}

.header__cart {
    padding-right: 30px;
}

.header__cart-container {
    background-color: #efad21;
    padding: 5px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
}

.header__cart--count {
    background-color: #ffffff;
    color: #efad21;
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 25px;
    font-size: 13px;
}

.header__cart-container i {
    padding: 0;
}

.cart:hover {
    cursor: pointer;
}

/*=== end Header ===*/


/*=== begin home main ===*/
main {
    padding-top: 90px;
}

.main {
    padding-bottom: 30px;
}

.main__title {
    padding: 20px 0 0 10px;
    margin: 0;
    font-size: 25px;
    font-weight: 500;
}

.main__wrap {
    display: flex;
    flex-wrap: wrap;
}

.main__product {
    max-width: 360px;
    overflow: hidden;
    background-color: #ffffff;
    padding: 10px;
    -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}

.main__product:hover .main__product-img {
    transform: scale(1.1);
    transition: transform .3s ease;
}

.main__product-img {
    display: flex;
    margin: 0 auto;
    max-width: 270px;
    height: auto;
}

.main__product-title {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin: 10px;
}

.main__product-description {
    color: #878686;
}

.main__product-sell {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main__product-price {
    color: #efad21;
    font-weight: 800;
}

.btn-row {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    width: 110px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    margin: 0 5px;
}

.btn:hover {
    background-color: #f0f0f0;
    border-radius: 50%;
}

p.bold {
    font-weight: 400;
    padding: 0;
    margin: 0;
}

/*=== end Main Home Page ===*/

/*=== begin Footer ===*/
.footer {
    padding-top: 20px;
    padding-bottom: 30px;
    background-color: #9b9b9b;
    color: #ffffff;
}

.footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer__payment {
    display: flex;
    flex-direction: column;
}

.footer__payment-methods {
    display: flex;
    gap: 20px;
}

.footer__payment-methods img {
    width: 100%;
    height: 50px;
}

.copyright {
    display: block;
    text-align: center;
    padding-top: 20px;
}

/*=== begin Page Payment and Delivery ===*/
.delivery__hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.delivery__hero-content {
    flex: 2;
}

.delivery__hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.delivery__hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.delivery__title {
    font-size: 36px;
    color: #efad21;
    margin-bottom: 20px;
}

.delivery__text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.delivery__section {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.delivery__section-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.delivery__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.delivery__column-title {
    font-size: 20px;
    color: #ff7b00;
    margin-bottom: 15px;
}

.delivery__list {
    list-style: none;
    padding-left: 20px;
}

.delivery__list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.delivery__list-item:before {
    content: "•";
    color: #ff7b00;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.delivery__section--payment {
    background-color: #f9f9f9;
}

.delivery__payment {
    display: flex;
    align-items: center;
    gap: 40px;
}

.delivery__payment-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.delivery__payment-image img {
    width: 100%;
    height: auto;
    display: block;
}

.delivery__payment-content {
    flex: 1;
}

.delivery__payment-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.delivery__note {
    font-size: 14px;
    color: #777;
    margin-top: 20px;
    font-style: italic;
}

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

    .delivery__columns {
        grid-template-columns: 1fr;
    }

    .delivery__payment {
        flex-direction: column;
    }

    .delivery__title {
        font-size: 30px;
    }

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

@media (max-width: 480px) {
    .delivery__title {
        font-size: 26px;
    }

    .delivery__section {
        padding: 20px;
    }

    .delivery__list-item {
        font-size: 15px;
    }
}
/*=== end Page Payment and Delivery ===*/


/*=== end Page wholesale ===*/
.wholesale {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.wholesale__header {
    text-align: center;
    margin-bottom: 10px;
}

.wholesale__title {
    font-size: 42px;
    color: #efad21;
    margin-bottom: 15px;
    margin-top: 0;
}

.wholesale__intro {
    font-size: 18px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.wholesale__contact-banner {
    background-color: #fff8f0;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 15px;
    text-align: center;
}

.contact-banner__content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-banner__text {
    font-size: 18px;
    color: #343a40;
    margin-bottom: 15px;
}

.contact-banner__links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-banner__link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff7b00;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-banner__link:hover {
    color: #e56b00;
}

.wholesale__delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #6c757d;;
}

.wholesale__delivery i {
    color: #ff7b00;
    font-size: 20px;
}

.wholesale__subtitle {
    font-size: 28px;
    color: #343a40;
    margin: 0 0 30px 0;
    text-align: center;
}

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

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.benefit-card__icon {
    font-size: 32px;
    color: #ff7b00;
    margin-bottom: 20px;
}

.benefit-card__title {
    font-size: 20px;
    color: #343a40;
    margin-bottom: 15px;
}

.benefit-card__text {
    font-size: 16px;
    color: #6c757d;
    line-height: 24px;
}

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

.step {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step__number {
    width: 40px;
    height: 40px;
    background-color: #ff7b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.step__title {
    font-size: 18px;
    color: #343a40;
    margin-bottom: 10px;
}

.step__text {
    font-size: 15px;
    color: #6c757d;
    line-height: 22px;
}

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

.cta-button {
    background-color: #ff7b00;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background-color: #e56b00;
}

@media (max-width: 900px) {
    .benefits-grid, .steps {
        grid-template-columns: 1fr;
    }

    .wholesale__title {
        font-size: 36px;
    }

    .contact-banner__links {
        flex-direction: column;
        gap: 15px;
    }

    .contact-banner__link {
        justify-content: center;
    }
}
/*=== end Page wholesale ===*/


/*=== begin Page Useful ===*/

.useful-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border-radius: 20px;
    padding: 40px;
}

.useful-hero__content {
    flex: 2;
}

.useful-hero__image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.useful-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.useful-hero__image:hover img {
    transform: scale(1.03);
}

.useful-hero__title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.useful-hero__text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Карточки с информацией */
.useful-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.useful-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.useful-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.useful-card__icon {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.7;
    color: #efad21;
}

.useful-card__title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.useful-card__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff9a3c;
}

.useful-card__list {
    list-style: none;
    padding-left: 0;
}

.useful-card__item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.useful-card__item:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9a3c;
    font-weight: bold;
}

.useful-card__footer {
    font-size: 15px;
    color: #777;
    margin-top: 20px;
    font-style: italic;
}

/* Специальные стили для карточек */
.useful-card--benefits {
    border-top: 5px solid #6ab04c;
}

.useful-card--popular {
    border-top: 5px solid #f0932b;
}

.useful-card--about {
    border-top: 5px solid #686de0;
}

/* Витамины */
.vitamin {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #ff9a3c;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    margin: 0 2px;
}

@media (max-width: 900px) {
    .useful-hero {
        flex-direction: column;
        padding: 30px;
    }

    .useful-hero__title {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .useful-hero {
        padding: 25px;
    }

    .useful-hero__title {
        font-size: 30px;
    }

    .useful-info {
        grid-template-columns: 1fr;
    }

    .useful-card {
        padding: 25px;
    }
}
/*=== end Page Useful ===*/


/*=== begin Page Reviews ===*/
.reviews {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.reviews__header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews__title {
    font-size: 56px;
    color: #efad21;
    margin-bottom: 15px;
}

.reviews__description {
    font-size: 16px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.reviews__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.review-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-card__rating {
    color: #ff7b00;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.review-card__text {
    font-size: 16px;
    color: #343a40;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.review-card__text::before {
    content: '"';
    font-size: 32px;
    color: rgba(255, 123, 0, 0.1);
    position: absolute;
    left: -10px;
    top: -15px;
    line-height: 1;
}

.review-card__meta {
    font-size: 15px;
    color: #6c757d;
    text-align: right;
    font-style: italic;
}

.review-card__language-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff7b00;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 13px;
    text-transform: uppercase;
}

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

    .reviews__title {
        font-size: 25px;
    }
}
/*=== end Page Reviews ===*/


/*=== begin Page Contacts ===*/
.contacts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contacts__header {
    text-align: center;
    margin-bottom: 50px;
}

.contacts__title {
    font-size: 40px;
    color: #343a40;
    margin-bottom: 15px;
}

.contacts__divider {
    width: 80px;
    height: 3px;
    background-color: #ff7b00;
    margin: 0 auto;
}

.contacts__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contacts__info {
    display: grid;
    gap: 20px;
}

.contacts__map {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card {
    display: flex;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.contact-card__icon {
    font-size: 24px;
    color: #ff7b00;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 123, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card__content {
    flex: 1;
}

.contact-card__title {
    font-size: 20px;
    color: #343a40;
    margin-bottom: 10px;
}

.contact-card__text {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 5px;
    line-height: 24px;
}

.contact-card__link {
    color: #ff7b00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card__link:hover {
    color: #e56b00;
    text-decoration: underline;
}

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

    .contacts__map {
        height: 300px;
    }

    .contacts__title {
        font-size: 32px;
    }
}
/*=== begin Page Contacts ===*/



/*=== begin Page About US ===*/
.about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.about__hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/about-us-bg-1.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.about__hero-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.about__title {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about__subtitle {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about__image-block {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about__heading {
    font-size: 32px;
    color: #efad21;
    margin-bottom: 20px;
}

.about__text {
    font-size: 16px;
    line-height: 24px;
    color: #6c757d;
    margin-bottom: 20px;
}

.about__text-large {
    font-size: 20px;
    line-height: 30px;
    color: #343a40;
    margin-bottom: 20px;
    font-weight: 500;
}

.about__text-emphasis {
    font-size: 18px;
    color: #ff7b00;
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
}

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

.value-card {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-card__icon {
    font-size: 28px;
    color: #ff7b00;
    margin-bottom: 15px;
}

.value-card__title {
    font-size: 18px;
    color: #343a40;
    margin-bottom: 10px;
}

.value-card__text {
    font-size: 14px;
    color: #6c757d;
    line-height: 20px;
}

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

    .about__image-block {
        height: 350px;
    }

    .about__values {
        grid-template-columns: 1fr;
    }

    .about__hero {
        height: 300px;
    }

    .about__title {
        font-size: 36px;
    }

    .about__subtitle {
        font-size: 20px;
    }
}

/*=== end Page About US ===*/





/*=== begin Page Cart ===*/
.cart {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.cart__items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cart__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 565px;
}

.cart__item img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.btn-row {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    width: 110px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    margin: 0 5px;
}

.btn:hover {
    background-color: #f0f0f0;
    border-radius: 50%;
}

p.bold {
    font-weight: 400;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 600px) {
    .cart__item {
        padding: 10px;
    }
    .btn-row {
        width: 100px;
    }
    .btn {
        width: 35px;
        height: 35px;
    }
}


/* Итоговая информация */
.cart__summary {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    margin-top: 10px;
}

.cart__summary-title {
    font-size: 22px;
    color: #343a40;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.cart__summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.cart__summary-total {
    font-weight: 600;
    color: #ff7b00;
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 18px;
}

/* Поле ввода телефона */
.cart__input {
    position: relative;
    margin-bottom: 25px;
}

.cart__phone-input {
    width: 100%;
    padding: 15px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.cart__phone-input:focus {
    outline: none;
    border-color: #ff7b00;
}

.cart__phone-label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: white;
    padding: 0 5px;
    font-size: 14px;
    color: #6c757d;
}

/* Кнопки */
.cart__actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.cart__btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart__btn--primary {
    background: #3fc519;
    color: #ffffff;
}

.cart__btn--primary:hover {
    background: #2e9512;
}

.cart__btn--secondary {
    background: #ff0000;
    color: #ffffff;
}

.cart__btn--secondary:hover {
    background: #bf0101;
}

/* Уведомления */
.cart__notification {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart__notification--success {
    background: #d4edda;
    color: #155724;
}

.cart__notification--error {
    background: #f8d7da;
    color: #721c24;
}

/* Адаптивность */
@media (max-width: 600px) {
    .cart__actions {
        flex-direction: column;
    }

    .cart__btn {
        width: 100%;
    }
}
/*=== end Page Cart ===*/