.cookie-info,
.modal-custom {
    position: fixed;
    left: 0;
    width: 100%
}

.cookie-info {
    z-index: 99;
    bottom: 0;
    background-color: var(--color-bg);
    padding: 20px;
    border-top: 1px solid var(--color-dark);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, .15);
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity .3s, transform .3s;
}

.cookie-info.show {
    opacity: 1!important;
    transform: translateY(0);
    pointer-events: auto
}

.cookie-info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.cookie-info__text {
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.5
}

.cookie-info__btn {
    flex: 0 0 auto;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color .2s, transform .2s
}

.cookie-info__btn:hover {
    transform: translateY(-1px)
}

.cookie-info__btn:active {
    transform: translateY(0)
}

.modal-custom {
    display: none;
    z-index: 1000;
    top: 0;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, .5);
    padding: 30px 10px
}

.modal-custom.show {
    display: block
}

.modal-content {
    background-color: #fff;
    margin: 30px auto;
    border-radius: 12px;
    max-width: 900px;
    padding: 20px;
    position: relative;
    animation: .3s ease-out slideDown
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px
}

.modal-body {
    padding-top: 15px
}

.company-requisites {
    --bg: #fff;
    --fg: #111;
    --muted: #666;
    --radius: 16px;
    --pad: 18px;
    color: var(--fg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 720px
}

.req-sub,
.req-term {
    color: var(--muted)
}

.req-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 6px
}

.req-sub {
    margin: 0 0 18px
}

.req-item,
.req-item2 {
    margin: 15px 0 auto
}

.req-list {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.req-item2 {
    display: flex;
    gap: 10px
}

.req-term {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px
}

.req-val {
    font-size: 14px
}

a.req-tel {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted currentColor
}

.product-card {
    max-width: 300px;
}