/* =========================
   PRODUCT PAGE
========================= */

.ca-container{
    width:min(1280px,92%);
    margin:0 auto;
}

.ca-product-page{
    background:#f7efe6;
    color:#3a2a24;
}

.ca-product-hero{
    padding:70px 0 90px;
}

.ca-product-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.ca-product-content{
    min-width:0;
}

.ca-product-title-block h1{
    margin:0 0 20px;
    font-family:"Cormorant Garamond",serif;
    font-size:82px;
    line-height:.9;
    font-weight:500;
    text-transform:uppercase;
    color:#9f1c1c;
}

.ca-product-price{
    margin:20px 0 28px;
    font-size:32px;
    font-weight:600;
    color:#3a2a24;
}

.ca-product-short-description{
    font-size:17px;
    line-height:1.75;
    color:#5f4d45;
}

.recipe-kicker{
    margin-bottom:14px;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:13px;
    font-weight:600;
    color:#9f1c1c;
}

.recipe-subtitle{
    margin-top:26px;
    font-family:"Cormorant Garamond",serif;
    font-size:31px;
    line-height:1;
    font-weight:600;
    color:#9f1c1c;
    text-transform:uppercase;
}

.recipe-flavors{
    margin:10px 0 26px;
    font-size:15px;
    line-height:1.6;
    color:#70564d;
}

.recipe-meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:30px;
}

.recipe-meta > div{
    padding:17px 18px;
    background:rgba(255,255,255,.55);
    border:1px solid #dbc8bb;
    border-radius:16px;
}

.recipe-meta strong{
    display:block;
    margin-bottom:6px;
    color:#9f1c1c;
    font-size:12px;
    letter-spacing:.04em;
}

.recipe-meta span{
    font-size:15px;
    font-weight:500;
}

.ca-product-image{
    position:relative;
}

.ca-product-image::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    max-width:95%;
    max-height:95%;
    border-radius:50%;
    background:#e7d7c8;
    right:0;
    top:50%;
    transform:translateY(-50%);
}

.ca-product-image img{
    position:relative;
    z-index:2;
    display:block;
    width:100%;
    height:auto;
    max-height:720px;
    object-fit:contain;
    filter:drop-shadow(0 30px 55px rgba(45,24,18,.16));
}

/* VARIATIONS */

.ca-product-buy{
    margin-top:36px;
}

.ca-product-buy table.variations{
    width:100%;
    margin:0 0 24px !important;
    border:0 !important;
}

.ca-product-buy table.variations tr{
    display:block;
}

.ca-product-buy table.variations th,
.ca-product-buy table.variations td{
    display:block;
    padding:0 !important;
    border:0 !important;
}

.ca-product-buy table.variations th.label{
    margin-bottom:14px;
}

.ca-product-buy table.variations th.label label{
    color:#9f1c1c;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:.06em;
}

/* временно скрываем стандартный select */
.ca-product-buy .variations select{
    width:100%;
    min-height:52px;
    border:1px solid #ceb9aa;
    border-radius:14px;
    background:#fff;
    padding:0 16px;
}

.ca-product-buy .reset_variations{
    display:none !important;
}

.ca-product-buy .woocommerce-variation-price{
    display:none;
}

.ca-product-buy .single_variation_wrap{
    margin-top:20px;
}

.ca-product-buy .woocommerce-variation-add-to-cart{
    display:flex;
    gap:14px;
    align-items:center;
    flex-wrap:wrap;
}

.ca-product-buy .quantity{
    margin:0 !important;
}

.ca-product-buy .quantity input.qty{
    width:76px;
    min-height:54px;
    border:1px solid #ceb9aa;
    border-radius:999px;
    background:#fff;
}

.ca-product-buy .single_add_to_cart_button{
    min-height:56px !important;
    padding:0 34px !important;
    border:none !important;
    border-radius:999px !important;

    background:#9f1c1c !important;
    color:#fff !important;

    font-weight:600 !important;
    font-size:15px !important;

    transition:.2s ease;
}

.ca-product-buy .single_add_to_cart_button:hover{
    background:#7f1717 !important;
}

.ca-product-buy .single_add_to_cart_button.disabled{
    opacity:.35 !important;
    cursor:not-allowed !important;
}

/* LONG DESCRIPTION */

.ca-product-inside{
    padding:80px 0 100px;
    background:#fffaf5;
}

.recipe-inside h2{
    margin:0 0 18px;
    font-family:"Cormorant Garamond",serif;
    font-size:52px;
    line-height:1;
    color:#9f1c1c;
    text-transform:uppercase;
}

.recipe-inside > p{
    max-width:720px;
    font-size:17px;
    line-height:1.75;
    color:#6b554b;
}

.inside-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:38px;
}

.inside-card{
    min-height:150px;
    padding:26px;
    border:1px solid #decabd;
    border-radius:22px;
    background:#fff;
}

.inside-card strong{
    display:block;
    margin-bottom:10px;
    font-family:"Cormorant Garamond",serif;
    font-size:24px;
    line-height:1.1;
    color:#9f1c1c;
}

.inside-card span{
    display:block;
    font-size:14px;
    line-height:1.6;
    color:#6b554b;
}

.recipe-forever{
    margin-top:36px !important;
    padding:22px 26px;
    border-radius:18px;
    background:#9f1c1c;
    color:#fff !important;
}

/* MOBILE */

@media(max-width:900px){

    .ca-product-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .ca-product-image{
        order:-1;
        max-width:620px;
        margin:0 auto;
    }

    .ca-product-title-block h1{
        font-size:58px;
    }

    .inside-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:560px){

    .ca-product-hero{
        padding:35px 0 60px;
    }

    .ca-product-title-block h1{
        font-size:46px;
    }

    .recipe-meta{
        grid-template-columns:1fr;
    }

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

    .recipe-inside h2{
        font-size:38px;
    }

    .ca-product-buy .woocommerce-variation-add-to-cart{
        align-items:stretch;
    }

    .ca-product-buy .single_add_to_cart_button{
        flex:1;
    }
}

/* =========================================
   CUSTOM VARIATION BUTTONS
========================================= */

.ca-hidden-select{
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    padding:0 !important;
    margin:-1px !important;
    overflow:hidden !important;
    clip:rect(0,0,0,0) !important;
    white-space:nowrap !important;
    border:0 !important;
}

.ca-variation-options{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:16px;
    margin-bottom:26px;
}

.ca-variation-option{
    appearance:none;
    border:1px solid #cdb7a7;
    background:#fffaf6;
    color:#5d443b;

    padding:13px 22px;

    border-radius:999px;

    font-family:"Inter",sans-serif;
    font-size:14px;
    line-height:1;

    cursor:pointer;

    transition:.2s ease;
}

.ca-variation-option:hover{
    border-color:#a51f1f;
    color:#a51f1f;
}

.ca-variation-option.is-selected{
    background:#9f1c1c;
    border-color:#9f1c1c;
    color:#fff;
}

.ca-variation-option:active{
    transform:scale(.97);
}


/* Заголовок ВКУС / РЕЦЕПТ */

.ca-product-buy table.variations th.label label{
    display:block;

    margin-bottom:5px;

    font-size:13px;
    font-weight:600;

    letter-spacing:.08em;

    color:#a51f1f;
}


/* Кнопка корзины */

.ca-product-buy .single_add_to_cart_button.disabled{
    opacity:.35 !important;
    pointer-events:none;
}

.ca-product-buy .single_add_to_cart_button:not(.disabled){
    opacity:1 !important;
}
/* Убираем количество на карточках рецептов */
.ca-product-buy .quantity {
    display: none !important;
}
/* =========================================
   HEADER
========================================= */

.ca-header{
    position:relative;
    z-index:100;
    background:#f7efe6;
    border-bottom:1px solid rgba(159,28,28,.08);
}

.ca-header-inner{
    min-height:88px;

    display:grid;
    grid-template-columns:280px 1fr 150px;

    align-items:center;

    gap:30px;
}

.ca-logo{
    color:#9f1c1c;

    text-decoration:none;

    font-family:"Cormorant Garamond",serif;

    font-size:32px;
    line-height:1;

    font-weight:600;

    letter-spacing:.015em;

    white-space:nowrap;
}

.ca-logo:hover{
    color:#7f1717;
}

.ca-nav{
    display:flex;

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

    gap:42px;
}

.ca-nav a{
    position:relative;

    color:#4e3a32;

    text-decoration:none;

    font-size:11px;

    font-weight:500;

    letter-spacing:.09em;

    text-transform:uppercase;

    transition:.2s ease;
}

.ca-nav a::after{ 
    content:"";

    position:absolute;

    left:0;
    right:0;
    bottom:-8px;

    height:1px;

    background:#9f1c1c;

    transform:scaleX(0);

    transition:.2s ease;
}

.ca-nav a:hover{
    color:#9f1c1c;
}

.ca-nav a:hover::after{
    transform:scaleX(1);
}

.ca-header-actions{
    display:flex;

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

    gap:18px;
}

.ca-header-actions a{
    color:#9f1c1c;
    text-decoration:none;
}

.ca-header-actions svg{
    width:24px;
    height:24px;

    fill:none;

    stroke:currentColor;
    stroke-width:1.7;

    stroke-linecap:round;
    stroke-linejoin:round;
}

.ca-header-cart{
    position:relative;

    display:flex;
    align-items:center;
}

.ca-cart-count{
    position:absolute;

    right:-9px;
    top:-8px;

    min-width:17px;
    height:17px;

    padding:0 4px;

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

    border-radius:999px;

    background:#9f1c1c;

    color:#fff;

    font-size:10px;

    line-height:1;
}

/* =========================================
   FOOTER
========================================= */

.ca-footer{
    background:#931818;
    color:#fff;

    padding:48px 0;
}

.ca-footer-inner{
    display:flex;

    justify-content:space-between;
    align-items:flex-end;

    gap:40px;
}

.ca-footer strong{
    display:block;

    margin-bottom:12px;

    font-family:"Cormorant Garamond",serif;

    font-size:30px;

    font-weight:500;
}

.ca-footer p{
    max-width:350px;

    margin:0;

    line-height:1.6;

    opacity:.85;
}

.ca-footer-copy{
    opacity:.8;
    font-size:13px;
}
@media(max-width:900px){

    .ca-header-inner{
        grid-template-columns:1fr auto;
        min-height:74px;
    }

    .ca-nav{
        grid-column:1/-1;

        justify-content:flex-start;

        gap:24px;

        overflow-x:auto;

        padding-bottom:16px;
    }

    .ca-nav a{
        flex:0 0 auto;
    }

	.ca-logo{
		font-family:"Cormorant Garamond",serif;
		font-size:30px;
		font-weight:500;
		letter-spacing:.01em;
	}

    .ca-footer-inner{
        display:block;
    }

    .ca-footer-copy{
        margin-top:30px;
    }
}
/* =========================================
   HOME
========================================= */

.ca-home{
    background:#f7efe6;
}

/* =========================================
   HOME HERO — FULL BACKGROUND
========================================= */

.ca-home-hero{
    position:relative;
    min-height:760px;
    overflow:hidden;
    background:#f7efe6;
}

.ca-home-hero-bg{
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(
            90deg,
            #f7efe6 0%,
            rgba(247,239,230,.99) 17%,
            rgba(247,239,230,.94) 29%,
            rgba(247,239,230,.76) 40%,
            rgba(247,239,230,.34) 52%,
            rgba(247,239,230,0) 68%
        ),
        url("../img/hero-olga-v2.webp");

    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;
}

.ca-home-hero-inner{
    position:relative;
    z-index:2;
    min-height:760px;
    display:flex;
    align-items:center;
}

.ca-home-hero-content{
    width:46%;
    max-width:650px;
    padding:70px 0 95px;
}

.ca-home-hero-content h1{
    margin:0 0 34px;
    font-family:"Cormorant Garamond",serif;
    font-size:82px;
    line-height:.88;
    font-weight:500;
    letter-spacing:-.025em;
    color:#a51d1d;
}

.ca-home-hero-content h1 em{
    display:block;
    margin-top:25px;
    font-size:66px;
    line-height:1;
    font-weight:400;
    font-style:italic;
}

.ca-home-hero-content p{
    max-width:490px;
    margin:0 0 38px;
    font-family:"Inter",sans-serif;
    font-size:16px;
    line-height:1.75;
    color:#54423a;
}

.ca-main-button{
    display:inline-flex;
    min-height:56px;
    padding:0 34px;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#a71919;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:background .2s ease, transform .2s ease;
}

.ca-main-button:hover{
    background:#801313;
    color:#fff;
    transform:translateY(-1px);
}

/* SECTION TITLE */

.ca-section-title{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:35px;
}

.ca-section-title h2{
    margin:0;
    font-family:"Cormorant Garamond",serif;
    font-size:34px;
    font-weight:500;
    text-transform:uppercase;
    color:#9f1c1c;
}

.ca-section-title span{
    flex:1;
    height:1px;
    background:#cfb9aa;
}

/* PRODUCTS */

.ca-home-recipes{
    padding:55px 0 85px;
    background:#fffaf5;
}

.ca-products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.ca-product-card{
    min-width:0;
}

.ca-product-card-image{
    display:block;
    aspect-ratio:1 / 1.18;
    overflow:hidden;
    border-radius:20px;
    background:#ead8ca;
}

.ca-product-card-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s ease;
}

.ca-product-card:hover .ca-product-card-image img{
    transform:scale(1.035);
}

.ca-product-placeholder{
    display:flex;
    width:100%;
    height:100%;
    align-items:center;
    justify-content:center;
    font-family:"Cormorant Garamond",serif;
    font-size:26px;
    color:#9f1c1c;
}

.ca-product-card-content{
    padding:18px 3px 0;
}

.ca-product-card h3{
    margin:0 0 8px;
    font-family:"Cormorant Garamond",serif;
    font-size:25px;
    font-weight:600;
    text-transform:uppercase;
}

.ca-product-card h3 a{
    color:#9f1c1c;
    text-decoration:none;
}

.ca-product-card p{
    min-height:65px;
    margin:0 0 14px;
    font-size:13px;
    line-height:1.55;
    color:#6c584f;
}

.ca-product-card-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.ca-product-card-price{
    font-weight:600;
    color:#3e2d27;
}

.ca-product-card-arrow{
    display:flex;
    width:35px;
    height:35px;
    align-items:center;
    justify-content:center;
    border:1px solid #cfb9aa;
    border-radius:50%;
    color:#9f1c1c;
    text-decoration:none;
}

/* BONUSES */

.ca-bonuses{
    padding:48px 0 55px;
    background:#961919;
    color:#fff;
    text-align:center;
}

.ca-bonuses h2{
    margin:0 0 35px;
    font-family:"Cormorant Garamond",serif;
    font-size:36px;
    font-weight:500;
    text-transform:uppercase;
}

.ca-bonus-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.ca-bonus-image{
    width:140px;
    height:140px;
    margin:0 auto 16px;
    overflow:hidden;
    border:5px solid rgba(255,255,255,.8);
    border-radius:50%;
    background:#fff;
}

.ca-bonus-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ca-bonus-item span{
    font-size:12px;
    letter-spacing:.04em;
    text-transform:uppercase;
}

/* ABOUT HOME */

.ca-home-about{
    padding:90px 0;
    background:#fffaf5;
}

.ca-home-about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.ca-home-about-image{
    overflow:hidden;
    border-radius:30px;
}

.ca-home-about-image img{
    display:block;
    width:100%;
    max-height:600px;
    object-fit:cover;
}

.ca-small-title{
    margin-bottom:15px;
    color:#9f1c1c;
    font-size:12px;
    font-weight:600;
    letter-spacing:.1em;
}

.ca-home-about-content h2{
    margin:0 0 10px;
    font-family:"Cormorant Garamond",serif;
    font-size:66px;
    font-weight:500;
    line-height:1;
    color:#9f1c1c;
}

.ca-home-about-content h3{
    margin:0 0 28px;
    font-family:"Cormorant Garamond",serif;
    font-size:30px;
    line-height:1.1;
    font-weight:500;
}

.ca-home-about-content p{
    max-width:530px;
    font-size:15px;
    line-height:1.75;
    color:#665149;
}

.ca-outline-button{
    display:inline-flex;
    min-height:50px;
    margin-top:14px;
    padding:0 28px;
    align-items:center;
    justify-content:center;
    border:1px solid #b89988;
    border-radius:999px;
    color:#6b4940;
    text-decoration:none;
}

.ca-outline-button:hover{
    border-color:#9f1c1c;
    color:#9f1c1c;
}

/* RESPONSIVE */

@media(max-width:1000px){
    .ca-products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ca-bonus-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .ca-home-about-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:900px){
    .ca-home-hero{
        min-height:720px;
    }

    .ca-home-hero-inner{
        min-height:720px;
        align-items:flex-end;
    }

    .ca-home-hero-bg{
        background-image:
            linear-gradient(
                0deg,
                #f7efe6 0%,
                rgba(247,239,230,.97) 32%,
                rgba(247,239,230,.70) 48%,
                rgba(247,239,230,.20) 70%,
                rgba(247,239,230,0) 100%
            ),
            url("../img/hero-olga-v2.webp");

        background-position:68% center;
    }

    .ca-home-hero-content{
        width:100%;
        max-width:620px;
        padding:320px 0 55px;
    }

    .ca-home-hero-content h1{
        font-size:58px;
    }

    .ca-home-hero-content h1 em{
        font-size:49px;
    }
}

@media(max-width:600px){
    .ca-products-grid{
        grid-template-columns:1fr;
    }

    .ca-bonus-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ca-bonus-image{
        width:110px;
        height:110px;
    }

    .ca-home-about-content h2{
        font-size:48px;
    }
}

@media(max-width:560px){
    .ca-home-hero{
        min-height:680px;
    }

    .ca-home-hero-inner{
        min-height:680px;
    }

    .ca-home-hero-bg{
        background-position:72% center;
    }

    .ca-home-hero-content{
        padding:290px 0 45px;
    }

    .ca-home-hero-content h1{
        font-size:47px;
    }

    .ca-home-hero-content h1 em{
        font-size:40px;
    }

    .ca-home-hero-content p{
        font-size:14px;
    }
}
/* =========================================
   CART PAGE
========================================= */

body.woocommerce-cart{
    background:#f7efe6;
}

body.woocommerce-cart .site-main,
body.woocommerce-cart main{
    background:#f7efe6;
}

/* Общая ширина страницы */

body.woocommerce-cart .wp-site-blocks,
body.woocommerce-cart .entry-content,
body.woocommerce-cart .ct-container-full{
    max-width:1280px;
    margin-left:auto;
    margin-right:auto;
}

/* Заголовок */

body.woocommerce-cart h1,
body.woocommerce-cart .entry-title{
    margin:55px 0 35px;

    font-family:"Cormorant Garamond",serif;
    font-size:64px;
    line-height:1;
    font-weight:500;

    color:#9f1c1c;
    text-transform:uppercase;
}

/* =========================================
   WOOCOMMERCE BLOCK CART
========================================= */

body.woocommerce-cart .wc-block-cart{
    padding-bottom:90px;
}

body.woocommerce-cart .wc-block-cart__main{
    padding-right:35px;
}

/* Карточка товара */

body.woocommerce-cart .wc-block-cart-items{
    border:0 !important;
}

body.woocommerce-cart .wc-block-cart-items__row{
    margin-bottom:18px;

    padding:22px !important;

    background:#fffaf6;

    border:1px solid #ddc9bb !important;
    border-radius:22px;
}

/* Фото */

body.woocommerce-cart .wc-block-cart-item__image img{
    border-radius:16px;

    width:115px;
    height:115px;

    object-fit:cover;
}

/* Название */

body.woocommerce-cart .wc-block-components-product-name{
    font-family:"Cormorant Garamond",serif !important;

    font-size:27px !important;
    line-height:1.05 !important;

    color:#9f1c1c !important;

    text-decoration:none !important;
    text-transform:uppercase;
}

/* Вариант: Матча, Манго и т.п. */

body.woocommerce-cart .wc-block-components-product-details{
    margin-top:9px;
}

body.woocommerce-cart .wc-block-components-product-details li{
    font-size:13px;
    color:#735b50;
}

/* Цена */

body.woocommerce-cart .wc-block-components-product-price{
    font-size:16px;
    font-weight:600;

    color:#3f2d27;
}

/* Убираем количество */

body.woocommerce-cart .wc-block-components-quantity-selector{
    display:none !important;
}

/* Удалить */

body.woocommerce-cart .wc-block-cart-item__remove-link{
    margin-top:14px !important;

    color:#9f1c1c !important;

    font-size:12px !important;
    text-decoration:none !important;
}

body.woocommerce-cart .wc-block-cart-item__remove-link:hover{
    text-decoration:underline !important;
}

/* =========================================
   ИТОГО
========================================= */

body.woocommerce-cart .wc-block-cart__sidebar{
    padding:0 !important;
}

body.woocommerce-cart .wc-block-components-sidebar{
    background:#fffaf6;

    border:1px solid #ddc9bb;
    border-radius:24px;

    padding:28px !important;
}

body.woocommerce-cart .wc-block-cart__totals-title{
    margin:0 0 24px !important;

    font-family:"Cormorant Garamond",serif !important;
    font-size:32px !important;
    font-weight:500 !important;

    color:#9f1c1c !important;

    text-align:left !important;
    text-transform:uppercase;
}

body.woocommerce-cart .wc-block-components-totals-item{
    padding:14px 0 !important;

    border-bottom:1px solid #eadbd0;
}

body.woocommerce-cart .wc-block-components-totals-item__label{
    color:#6c554c;
}

body.woocommerce-cart .wc-block-components-totals-item__value{
    color:#3f2d27;
    font-weight:600;
}

/* Финальная сумма */

body.woocommerce-cart .wc-block-components-totals-footer-item{
    margin-top:10px;

    font-size:20px;
}

/* =========================================
   CHECKOUT BUTTON
========================================= */

body.woocommerce-cart .wc-block-cart__submit-container{
    margin-top:22px;
}

body.woocommerce-cart .wc-block-cart__submit-button{
    min-height:58px !important;

    border-radius:999px !important;

    background:#9f1c1c !important;
    color:#fff !important;

    font-size:14px !important;
    font-weight:600 !important;

    text-decoration:none !important;

    transition:.2s ease;
}

body.woocommerce-cart .wc-block-cart__submit-button:hover{
    background:#7f1717 !important;
}

/* Продолжить покупки */

body.woocommerce-cart .wc-block-cart__submit-container + a{
    color:#9f1c1c;
}

/* =========================================
   COUPON
========================================= */

body.woocommerce-cart .wc-block-components-totals-coupon{
    margin-top:14px;
}

body.woocommerce-cart .wc-block-components-totals-coupon__button{
    border-radius:999px !important;

    background:#fff !important;
    color:#9f1c1c !important;

    border:1px solid #ccb4a5 !important;
}

body.woocommerce-cart .wc-block-components-text-input input{
    border:1px solid #ccb4a5 !important;
    border-radius:14px !important;

    background:#fff !important;
}

/* =========================================
   EMPTY CART
========================================= */

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block{
    padding:90px 0 120px;

    text-align:center;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block h2{
    font-family:"Cormorant Garamond",serif;

    font-size:48px;
    font-weight:500;

    color:#9f1c1c;
}

/* =========================================
   CLASSIC WOOCOMMERCE CART FALLBACK
========================================= */

body.woocommerce-cart table.shop_table{
    overflow:hidden;

    background:#fffaf6;

    border:1px solid #ddc9bb !important;
    border-radius:22px !important;
}

body.woocommerce-cart table.shop_table th{
    color:#9f1c1c;

    font-size:12px;
    text-transform:uppercase;
}

body.woocommerce-cart table.shop_table td{
    border-color:#eadbd0 !important;
}

body.woocommerce-cart table.shop_table .product-name a{
    color:#9f1c1c;

    font-family:"Cormorant Garamond",serif;
    font-size:24px;

    text-decoration:none;
}

body.woocommerce-cart table.shop_table .product-thumbnail img{
    width:100px;

    border-radius:14px;
}

body.woocommerce-cart table.shop_table .product-quantity{
    display:none;
}

body.woocommerce-cart .cart_totals{
    padding:28px;

    background:#fffaf6;

    border:1px solid #ddc9bb;
    border-radius:22px;
}

body.woocommerce-cart .cart_totals h2{
    font-family:"Cormorant Garamond",serif;

    color:#9f1c1c;
}

body.woocommerce-cart .checkout-button{
    border-radius:999px !important;

    background:#9f1c1c !important;
    color:#fff !important;
}

/* =========================================
   CART MOBILE
========================================= */

@media(max-width:900px){

    body.woocommerce-cart h1,
    body.woocommerce-cart .entry-title{
        font-size:48px;
    }

    body.woocommerce-cart .wc-block-cart__main{
        padding-right:0;
    }

    body.woocommerce-cart .wc-block-cart__sidebar{
        margin-top:30px;
    }
}

@media(max-width:560px){

    body.woocommerce-cart h1,
    body.woocommerce-cart .entry-title{
        margin-top:35px;

        font-size:40px;
    }

    body.woocommerce-cart .wc-block-cart-items__row{
        padding:15px !important;
    }

    body.woocommerce-cart .wc-block-cart-item__image img{
        width:85px;
        height:85px;
    }

    body.woocommerce-cart .wc-block-components-product-name{
        font-size:22px !important;
    }
}
/* =========================================
   CART — FINAL POLISH
========================================= */

/* Больше воздуха внутри основной карточки */
body.woocommerce-cart .woocommerce-cart-form{
    background:#fffaf6;
    border:1px solid #ddc9bb;
    border-radius:22px;
    overflow:hidden;
}

body.woocommerce-cart table.shop_table{
    margin:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
}

/* Шапка таблицы */
body.woocommerce-cart table.shop_table thead th{
    padding:24px 28px 18px !important;
}

/* Строки товаров */
body.woocommerce-cart table.shop_table td{
    padding:22px 28px !important;
    vertical-align:middle;
}

/* Первая колонка с картинкой */
body.woocommerce-cart table.shop_table .product-thumbnail{
    padding-right:0 !important;
}

/* Название товара */
body.woocommerce-cart table.shop_table .product-name{
    padding-left:20px !important;
}

/* Цена справа */
body.woocommerce-cart table.shop_table .product-subtotal{
    padding-right:20px !important;
}

/* Крестик / удаление */
body.woocommerce-cart table.shop_table .product-remove{
    padding-left:5px !important;
    padding-right:20px !important;
}

/* =========================================
   НИЖНЯЯ ПАНЕЛЬ КОРЗИНЫ
========================================= */

body.woocommerce-cart table.shop_table td.actions{
    padding:22px 28px !important;
    background:#fffaf6;
}

/* Купон */
body.woocommerce-cart .coupon{
    display:flex;
    gap:10px;
    align-items:center;
}

body.woocommerce-cart .coupon #coupon_code{
    min-width:190px;
    height:46px;

    padding:0 16px !important;

    border:1px solid #d8c2b3 !important;
    border-radius:10px !important;

    background:#fff !important;
    color:#3f2d27 !important;

    font-family:"Inter",sans-serif;
}

/* =========================================
   ВСЕ КНОПКИ КОРЗИНЫ
========================================= */

body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce a.button,
body.woocommerce-cart button.button,
body.woocommerce-cart a.button{
    min-height:46px;

    padding:0 24px !important;

    display:inline-flex !important;
    align-items:center;
    justify-content:center;

    background:#9f1c1c !important;
    color:#fff !important;

    border:1px solid #9f1c1c !important;
    border-radius:999px !important;

    font-family:"Inter",sans-serif !important;
    font-size:13px !important;
    font-weight:600 !important;

    box-shadow:none !important;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

body.woocommerce-cart .woocommerce button.button:hover,
body.woocommerce-cart .woocommerce a.button:hover,
body.woocommerce-cart button.button:hover,
body.woocommerce-cart a.button:hover{
    background:#811717 !important;
    border-color:#811717 !important;
    color:#fff !important;
}

/* Неактивная "Обновить корзину" */
body.woocommerce-cart button.button:disabled,
body.woocommerce-cart button.button:disabled[disabled]{
    background:#dfb7ae !important;
    border-color:#dfb7ae !important;
    color:#fff !important;

    opacity:1 !important;
    cursor:not-allowed;
}

/* =========================================
   БЛОК ИТОГО
========================================= */

body.woocommerce-cart .cart_totals{
    padding:32px 30px !important;
}

body.woocommerce-cart .cart_totals h2{
    margin:0 0 24px !important;
}

body.woocommerce-cart .cart_totals table{
    margin-bottom:26px !important;
}

/* Главная кнопка оформления */

body.woocommerce-cart .wc-proceed-to-checkout{
    padding:18px 0 0 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button{
    width:100%;

    min-height:52px;

    margin:0 !important;

    background:#9f1c1c !important;
    color:#fff !important;

    border-radius:999px !important;

    font-size:14px !important;
    font-weight:600 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover{
    background:#811717 !important;
}

/* =========================================
   ОТСТУПЫ ВСЕГО БЛОКА КОРЗИНЫ
========================================= */

body.woocommerce-cart .woocommerce{
    padding-bottom:80px;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals{
    margin-top:10px;
}

/* MOBILE */

@media(max-width:768px){

    body.woocommerce-cart table.shop_table thead th,
    body.woocommerce-cart table.shop_table td{
        padding:16px !important;
    }

    body.woocommerce-cart table.shop_table td.actions{
        padding:18px !important;
    }

    body.woocommerce-cart .coupon{
        width:100%;
        flex-direction:column;
        align-items:stretch;
    }

    body.woocommerce-cart .coupon #coupon_code{
        width:100% !important;
    }

    body.woocommerce-cart .coupon button{
        width:100%;
    }

    body.woocommerce-cart .cart_totals{
        padding:24px 20px !important;
    }
}
/* =========================================
   CHECKOUT — CRÈME ARCHIVE
========================================= */

body.woocommerce-checkout{
    background:#f7efe6;
    color:#49352d;
}

/* Общий контейнер */

body.woocommerce-checkout .woocommerce{
    max-width:1280px;
    margin:0 auto;
    padding:65px 4% 90px;
}

/* Заголовок страницы */

body.woocommerce-checkout .entry-title,
body.woocommerce-checkout h1{
    margin:0 0 48px;

    font-family:"Cormorant Garamond",serif;
    font-size:64px;
    line-height:1;
    font-weight:500;

    color:#9f1c1c;
}

/* Две колонки */

body.woocommerce-checkout form.checkout{
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr);
    gap:60px;
    align-items:start;
}

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

body.woocommerce-checkout #customer_details{
    width:100%;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2{
    float:none;
    width:100%;
}

/* Убираем лишний заголовок "Детали" */

body.woocommerce-checkout .woocommerce-additional-fields > h3{
    display:none;
}

/* Заголовки */

body.woocommerce-checkout .woocommerce-billing-fields > h3,
body.woocommerce-checkout #order_review_heading{
    margin:0 0 25px;

    font-family:"Cormorant Garamond",serif;
    font-size:32px;
    line-height:1;
    font-weight:500;

    color:#9f1c1c;
}

/* Поля */

body.woocommerce-checkout .form-row{
    margin:0 0 20px !important;
}

body.woocommerce-checkout .form-row label{
    display:block;

    margin-bottom:8px;

    color:#704e43;

    font-family:"Inter",sans-serif;
    font-size:13px;
    font-weight:500;
}

body.woocommerce-checkout .form-row label .required{
    color:#9f1c1c;
}

/* Input / textarea */

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select{
    width:100%;

    min-height:52px;

    padding:0 16px !important;

    border:1px solid #d7c1b3 !important;
    border-radius:12px !important;

    background:#fffaf6 !important;

    color:#49352d !important;

    font-family:"Inter",sans-serif;
    font-size:14px;

    box-shadow:none !important;
}

body.woocommerce-checkout textarea{
    min-height:130px;
    padding:16px !important;

    resize:vertical;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout textarea:focus{
    outline:none;

    border-color:#9f1c1c !important;

    box-shadow:0 0 0 2px rgba(159,28,28,.07) !important;
}

/* Имя + фамилия */

body.woocommerce-checkout .form-row-first,
body.woocommerce-checkout .form-row-last{
    width:calc(50% - 8px);
}

body.woocommerce-checkout .form-row-first{
    float:left;
}

body.woocommerce-checkout .form-row-last{
    float:right;
}

/* Комментарий */

body.woocommerce-checkout .woocommerce-additional-fields{
    margin-top:25px;
}

/* =========================================
   RIGHT — ORDER
========================================= */

body.woocommerce-checkout #order_review_heading{
    grid-column:2;
    grid-row:1;

    margin-top:0;
}

body.woocommerce-checkout #order_review{
    grid-column:2;

    padding:30px;

    border:1px solid #dbc5b6;
    border-radius:24px;

    background:#fffaf6;
}

/* Таблица заказа */

body.woocommerce-checkout table.shop_table{
    margin:0 0 25px;

    border:0 !important;

    background:transparent !important;
}

body.woocommerce-checkout table.shop_table th{
    padding:14px 0 !important;

    color:#9f1c1c;

    font-size:12px;
    text-transform:uppercase;

    border-color:#eadbd1 !important;
}

body.woocommerce-checkout table.shop_table td{
    padding:17px 0 !important;

    color:#5c463d;

    border-color:#eadbd1 !important;
}

body.woocommerce-checkout .product-name{
    font-family:"Cormorant Garamond",serif;

    font-size:18px;

    color:#9f1c1c !important;
}

/* Итог */

body.woocommerce-checkout .order-total th,
body.woocommerce-checkout .order-total td{
    padding-top:20px !important;

    font-size:18px;
    font-weight:600;
}

/* =========================================
   PAYMENT
========================================= */

body.woocommerce-checkout #payment{
    margin-top:20px;

    background:transparent !important;
}

body.woocommerce-checkout #payment ul.payment_methods{
    padding:20px 0 !important;

    border-color:#eadbd1 !important;
}

body.woocommerce-checkout #payment div.payment_box{
    border-radius:14px;

    background:#f3e6dc !important;

    color:#624c42;
}

/* Privacy */

body.woocommerce-checkout .woocommerce-privacy-policy-text{
    margin:20px 0;

    font-size:12px;
    line-height:1.6;

    color:#80675c;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a{
    color:#9f1c1c;
}

/* =========================================
   PLACE ORDER BUTTON
========================================= */

body.woocommerce-checkout #place_order{
    width:100%;

    min-height:56px;

    margin-top:10px !important;

    border:0 !important;
    border-radius:999px !important;

    background:#9f1c1c !important;
    color:#fff !important;

    font-family:"Inter",sans-serif !important;
    font-size:14px !important;
    font-weight:600 !important;

    box-shadow:none !important;

    transition:.2s ease;
}

body.woocommerce-checkout #place_order:hover{
    background:#7f1717 !important;
    color:#fff !important;
}

/* WooCommerce notices */

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-message{
    border:1px solid #dbc5b6;
    border-radius:14px;

    background:#fffaf6;

    color:#634b40;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:900px){

    body.woocommerce-checkout .woocommerce{
        padding-top:40px;
    }

    body.woocommerce-checkout form.checkout{
        display:block;
    }

    body.woocommerce-checkout #order_review{
        margin-top:35px;
    }

    body.woocommerce-checkout #order_review_heading{
        margin-top:45px;
    }

    body.woocommerce-checkout .entry-title,
    body.woocommerce-checkout h1{
        font-size:48px;
    }
}

@media(max-width:560px){

    body.woocommerce-checkout .form-row-first,
    body.woocommerce-checkout .form-row-last{
        float:none;
        width:100%;
    }

    body.woocommerce-checkout #order_review{
        padding:20px;
    }

    body.woocommerce-checkout .entry-title,
    body.woocommerce-checkout h1{
        font-size:40px;
    }
}
/* =========================================
   ABOUT PAGE
========================================= */

.ca-about-page{
    background:#f7efe6;
    color:#4b382f;
}

/* HERO */

.ca-about-hero{
    padding:80px 0 95px;
}

.ca-about-hero-grid{
    display:grid;
    grid-template-columns:42% 58%;
    gap:65px;
    align-items:center;
}

.ca-about-kicker{
    margin-bottom:14px;

    color:#9f1c1c;

    font-family:"Inter",sans-serif;
    font-size:12px;
    font-weight:600;

    letter-spacing:.12em;
    text-transform:uppercase;
}

.ca-about-hero-content h1{
    margin:0 0 25px;

    font-family:"Cormorant Garamond",serif;
    font-size:86px;
    line-height:.82;
    font-weight:500;

    color:#9f1c1c;
}

.ca-about-role{
    margin-bottom:30px;

    font-family:"Cormorant Garamond",serif;
    font-size:31px;
    line-height:1.1;
    font-weight:500;

    color:#3f2e27;
}

.ca-about-hero-content p{
    max-width:520px;

    font-size:15px;
    line-height:1.8;

    color:#685249;
}

.ca-about-hero-image{
    overflow:hidden;
    border-radius:30px;
}

.ca-about-hero-image img{
    display:block;

    width:100%;
    height:620px;

    object-fit:cover;
}

/* STORY */

.ca-about-story{
    padding:95px 0;

    background:#fffaf5;
}

.ca-about-story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:75px;

    align-items:center;
}

.ca-about-story-image{
    overflow:hidden;

    border-radius:28px;
}

.ca-about-story-image img{
    display:block;

    width:100%;
    height:520px;

    object-fit:cover;
}

.ca-about-story-content h2{
    margin:0 0 30px;

    font-family:"Cormorant Garamond",serif;
    font-size:54px;
    line-height:.95;

    font-weight:500;

    color:#9f1c1c;
}

.ca-about-story-content p{
    margin:0 0 20px;

    font-size:15px;
    line-height:1.85;

    color:#675149;
}

/* NUMBERS */

.ca-about-numbers{
    padding:65px 0;

    background:#f1e2d7;
}

.ca-about-numbers-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.ca-about-number{
    min-height:150px;

    padding:25px 35px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    border-right:1px solid rgba(159,28,28,.20);
}

.ca-about-number:last-child{
    border-right:0;
}

.ca-about-number strong{
    display:block;

    margin-bottom:5px;

    font-family:"Cormorant Garamond",serif;

    font-size:58px;
    line-height:1;

    font-weight:500;

    color:#9f1c1c;
}

.ca-about-number span{
    max-width:190px;

    font-size:13px;
    line-height:1.6;

    color:#69534a;
}

/* GOAL */

.ca-about-goal{
    padding:95px 0;

    background:#991919;
    color:#fff;
}

.ca-about-goal-inner{
    max-width:900px;

    margin:0 auto;

    text-align:center;
}

.ca-about-goal .ca-about-kicker{
    color:#f1c8ba;
}

.ca-about-goal h2{
    margin:0 auto 30px;

    font-family:"Cormorant Garamond",serif;

    font-size:59px;
    line-height:1;

    font-weight:500;

    color:#fff;
}

.ca-about-goal p{
    max-width:720px;

    margin:0 auto 16px;

    font-size:16px;
    line-height:1.75;

    color:rgba(255,255,255,.88);
}

/* GALLERY */

.ca-about-gallery{
    padding:95px 0 110px;

    background:#fffaf5;
}

.ca-about-gallery-head{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:end;

    margin-bottom:45px;
}

.ca-about-gallery-head h2{
    margin:0;

    font-family:"Cormorant Garamond",serif;

    font-size:58px;
    line-height:.92;

    font-weight:500;

    color:#9f1c1c;
}

.ca-about-gallery-head p{
    max-width:520px;

    margin:0;

    font-size:15px;
    line-height:1.8;

    color:#675149;
}

.ca-about-gallery-grid{
    display:grid;

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

    gap:18px;
}

.ca-about-gallery-item{
    overflow:hidden;

    border-radius:20px;

    background:#ead8ca;
}

.ca-about-gallery-item:nth-child(1),
.ca-about-gallery-item:nth-child(5){
    grid-row:span 2;
}

.ca-about-gallery-item img{
    display:block;

    width:100%;
    height:100%;

    min-height:280px;

    object-fit:cover;

    transition:transform .35s ease;
}

.ca-about-gallery-item:nth-child(1) img,
.ca-about-gallery-item:nth-child(5) img{
    min-height:580px;
}

.ca-about-gallery-item:hover img{
    transform:scale(1.025);
}

/* CTA */

.ca-about-cta{
    padding:70px 0;

    background:#f7efe6;
}

.ca-about-cta-inner{
    padding:55px 60px;

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:50px;

    border:1px solid #dbc4b5;
    border-radius:26px;

    background:#fffaf5;
}

.ca-about-cta h2{
    margin:0 0 18px;

    font-family:"Cormorant Garamond",serif;

    font-size:50px;
    line-height:.9;

    font-weight:500;

    color:#9f1c1c;
}

.ca-about-cta p{
    margin:0;

    color:#675149;

    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .ca-about-hero-grid,
    .ca-about-story-grid,
    .ca-about-gallery-head{
        grid-template-columns:1fr;
    }

    .ca-about-hero-image{
        order:-1;
    }

    .ca-about-numbers-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ca-about-number:nth-child(2){
        border-right:0;
    }

    .ca-about-number:nth-child(-n+2){
        border-bottom:1px solid rgba(159,28,28,.20);
    }

    .ca-about-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ca-about-cta-inner{
        align-items:flex-start;

        flex-direction:column;
    }
}

@media(max-width:600px){

    .ca-about-hero{
        padding:45px 0 65px;
    }

    .ca-about-hero-content h1{
        font-size:60px;
    }

    .ca-about-role{
        font-size:25px;
    }

    .ca-about-hero-image img{
        height:430px;
    }

    .ca-about-story{
        padding:65px 0;
    }

    .ca-about-story-content h2{
        font-size:42px;
    }

    .ca-about-story-image img{
        height:420px;
    }

    .ca-about-numbers-grid{
        grid-template-columns:1fr;
    }

    .ca-about-number{
        border-right:0;

        border-bottom:1px solid rgba(159,28,28,.20);
    }

    .ca-about-number:last-child{
        border-bottom:0;
    }

    .ca-about-goal{
        padding:70px 0;
    }

    .ca-about-goal h2{
        font-size:43px;
    }

    .ca-about-gallery{
        padding:70px 0;
    }

    .ca-about-gallery-head h2{
        font-size:44px;
    }

    .ca-about-gallery-grid{
        grid-template-columns:1fr;
    }

    .ca-about-gallery-item,
    .ca-about-gallery-item:nth-child(1),
    .ca-about-gallery-item:nth-child(5){
        grid-row:auto;
    }

    .ca-about-gallery-item img,
    .ca-about-gallery-item:nth-child(1) img,
    .ca-about-gallery-item:nth-child(5) img{
        min-height:350px;
    }

    .ca-about-cta-inner{
        padding:35px 25px;
    }

    .ca-about-cta h2{
        font-size:40px;
    }
}