:root {
    --color-white: #FFFFFF;
    --color-primary: #4C1C1D;
    --color-secondary: #C0A062;
    --color-danger: #CC0000;
    --color-black: #000000;
    --color-gray: #8F8F8F;
    --color-gray-light: #F4F4F4;
    --color-red: rgba(175, 37, 28, 0.75);

    --font-title: Montserrat;
    --font-text: Roboto;
}

body {
    margin: 0;
    padding: 0;
    background: var(--color-white);
    width: 100%;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: var(--color-white);
}
.header-logo-box {
    flex: 0 0 130px;
    padding-left: 20px;
}
.header-logo-box svg {
    height: 30px;
}

.header-icon-box {
    flex: 1 0 auto;
    display: inline-flex;
    justify-content: flex-end;
    gap: 24px;
    padding-right: 20px;
}

.header-icon {

}

.section-content {
    width: 100%;
    background: var(--color-white);
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.section-banner {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-bg-gray {
    background: var(--color-gray-light);
}

.section-buttons {
    display: flex;
    padding: 20px 0;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.title-h2 {
    color: var(--color-black);
    text-align: center;
    font-family: var(--font-title);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}

.text-gray {
    color: var(--color-gray);
}

.text-black {
    color: var(--color-black);
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-description {
    color: var(--color-gray);
    text-align: center;
    font-family: var(--font-title);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    background: transparent;
    border-radius: 6px;
    border: none;
    color: var(--color-black);
    text-align: center;
    font-family: var(--font-title);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-red {
    background: var(--color-red);
    color: var(--color-white);
}

.section-title {
    padding: 0 45px;
}

.section-description {
    padding: 0 45px;
}

.index-bonus-box {
    display: flex;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
}

.index-bonus-item {
    display: flex;
    padding: 14px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 6px;
    border: 1px solid #CDCDCD;
    max-width: calc(50% - 38px);
}

.index-bonus-item-title {
    color: var(--color-primary);
    font-family: var(--font-title);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

.index-bonus-item-description {
    color: var(--color-black);
    font-family: var(--font-title);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.index-bonus-item .btn {
    font-family: var(--font-text);
    font-size: 12px;
}

.index-discount-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    gap: 30px;
}

.index-discount-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.index-discount-title {
    color: var(--color-gray);
    font-family: var(--font-title);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.index-discount-text {
    color: var(--color-black);
    font-family: var(--font-title);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.index-discount-comment {
    color: var(--color-gray);
    font-family: var(--font-title);
    font-size: 8px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.product-items-box {
    display: flex;
    gap: 5px;
    width: calc(100% - 30px);
    overflow-x: auto;
    padding: 10px 15px 5px;
}

.product-item {
    padding: 8px 10px;
    display: flex;
    width: 127px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}

.product-item-content {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
}

.product-item-image {
    height: 142px;
    width: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

.product-item-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.product-item-content-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-item-name {
    overflow: hidden;
    color: var(--color-black);
    text-overflow: ellipsis;
    font-family: var(--font-title);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    height: 36px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-item-price-box {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.product-item-price {
    color: var(--color-black);
    font-family: var(--font-title);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
}

.product-item-price-old {
    color: var(--color-gray);
    font-family: var(--font-title);
    font-size: 8px;
    font-style: normal;
    font-weight: 500;
    line-height: 10px;
    text-decoration-line: strikethrough;
}

.section-product-title {
    color: var(--color-black);
    font-family: var(--font-title);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 17px;
    margin-bottom: 10px;
    padding: 0 15px;
}

.index-banner-box {
    padding: 0 15px;
}

.index-banner-box img {
    width: 100%;
}

.day-product-bg-block {
    top: 30px;
    position: absolute;
    width: calc(100% - 30px);
    background: transparent;
    border-radius: 8px;
    border: 1px solid #CDCDCD;
    order: 1;
    height: 148px;
    left: 15px;
}

.day-product-container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 30px);
    padding: 20px 15px;
    order: 2;
}

.day-product-inner {
    flex: 1 0 calc(100% - 192px);
    padding: 10px;
    position: relative;
}

.day-product-label {
    width: 100%;
    color: var(--color-gray);
    font-family: var(--font-title);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    margin-bottom: 5px;
}

.day-product-name {
    color: var(--color-black);
    font-family: var(--font-title);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 17px;
    margin-bottom: 38px;
}

.day-product-description {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.day-product-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.day-product-price-old {
    color: var(--color-gray);
    font-family: var(--font-title);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    text-decoration-line: strikethrough;
    text-transform: uppercase;
}

.day-product-price {
    color: var(--color-danger);
    font-family: var(--font-title);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

.day-product-timer {
    color: var(--color-gray);
    font-family: var(--font-title);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
}

.day-product-image-box {
    flex: 0 0 162px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-left: 2px;
    position: relative;
}

.day-product-image-box img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.day-product-image-box::after {
    position: absolute;
    content: "";
    top: 130px;
    border-bottom: 1px solid #CDCDCD;
    border-left: 1px solid #CDCDCD;
    border-radius: 0 0 0 8px;
    left: 0px;
    height: 9px;
    width: 30px;
}
.day-product-image-box::before {
    position: absolute;
    content: "";
    top: 139px;
    border-bottom: 1px solid #CDCDCD;
    right: 0;
    width: 30px;
}

.day-product-comment {
    margin-top: 10px;
    color: var(--color-gray);
    font-family: var(--font-title);
    font-size: 8px;
    font-style: normal;
    font-weight: 500;
    line-height: 10px;
}

.product-item-more {
    box-shadow: none;
    min-width: 127px;
    position: relative;
}

.product-item-more-box {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-decoration: none;
}

.product-item-more-text {
    margin-top: 10px;
    color: var(--color-black);
    font-family: var(--font-title);
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}