:root {
    --bg: #0f0d0b;
    --bg-soft: #17130f;
    --card: #211b16;
    --text: #f6efe6;
    --muted: #b8aaa0;
    --accent: #c6784f;
    --line: rgba(246, 239, 230, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    color: var(--text);
}

.site-logo {
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-logo span {
    color: var(--accent);
}

.site-nav {
    display: flex;
    gap: 36px;
    font-size: 14px;
    color: var(--muted);
}

.hero-featured {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 140px 72px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15,13,11,0.94) 0%, rgba(15,13,11,0.72) 38%, rgba(15,13,11,0.2) 100%),
        radial-gradient(circle at 75% 45%, rgba(198,120,79,0.45), transparent 34%),
        linear-gradient(135deg, #2b1710, #0f0d0b 65%);
}

.hero-content {
    position: relative;
    max-width: 760px;
    z-index: 2;
}

.hero-label,
.section-label {
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(82px, 11vw, 170px);
    line-height: 0.86;
    font-weight: 400;
    letter-spacing: -0.07em;
}

.hero-content h1 em {
    color: var(--accent);
    font-style: italic;
}

.hero-content p {
    max-width: 520px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.55;
}

.hero-meta {
    margin-top: 34px;
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 15px;
}

.hero-meta span {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.hero-button {
    display: inline-flex;
    margin-top: 42px;
    padding: 17px 26px;
    border-radius: 999px;
    background: var(--text);
    color: var(--bg);
    font-size: 15px;
}

.ai-section,
.recipe-section {
    padding: 110px 72px;
}

.ai-section {
    background: var(--bg-soft);
    text-align: center;
}

.ai-section h2,
.recipe-section h2 {
    margin: 0;
    font-size: clamp(44px, 6vw, 92px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.06em;
}

.ai-search {
    margin: 46px auto 0;
    max-width: 760px;
    display: flex;
    gap: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
}

.ai-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 18px;
    color: var(--text);
    font-size: 17px;
}

.ai-search button {
    border: 0;
    border-radius: 999px;
    padding: 15px 22px;
    background: var(--accent);
    color: var(--text);
    cursor: pointer;
    font-size: 15px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 44px;
}

.section-head a {
    color: var(--accent);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.recipe-card {
    overflow: hidden;
    border-radius: 28px;
    background: var(--card);
    border: 1px solid var(--line);
}

.recipe-card-image {
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 60% 40%, rgba(198,120,79,0.55), transparent 34%),
        linear-gradient(135deg, #3a1f14, #17130f);
}

.recipe-card-body {
    padding: 26px;
}

.recipe-card-body span {
    color: var(--accent);
    font-size: 13px;
}

.recipe-card-body h3 {
    margin: 12px 0 14px;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 400;
}

.recipe-card-body p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 900px) {
    .site-header {
        padding: 24px;
    }

    .site-nav {
        display: none;
    }

    .hero-featured,
    .ai-section,
    .recipe-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-featured {
        padding-bottom: 56px;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
    }

    .hero-meta {
        flex-wrap: wrap;
    }

    .ai-search {
        border-radius: 28px;
        flex-direction: column;
    }
}
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;

    background:url("assets/images/hero.jpg") center center;
    background-size:cover;

    transform:scale(1.05);
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(10,10,10,.72),
        rgba(10,10,10,.45),
        rgba(10,10,10,.2)
    );
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:720px;
    color:#fff;
}

.hero-subtitle{

    display:block;

    margin-bottom:24px;

    letter-spacing:5px;

    text-transform:uppercase;

    color:#d1b49d;

    font-size:13px;
}

.hero h1{

    font-size:92px;

    line-height:0.95;

    margin-bottom:30px;

    font-weight:700;
}

.hero h1 span{

    color:#cb7a4d;

    font-style:italic;
}

.hero p{

    font-size:22px;

    line-height:1.7;

    color:#ddd;

    margin-bottom:50px;

    max-width:620px;
}

.hero-search{

    display:flex;

    background:#fff;

    border-radius:60px;

    overflow:hidden;

    max-width:650px;
}

.hero-search input{

    flex:1;

    border:none;

    padding:24px 30px;

    font-size:18px;

    outline:none;
}

.hero-search button{

    border:none;

    padding:0 40px;

    background:#cb7a4d;

    color:#fff;

    cursor:pointer;

    font-size:18px;

    transition:.3s;
}

.hero-search button:hover{

    background:#a95f37;
}

@media(max-width:900px){

.hero h1{

font-size:58px;

}

.hero-search{

flex-direction:column;

border-radius:20px;

}

.hero-search button{

padding:20px;

}

}
/* Улучшение первого экрана */
.site-header {
    padding-left: 88px;
    padding-right: 88px;
}

.hero {
    padding-left: 88px;
    padding-right: 88px;
}

.hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(5,5,5,.88) 0%,
        rgba(5,5,5,.68) 38%,
        rgba(5,5,5,.25) 100%
    );
}

.hero h1 {
    font-size: clamp(72px, 8vw, 128px);
}

/* Блок "Приготовить сегодня" */
.today-section {
    background: #0f0d0b;
    padding: 110px 88px 130px;
    color: #fff;
}

.today-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 42px;
}

.today-head span {
    color: #cb7a4d;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 13px;
}

.today-head h2 {
    margin: 14px 0 0;
    font-size: clamp(44px, 6vw, 86px);
    line-height: .95;
}

.today-head a {
    color: #cb7a4d;
    text-decoration: none;
    font-size: 18px;
}

.today-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
}

.today-card {
    min-height: 420px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    background: #211b16;
    border: 1px solid rgba(255,255,255,.12);
}

.today-card.large {
    grid-row: span 2;
    min-height: 864px;
}

.today-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.78)),
        url("assets/images/hero.jpg") center/cover;
    transition: transform .5s ease;
}

.today-card:hover::before {
    transform: scale(1.06);
}

.today-card-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
}

.today-card-content span {
    color: #d99a75;
    font-size: 14px;
}

.today-card-content h3 {
    margin: 12px 0 14px;
    font-size: 34px;
    line-height: 1.02;
}

.today-card.large h3 {
    font-size: 58px;
}

.today-card-content p {
    margin: 0;
    color: #d8cec5;
}

@media(max-width: 900px) {
    .site-header,
    .hero,
    .today-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .today-head {
        display: block;
    }

    .today-grid {
        grid-template-columns: 1fr;
    }

    .today-card.large {
        min-height: 520px;
    }
}
.featured-recipes {
    padding: 120px 88px;
    background: #0f0d0b;
    color: #fff;
}

.featured-head {
    margin-bottom: 52px;
}

.featured-head p {
    margin: 0 0 18px;
    color: #cb7a4d;
    font-size: 13px;
    letter-spacing: 5px;
}

.featured-head h2 {
    margin: 0;
    font-size: clamp(48px, 6vw, 92px);
    line-height: .95;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 24px;
}

.featured-card {
    min-height: 390px;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #1b1714;
    border: 1px solid rgba(255,255,255,.12);
}

.featured-card-large {
    grid-row: span 2;
    min-height: 804px;
}

.featured-card-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.82)),
        url("assets/images/hero.jpg") center/cover;
    transition: transform .6s ease;
}

.featured-card:hover .featured-card-bg {
    transform: scale(1.07);
}

.featured-card-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
}

.featured-card-content span {
    color: #d99a75;
    font-size: 14px;
}

.featured-card-content h3 {
    margin: 12px 0 12px;
    font-size: 32px;
    line-height: 1.05;
}

.featured-card-large h3 {
    font-size: 58px;
}

.featured-card-content p {
    margin: 0;
    color: #d8cec5;
}

@media(max-width:900px) {
    .featured-recipes {
        padding: 80px 24px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card-large {
        min-height: 520px;
    }
}
/* Финальная корректировка главной */

.hero {
    min-height: 92vh;
}

.featured-recipes {
    padding-top: 90px;
}

.featured-head h2 {
    font-size: clamp(52px, 5vw, 82px);
    max-width: 980px;
}

.featured-grid {
    margin-top: 40px;
}

.site-footer {
    display: none;
}
@media (max-width: 768px) {
    .site-header {
        padding: 28px 24px;
    }

    .site-nav {
        display: none;
    }

    .hero {
        min-height: 100svh;
        padding: 140px 24px 56px;
        align-items: center;
    }

    .hero-bg {
        background-position: 65% center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 0.28em;
        line-height: 1.7;
    }

    .hero h1 {
        font-size: clamp(58px, 19vw, 82px);
        line-height: 0.9;
        letter-spacing: -0.05em;
    }

    .hero h1 span {
        display: block;
        font-size: 0.92em;
    }

    .hero p {
        font-size: 24px;
        line-height: 1.35;
        max-width: 100%;
    }

    .hero-search {
        width: 100%;
        max-width: 100%;
        border-radius: 28px;
        flex-direction: column;
    }

    .hero-search input {
        width: 100%;
        padding: 24px;
        font-size: 18px;
    }

    .hero-search button {
        width: 100%;
        padding: 22px 24px;
        font-size: 18px;
    }

    .featured-recipes {
        padding: 80px 24px;
    }

    .featured-head h2 {
        font-size: 48px;
        line-height: 0.95;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card,
    .featured-card-large {
        min-height: 460px;
    }

    .featured-card-large h3 {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 24px 70px;
    }

    .hero h1 {
        font-size: 64px !important;
        line-height: 0.9;
        letter-spacing: -0.04em;
    }

    .hero p {
        font-size: 28px;
        line-height: 1.28;
        margin-top: 28px;
    }

    .hero-search input {
        font-size: 20px;
        padding: 28px 24px;
    }

    .hero-search button {
        font-size: 22px;
        padding: 26px 24px;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: 58px !important;
    }

    .hero p {
        font-size: 24px;
    }

    .hero-search {
        margin-top: 36px;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        max-width: 100%;
        overflow: hidden;
    }

    .hero h1 span {
        display: block;
        font-size: 52px !important;
        line-height: 0.9;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .hero p {
        font-size: 22px !important;
        line-height: 1.32;
    }

    .hero-search {
        overflow: hidden;
    }

    .hero-search input {
        font-size: 18px !important;
    }

    .hero-search input::placeholder {
        font-size: 18px;
    }
}

@media (max-width: 390px) {
    .hero h1 {
        font-size: 52px !important;
    }

    .hero h1 span {
        font-size: 46px !important;
    }
}
.mobile-title {
    display: none;
}

@media (max-width: 768px) {
    .desktop-title {
        display: none !important;
    }

    .mobile-title {
        display: block !important;
        color: #cb7a4d;
        font-style: italic;
        font-size: 64px !important;
        line-height: 0.9;
    }

    .hero h1 {
        font-size: 64px !important;
    }
}

@media (max-width: 390px) {
    .hero h1,
    .mobile-title {
        font-size: 56px !important;
    }
}
.featured-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.featured-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.single-recipe {
    background: #0f0d0b;
    color: #fff;
    min-height: 100vh;
}

.single-recipe-hero {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 160px 88px 80px;
}

.single-recipe-inner {
    max-width: 980px;
}

.back-link {
    display: inline-block;
    margin-bottom: 36px;
    color: #cb7a4d;
    text-decoration: none;
}

.recipe-label {
    display: block;
    margin-bottom: 24px;
    color: #d1b49d;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 13px;
}

.single-recipe h1 {
    margin: 0;
    font-size: clamp(56px, 8vw, 120px);
    line-height: .9;
}

.single-recipe-content {
    padding: 90px 88px 130px;
}

.recipe-content {
    max-width: 820px;
    font-size: 22px;
    line-height: 1.7;
    color: #e8ded5;
}

.recipe-content h2,
.recipe-content h3 {
    color: #fff;
    line-height: 1.1;
}

@media(max-width: 768px) {
    .single-recipe-hero {
        padding: 130px 24px 60px;
    }

    .single-recipe-content {
        padding: 60px 24px 90px;
    }

    .single-recipe h1 {
        font-size: 52px;
    }

    .recipe-content {
        font-size: 19px;
    }
}
.recipe-page {
    background: #0f0d0b;
    color: #fff;
}

.recipe-hero {
    min-height: 82vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 160px 88px 90px;
}

.recipe-hero-inner {
    max-width: 1040px;
}

.recipe-back {
    display: inline-block;
    margin-bottom: 36px;
    color: #cb7a4d;
    text-decoration: none;
    font-size: 18px;
}

.recipe-kicker {
    display: block;
    margin-bottom: 24px;
    color: #d1b49d;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 13px;
}

.recipe-hero h1 {
    margin: 0;
    font-size: clamp(58px, 8vw, 128px);
    line-height: .88;
    max-width: 1050px;
}

.recipe-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.recipe-meta span {
    padding: 11px 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #e6d8cc;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(12px);
}

.start-cooking-btn {
    display: inline-flex;
    margin-top: 42px;
    padding: 18px 30px;
    border-radius: 999px;
    background: #cb7a4d;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.recipe-body {
    padding: 110px 88px 140px;
}

.recipe-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 820px);
    gap: 80px;
    align-items: start;
}

.recipe-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.recipe-sidebar-card {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
.recipe-sidebar-card {
    max-height: calc(100vh - 130px);
    overflow-y: auto;

    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* IE */
}

.recipe-sidebar-card::-webkit-scrollbar {
    display: none;
}

.recipe-sidebar-card::-webkit-scrollbar-thumb {
    background: rgba(203,122,77,.7);
    border-radius: 20px;
}

.recipe-sidebar-card::-webkit-scrollbar-track {
    background: transparent;
}

.recipe-sidebar-card {
    padding: 34px;
    border-radius: 28px;
    background: #1b1714;
    border: 1px solid rgba(255,255,255,.12);
}

.recipe-sidebar-card h3 {
    margin: 0 0 24px;
    font-size: 32px;
}

.recipe-sidebar-card ul {
    margin: 0;
    padding-left: 20px;
    color: #e6d8cc;
    font-size: 19px;
    line-height: 1.8;
}

.recipe-main-content h2 {
    margin: 0 0 28px;
    font-size: 56px;
    line-height: 1;
}

.recipe-text {
    color: #e6d8cc;
    font-size: 22px;
    line-height: 1.75;
}

.recipe-text p {
    margin-top: 0;
}

@media(max-width: 900px) {
    .recipe-hero {
        min-height: 80vh;
        padding: 130px 24px 60px;
    }

    .recipe-hero h1 {
        font-size: 52px;
    }

    .recipe-body {
        padding: 70px 24px 90px;
    }

    .recipe-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .recipe-sidebar {
        position: static;
    }

    .recipe-main-content h2 {
        font-size: 42px;
    }

    .recipe-text {
        font-size: 19px;
    }
}
.recipe-steps {
    margin-top: 70px;
}

.recipe-steps h2 {
    margin-bottom: 36px;
}

.recipe-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.recipe-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #cb7a4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.recipe-step-text {
    font-size: 23px;
    line-height: 1.55;
    color: #e6d8cc;
}
.ingredients-head {
    display: block;
    margin-bottom: 24px;
}

.ingredients-head h3 {
    margin: 0 0 18px;
}

.copy-ingredients {
    width: 100%;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: 13px 18px;
    background: rgba(255,255,255,.06);
    color: #e6d8cc;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}

.copy-ingredients:hover {
    background: #cb7a4d;
    color: #fff;
}
.recipe-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.recipe-sidebar-card {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}

.recipe-sidebar-card::-webkit-scrollbar {
    width: 8px;
}

.recipe-sidebar-card::-webkit-scrollbar-thumb {
    background: rgba(203,122,77,.7);
    border-radius: 20px;
}

.recipe-sidebar-card::-webkit-scrollbar-track {
    background: transparent;
}
.copy-ingredients{
    width:100%;
    margin-top:24px;
    padding:15px 18px;

    border:none;
    border-radius:16px;

    background:#cb7a4d;
    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:.25s;
}

.copy-ingredients:hover{
    background:#d88b61;
    transform:translateY(-2px);
}

.copy-ingredients:active{
    transform:scale(.98);
}
.shopping-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(14px);
}

.shopping-modal.active {
    display: flex;
}

.shopping-modal-box {
    position: relative;
    width: min(560px, 100%);
    padding: 38px;
    border-radius: 34px;
    background: #1b1714;
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.shopping-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.shopping-modal-box h3 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1;
}

.shopping-modal-box p {
    margin: 0 0 24px;
    color: #d8cec5;
    font-size: 18px;
    line-height: 1.5;
}

.shopping-list-text {
    width: 100%;
    height: 260px;
    resize: none;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.14);
    background: #100e0c;
    color: #e8ded5;
    font-size: 17px;
    line-height: 1.6;
}

.shopping-copy-btn {
    width: 100%;
    margin-top: 18px;
    padding: 16px 20px;
    border: 0;
    border-radius: 18px;
    background: #cb7a4d;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

@media(max-width: 768px) {
    .shopping-modal-box {
        padding: 30px 22px;
        border-radius: 28px;
    }

    .shopping-modal-box h3 {
        font-size: 32px;
    }
}
.recipe-short-description {
    max-width: 720px;
    margin: 32px 0 0;
    color: #e6d8cc;
    font-size: 24px;
    line-height: 1.45;
}
.recipe-timer {
    margin: 24px 0 10px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    max-width: 520px;
}

.recipe-timer-label {
    color: #e6d8cc;
    font-size: 18px;
    line-height: 1.3;
}

.recipe-timer-time {
    margin-top: 6px;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.recipe-timer-btn {
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    background: #cb7a4d;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.recipe-timer-btn:hover {
    background: #d88b61;
}

.recipe-timer {
    margin: 22px 0 8px;
    padding: 18px;
    max-width: 460px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(203,122,77,.18), rgba(255,255,255,.04));
    border: 1px solid rgba(203,122,77,.28);
}

.recipe-timer-label {
    margin-bottom: 12px;
    color: #e6d8cc;
    font-size: 17px;
}

.recipe-timer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.recipe-timer-time {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .04em;
}

.recipe-timer-actions {
    display: flex;
    gap: 8px;
}

.recipe-timer-btn,
.recipe-timer-reset {
    border: 0;
    border-radius: 999px;
    padding: 11px 16px;
    background: #cb7a4d;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.recipe-timer-reset {
    background: rgba(255,255,255,.12);
}
.recipe-timer {
    display: block;
    max-width: 520px;
    padding: 22px 24px;
}

.recipe-timer-label {
    display: block;
    margin-bottom: 16px;
    color: #e6d8cc;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.recipe-timer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.recipe-timer-time {
    font-size: 46px;
}

.recipe-timer-actions {
    display: flex;
    gap: 10px;
}