.alcohol-page{
    max-width:1280px;
    margin:0 auto;
    padding:10px 0 0;
}

/* =========================
   ВЕРХНИЙ БЛОК
========================= */

.alcohol-hero{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    margin-bottom:30px;
}

.alcohol-hero-text{
    flex:1;
    max-width:760px;
    margin:0;
    padding:0;
}

.alcohol-hero-text h1{
    margin:0 0 15px;
    padding:0;
    color:#000;
    font-size:22px;
    font-weight:400;
    line-height:1.2;
}

.alcohol-hero-text p{
    margin:0 0 12px;
    padding:0;
    font-size:14px;
    line-height:1.45;
    color:#333;
}

/* Правый информационный блок */

.alcohol-note{
    width:420px;
    background:#fff;
    border:1px solid #e7ddd3;
    border-radius:16px;
    padding:24px 28px;
    box-sizing:border-box;
}

.note-item{
    display:flex;
    align-items:center;
    gap:16px;
}

.note-item + .note-item{
    margin-top:18px;
}

.note-icon{
    width:32px;
    min-width:32px;
    height:32px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.note-icon img{
    width:32px;
    height:32px;
    display:block;
    object-fit:contain;
}

.note-item p{
    margin:0;
    color:#333;
    font-size:14px;
    line-height:1.3;
    font-weight:500;
}

/* =========================
   НИЖНИЙ БЛОК
========================= */

.alcohol-bottom{
    margin-top:35px;
    background:#fff;
    border:1px solid #e8ddd2;
    border-radius:14px;

    display:grid;
    grid-template-columns:repeat(5,1fr);

    overflow:hidden;
}

.bottom-item{
    display:flex;
    align-items:center;
    gap:14px;

    padding:16px 18px;
    min-height:85px;
}

.bottom-item:not(:last-child){
    border-right:1px solid #eee4da;
}

.bottom-item img{
    width:30px;
    height:30px;
    flex-shrink:0;
    object-fit:contain;
}

.bottom-item div{
    font-size:12px;
    line-height:1.4;
    color:#333;
}

/* =========================
   ПЛАНШЕТ
========================= */

@media(max-width:1100px){

    .alcohol-hero{
        flex-direction:column;
        gap:25px;
    }

    .alcohol-note{
        width:100%;
    }

    .alcohol-bottom{
        grid-template-columns:1fr;
    }

    .bottom-item{
        border-right:none !important;
        border-bottom:1px solid #eee4da;
    }

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

/* =========================
   ТЕЛЕФОН
========================= */

@media(max-width:768px){

    .alcohol-page{
        padding:15px;
    }

    .alcohol-hero{
        flex-direction:column;
        gap:20px;
        margin-bottom:20px;
    }

    .alcohol-hero-text{
        max-width:100%;
    }

    .alcohol-hero-text h1{
        font-size:21px;
        margin:0 0 12px;
        line-height:1.25;
    }

    .alcohol-hero-text p{
        font-size:14px;
        line-height:1.45;
    }

    .alcohol-note{
        width:100%;
        padding:18px;
    }

    .note-item{
        gap:14px;
    }

    .note-item + .note-item{
        margin-top:15px;
    }

    .bottom-item{
        padding:14px 16px;
        min-height:auto;
        gap:12px;
    }

    .bottom-item img{
        width:26px;
        height:26px;
    }

    .bottom-item div{
        font-size:12px;
        line-height:1.35;
    }
}
/* =========================
   КАРТОЧКИ АЛКОГОЛЯ
========================= */

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

.alcohol-card{
    background:#fff;
    border:1px solid #e8ddd2;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:470px;
}

.alcohol-card-image{
    height:200px;
    overflow:hidden;
}

.alcohol-card-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center center;
}

.alcohol-card-content{
    padding:18px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.alcohol-card-content h3{
    margin:0 0 14px;
    font-size:18px;
    line-height:1.2;
    font-weight:600;
    color:#222;
}

.countries{
    margin:0;
    font-size:13px;
    line-height:1.4;
    color:#777;
}

.card-bottom{
    margin-top:auto;
    padding-top:18px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.price{
    font-size:22px;
    line-height:1.2;
    font-weight:700;
    color:#222;
    text-align:center;
}

.alcohol-btn{
    width:100%;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#b7d58f;
    color:#000;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.2s;
}

.alcohol-btn:hover{
    background:#a7ca78;
    color:#000;
}

.red,
.yellow,
.green,
.teal{
    border-top:none !important;
}

/* Планшет */
@media(max-width:1200px){
    .alcohol-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Телефон */
@media(max-width:768px){
    .alcohol-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .alcohol-card{
        min-height:auto;
    }

    .alcohol-card-image{
        height:220px;
    }

    .alcohol-card-content{
        padding:16px;
    }

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

    .price{
        font-size:20px;
    }
}
/* =========================
   БЛОК ЗАЯВКИ
========================= */

.alcohol-request-card{
    grid-column:span 2;

    position:relative;
    overflow:hidden;

    background:#fff;
    border:1px solid #e8ddd2;
    border-radius:18px;

    min-height:470px;
    padding:0;
}

.request-content{
    position:relative;
    z-index:2;

    width:48%;
    height:100%;
    min-height:470px;

    padding:42px 32px 24px;

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.request-icon{
    width:90px;
    height:90px;
    object-fit:contain;
    margin:0 0 24px;
}

.request-content h3{
    margin:0 0 14px;
    font-size:26px;
    line-height:1.15;
    font-weight:700;
    color:#154339;
}

.request-content p{
    margin:0;
    max-width:290px;
    font-size:14px;
    line-height:1.45;
    color:#333;
}

.request-btn{
    margin-top:40px;

    width:100%;
    max-width:330px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;
    background:#febf0f;

    color:#000;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.request-decor{
    position:absolute;

    right:10px;
    bottom:-15px;

    width:340px;
    height:auto;

    display:block;
    z-index:1;
}

/* планшет */

@media(max-width:1200px){
    .alcohol-request-card{
        grid-column:span 2;
    }
}

/* телефон */

@media(max-width:768px){
    .alcohol-request-card{
        grid-column:span 1;
        min-height:auto;
        padding:24px 18px;
    }

    .request-content{
        width:100%;
        min-height:auto;
        padding:0;
    }

    .request-icon{
        width:70px;
        height:70px;
        margin:0 auto 18px;
    }

    .request-content h3{
        font-size:22px;
    }

    .request-content p{
        margin-bottom:22px;
    }

    .request-btn{
        margin-top:0;
        width:100%;
        max-width:none;
    }

    .request-decor{
        display:none;
    }
}
/* =========================
   ПОПАП ФОРМЫ
========================= */

.alcohol-popup{
    display:none;
    position:fixed;
    inset:0;
    z-index:999999;
}

.alcohol-popup.active{
    display:flex;
    align-items:center;
    justify-content:center;
}

.alcohol-popup-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.alcohol-popup-window{
    position:relative;
    z-index:2;
    width:100%;
    max-width:420px;
    max-height:96vh;
    overflow:auto;
    background:#fff;
    border-radius:22px;
    padding:16px 28px 14px;
    box-sizing:border-box;
}

.alcohol-popup-close{
    position:absolute;
    right:18px;
    top:10px;
    border:none;
    background:none;
    font-size:34px;
    line-height:1;
    cursor:pointer;
    color:#000;
}

.alcohol-popup-window h2{
    margin:0 0 4px;
    color:#8c1b5b;
    font-size:24px;
    line-height:1.15;
}

.alcohol-popup-text{
    margin:0 0 6px;
    font-size:14px;
    line-height:1.25;
    color:#333;
}

.alcohol-popup form{
    margin-top:4px !important;
}

.alcohol-popup table.form-table,
.alcohol-popup table.form-table tbody,
.alcohol-popup table.form-table tr,
.alcohol-popup table.form-table td{
    display:block;
    width:100% !important;
    border:none !important;
    outline:none !important;
    background:none !important;
    box-shadow:none !important;
    padding:0 !important;
}

.alcohol-popup table.form-table{
    margin-top:0 !important;
}

.alcohol-popup table.form-table thead,
.alcohol-popup table.form-table thead tr,
.alcohol-popup table.form-table thead th,
.alcohol-popup table.form-table th{
    display:none !important;
}

.alcohol-popup form > br,
.alcohol-popup form > p:empty{
    display:none !important;
}

.alcohol-popup table.form-table tr{
    margin-bottom:5px !important;
}

.alcohol-popup table.form-table td:first-child{
    margin-bottom:1px !important;
    padding-bottom:0 !important;
    font-size:13px;
    line-height:1.1;
    font-weight:600;
    color:#222;
    text-align:left !important;
}

.alcohol-popup table.form-table td:last-child{
    margin-top:0 !important;
    padding-top:0 !important;
    text-align:left !important;
}

.alcohol-popup table.form-table td br{
    display:none !important;
}

.alcohol-popup .form-header,
.alcohol-popup .form-title,
.alcohol-popup h3{
    display:none !important;
}

.alcohol-popup input[type="text"],
.alcohol-popup input[type="email"],
.alcohol-popup select{
    width:100% !important;
    height:36px !important;
    border:1px solid #ddd !important;
    border-radius:9px !important;
    padding:0 14px !important;
    margin-top:0 !important;
    box-sizing:border-box;
    font-size:14px;
    color:#222;
    background:#fff !important;
}

.alcohol-popup textarea{
    width:100% !important;
    height:62px !important;
    border:1px solid #ddd !important;
    border-radius:9px !important;
    padding:10px 14px !important;
    margin-top:4px !important;
    margin-bottom:2px !important;
    box-sizing:border-box;
    font-size:14px;
    color:#222;
    resize:none;
    background:#fff !important;
}

.alcohol-popup input::placeholder,
.alcohol-popup textarea::placeholder{
    color:#999;
}

.alcohol-popup select{
    margin-bottom:6px !important;
}

.alcohol-popup img[src*="captcha"]{
    display:block;
    max-width:165px;
    height:auto;
    margin:0 0 2px !important;
}

.alcohol-popup input[name="captcha_word"]{
    height:36px !important;
    margin:2px 0 6px !important;
}

.alcohol-popup table.form-table tfoot,
.alcohol-popup table.form-table tfoot tr,
.alcohol-popup table.form-table tfoot th{
    display:block !important;
    width:100% !important;
    border:none !important;
    outline:none !important;
    background:transparent !important;
    box-shadow:none !important;
    padding:0 !important;
    margin:0 !important;
    text-align:center !important;
}

.alcohol-popup input[name="web_form_apply"],
.alcohol-popup input[value="Применить"],
.alcohol-popup input[type="submit"][value="Применить"],
.alcohol-popup input[type="reset"]{
    display:none !important;
    visibility:hidden !important;
    width:0 !important;
    height:0 !important;
    overflow:hidden !important;
}

.alcohol-popup input[name="web_form_submit"]{
    display:block !important;
    width:220px !important;
    height:48px !important;
    margin:6px auto 0 !important;
    border:none !important;
    outline:none !important;
    box-shadow:none !important;
    border-radius:14px !important;
    background:#8c1b5b !important;
    color:#fff !important;
    font-size:17px !important;
    font-weight:700 !important;
    text-align:center !important;
    cursor:pointer;
}

.alcohol-popup input[name="web_form_submit"]:hover{
    background:#741447 !important;
}

.alcohol-popup .form-required,
.alcohol-popup .starrequired{
    color:#8c1b5b;
}

.alcohol-popup font.notetext{
    display:block;
    padding:16px;
    border-radius:12px;
    background:#f4f7ed;
    color:#154339;
    font-size:15px;
    line-height:1.4;
}

@media(max-width:768px){
    .alcohol-popup-window{
        width:calc(100% - 28px);
        max-height:96vh;
        padding:14px 20px 12px;
    }

    .alcohol-popup-window h2{
        font-size:22px;
    }

    .alcohol-popup-text{
        font-size:13px;
    }

    .alcohol-popup input[type="text"],
    .alcohol-popup input[type="email"],
    .alcohol-popup select,
    .alcohol-popup input[name="captcha_word"]{
        height:34px !important;
    }

    .alcohol-popup textarea{
        height:58px !important;
    }

    .alcohol-popup input[name="web_form_submit"]{
        height:46px !important;
    }
}
.alcohol-popup-close{
    z-index:9999999 !important;
    pointer-events:auto !important;
}
/* =========================
   ПОПАП КАТЕГОРИИ АЛКОГОЛЯ
========================= */

.alcohol-category-popup{
    display:none;
    position:fixed;
    inset:0;
    z-index:999999;
}

.alcohol-category-popup.active{
    display:block;
}

.alcohol-category-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

.alcohol-category-window{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:95%;
    max-width:1380px;
    max-height:90vh;
    background:#fff;
    border-radius:24px;
    display:flex;
    overflow:hidden;
}

.alcohol-category-close{
    position:absolute;
    right:22px;
    top:18px;
    z-index:20;
    border:none;
    background:none;
    font-size:40px;
    line-height:1;
    cursor:pointer;
    color:#000;
}

/* левая часть */

.alcohol-category-left{
    width:55%;
    padding:24px 32px !important;
    box-sizing:border-box;
    overflow:auto;
}

.alcohol-category-top{
    display:flex !important;
    align-items:flex-start !important;
    gap:28px !important;
    margin-bottom:28px !important;
}

.alcohol-category-left img{
    width:300px !important;
    height:200px !important;
    object-fit:cover !important;
    border-radius:16px !important;
    margin:0 !important;
    flex-shrink:0 !important;
}

.alcohol-category-top > div{
    max-width:320px !important;
    padding-top:6px !important;
}

#categoryTitle{
    margin:0 0 8px !important;
    color:#8c1b5b !important;
    font-size:22px !important;
    line-height:1.05 !important;
    font-weight:600 !important;
    font-family:inherit !important;
}

#categoryText{
    margin:0 !important;
    font-size:14px !important;
    line-height:1.35 !important;
    color:#333 !important;
}

#categoryItems{
    margin:0 0 22px !important;
}

#categoryItems > div{
    display:flex !important;
    justify-content:space-between !important;
    align-items:flex-start !important;
    gap:20px !important;
    padding:11px 0 !important;
    border-bottom:1px solid #eee !important;
}

#categoryItems > div > div{
    display:block !important;
}

#categoryItems strong{
    display:block !important;
    font-size:16px !important;
    line-height:1.2 !important;
    font-weight:700 !important;
    margin:0 0 3px !important;
}

#categoryItems small{
    display:block !important;
    color:#777 !important;
    font-size:13px !important;
    line-height:1.25 !important;
    margin:0 !important;
}

#categoryItems > div > span{
    white-space:nowrap !important;
    font-size:15px !important;
    font-weight:700 !important;
}

.category-note{
    display:block !important;
    background:#f7f5f1 !important;
    border-radius:12px !important;
    padding:16px 20px !important;
    font-size:15px !important;
    line-height:1.4 !important;
    color:#222 !important;
}

/* правая форма */

.alcohol-category-right{
    width:45%;
    padding:28px 28px 14px !important;
    box-sizing:border-box;
    border-left:1px solid #eee;
    overflow:auto;
}

.alcohol-category-right > h3{
    margin:0 0 8px !important;
    color:#8c1b5b !important;
    font-size:22px !important;
    line-height:1.05 !important;
    font-weight:600 !important;
    font-family:inherit !important;
}

.alcohol-category-right form h3,
.alcohol-category-right .form-title,
.alcohol-category-right .form-header{
    display:none !important;
}

.alcohol-category-right > p{
    margin:0 0 8px !important;
    font-size:14px !important;
    line-height:1.25 !important;
    color:#333 !important;
}

.alcohol-category-right table.form-table,
.alcohol-category-right table.form-table tbody,
.alcohol-category-right table.form-table tr,
.alcohol-category-right table.form-table td,
.alcohol-category-right table.form-table tfoot,
.alcohol-category-right table.form-table tfoot tr,
.alcohol-category-right table.form-table tfoot th{
    display:block !important;
    width:100% !important;
    border:none !important;
    background:none !important;
    box-shadow:none !important;
    padding:0 !important;
}

.alcohol-category-right table.form-table thead,
.alcohol-category-right table.form-table thead tr,
.alcohol-category-right table.form-table thead th{
    display:none !important;
}

.alcohol-category-right table.form-table tbody th{
    display:none !important;
}

.alcohol-category-right table.form-table td:first-child{
    margin-bottom:1px !important;
    font-size:13px !important;
    line-height:1.1 !important;
    font-weight:600 !important;
    color:#222 !important;
}

.alcohol-category-right table.form-table td br{
    display:none !important;
}

.alcohol-category-right input[type="text"],
.alcohol-category-right input[type="email"],
.alcohol-category-right select,
.alcohol-category-right input[name="captcha_word"]{
    width:100% !important;
    height:36px !important;
    border:1px solid #ddd !important;
    border-radius:9px !important;
    padding:0 14px !important;
    box-sizing:border-box;
    font-size:14px !important;
    background:#fff !important;
}

.alcohol-category-right textarea{
    width:100% !important;
    height:62px !important;
    border:1px solid #ddd !important;
    border-radius:9px !important;
    padding:10px 14px !important;
    box-sizing:border-box;
    font-size:14px !important;
    resize:none !important;
    background:#fff !important;
}

.alcohol-category-right img[src*="captcha"]{
    display:block !important;
    max-width:165px !important;
    height:auto !important;
    margin:0 0 2px !important;
}

.alcohol-category-right input[name="web_form_submit"],
.alcohol-category-right input[type="submit"][value="Отправить"]{
    display:block !important;
    width:220px !important;
    height:48px !important;
    margin:6px auto 0 !important;
    border:none !important;
    border-radius:14px !important;
    background:#8c1b5b !important;
    color:#fff !important;
    font-size:17px !important;
    font-weight:700 !important;
    cursor:pointer !important;
}

.alcohol-category-right input[type="reset"],
.alcohol-category-right input[name="web_form_apply"],
.alcohol-category-right input[value="Применить"]{
    display:none !important;
}

/* мобильная версия */

@media(max-width:900px){
    .alcohol-category-window{
        flex-direction:column;
        max-height:92vh;
        overflow:auto;
    }

    .alcohol-category-left,
    .alcohol-category-right{
        width:100%;
        border-left:none;
        padding:24px 20px !important;
    }

    .alcohol-category-top{
        display:block !important;
        margin-bottom:18px !important;
    }

    .alcohol-category-left img{
        width:100% !important;
        height:220px !important;
        margin-bottom:16px !important;
    }

    .alcohol-category-top > div{
        max-width:none !important;
        padding:0 !important;
        margin:0 !important;
    }

    #categoryTitle{
        font-size:18px !important;
    }

    #categoryText{
        font-size:14px !important;
    }
}

html.age18-lock,
body.age18-lock{
    overflow:hidden !important;
}

.age18-full-overlay{
    position:fixed;
    inset:0;
    z-index:99999999;

    background:rgba(0,0,0,.72);

    display:flex;
    align-items:center;
    justify-content:center;

    padding:20px;
    box-sizing:border-box;
}

.age18-box{
    width:100%;
    max-width:460px;

    background:#fff;
    border-radius:26px;

    padding:40px 34px 34px;
    box-sizing:border-box;

    text-align:center;
}

.age18-icon{
    width:96px;
    height:96px;

    margin:0 auto 24px;

    border-radius:50%;

    background:#f7f1e8;
    color:#8c1b5b;

    font-size:34px;
    font-weight:800;

    display:flex;
    align-items:center;
    justify-content:center;
}

.age18-title{
    margin:0 0 14px;

    color:#154339;
    font-size:30px;
    line-height:1.15;
    font-weight:800;
}

.age18-text{
    margin:0 0 28px;

    color:#222;
    font-size:16px;
    line-height:1.45;
}

.age18-buttons{
    display:flex;
    gap:14px;
}

.age18-buttons button,
.age18-buttons a{
    flex:1;

    height:54px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:15px;
    font-weight:800;

    box-sizing:border-box;
}

.age18-buttons button{
    border:none;
    background:#8c1b5b;
    color:#fff;
    cursor:pointer;
}

.age18-buttons a{
    background:#f2f2f2;
    color:#222;
}

@media(max-width:520px){

    .age18-box{
        padding:30px 22px;
    }

    .age18-title{
        font-size:26px;
    }

    .age18-buttons{
        flex-direction:column;
    }

}
.alcohol-category-right select{
    margin-bottom:14px !important;
}
/* Поднять первое поле ближе к тексту */
.alcohol-category-right table.form-table{
    margin-top:-25px !important;
}
@media(max-width:900px){

    /* Заголовок слева прижать к краю */
    #categoryTitle{
        margin:0 0 8px 0 !important;
        padding:0 !important;
        font-size:18px !important;
        line-height:1.05 !important;
        font-weight:600 !important;
    }

    /* Описание слева */
    #categoryText{
        margin:0 !important;
        font-size:14px !important;
        line-height:1.3 !important;
    }

    /* Заголовок справа сделать таким же */
    .alcohol-category-right > h3{
        margin:0 0 8px 0 !important;
        padding:0 !important;
        font-size:18px !important;
        line-height:1.05 !important;
        font-weight:600 !important;
        color:#8c1b5b !important;
    }

    /* Убираем лишний отступ слева у мобильного блока */
    .alcohol-category-left{
        padding:16px 16px 10px !important;
    }
}