.cat-opys{
    margin:20px 0;
    padding:0 0 15px 0;
    border-bottom:1px solid rgba(58,42,32,0.10);
}

.cat-nazva-h2{
    margin:0 0 10px 0;
    font-size:22px;
    line-height:26px;
    font-weight:700;
    color:var(--primary-text-color);
}

.cat-text{
    margin:0;

    font-size:15px;
    line-height:22px;

    color:var(--secondary-text-color);
    max-width:800px;
}


/* feedback */

.feedback-wrap{
    max-width:var(--maximum-width);
    margin:0 auto;
    padding:30px 20px;
}

.feedback-card{
    background:var(--bg-color-third);
    border:1px solid rgba(58,42,32,0.12);
    border-radius:16px;
    padding:30px;
}

.feedback-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(58,42,32,0.10);
}

.feedback-title{
    margin:0;
    font-size:26px;
    line-height:32px;
    font-weight:800;
    color:var(--primary-text-color);
}

.feedback-subtitle{
    margin:10px 0 0;
    font-size:15px;
    line-height:22px;
    color:var(--secondary-text-color);
    max-width:760px;
}

.feedback-home{
    display:inline-flex;
    align-items:center;
    gap:10px;
    height:40px;
    padding:0 14px;
    border-radius:12px;
    border:1px solid rgba(58,42,32,0.14);
    background:#ffffff;
    color:var(--primary-text-color);
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    line-height:18px;
    white-space:nowrap;
}

.feedback-home:hover{
    border-color:rgba(58,42,32,0.22);
}

.feedback-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.feedback-row{
    display:flex;
    gap:15px;
}

.feedback-col{
    width:100%;
}

.feedback-label{
    display:block;
    margin:0 0 8px;
    font-size:14px;
    line-height:18px;
    font-weight:700;
    color:var(--primary-text-color);
}

.feedback-field{
    width:100%;
    height:44px;
    padding:12px 12px;
    border-radius:12px;
    border:1px solid rgba(58,42,32,0.15);
    background:#ffffff;
    color:var(--primary-text-color);
    font-size:14px;
    line-height:18px;
    outline:none;
}

.feedback-field:focus{
    border-color:rgba(194,65,12,0.45);
}

.feedback-area{
    width:100%;
    min-height:180px;
    padding:12px 12px;
    border-radius:12px;
    border:1px solid rgba(58,42,32,0.15);
    background:#ffffff;
    color:var(--primary-text-color);
    font-size:14px;
    line-height:20px;
    outline:none;
    resize:vertical;
}

.feedback-area:focus{
    border-color:rgba(194,65,12,0.45);
}

.feedback-select{
    width:100%;
}

.feedback-select select{
    width:100%;
    height:44px;
    padding:10px 12px;
    border-radius:12px;
    border:1px solid rgba(58,42,32,0.15);
    background:#ffffff;
    color:var(--primary-text-color);
    font-size:14px;
    line-height:18px;
    outline:none;
}

.feedback-select select:focus{
    border-color:rgba(194,65,12,0.45);
}

.feedback-protect{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
}

.feedback-protect .feedback-field{
    max-width:280px;
}

.feedback-actions{
    margin-top:5px;
    display:flex;
    justify-content:flex-end;
}

.feedback-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 18px;
    border-radius:12px;
    border:1px solid rgba(58,42,32,0.14);
    background:var(--primary-color);
    color:#ffffff;
    font-weight:800;
    font-size:14px;
    line-height:18px;
    text-decoration:none;
    cursor:pointer;
}

.feedback-btn:hover{
    background:var(--primary-color-darker);
}

@media (max-width:700px){
    .feedback-card{
        padding:20px;
    }
    .feedback-head{
        flex-direction:column;
        align-items:flex-start;
    }
    .feedback-row{
        flex-direction:column;
    }
    .feedback-actions{
        justify-content:stretch;
    }
    .feedback-btn{
        width:100%;
    }
}

/* end feedback */

.strava-page-steps ul {
  list-style: none;
  counter-reset: step;
}

.strava-page-steps li {
  counter-increment: step;
}

.strava-page-steps li::before {
  content: counter(step) ". ";
  font-weight: 600;
}

.strava-page-page {
    max-width: var(--maximum-width);
    margin: 0 auto;
    color: var(--primary-text-color);
}

.strava-page-hero {
    background: var(--bg-color-third);
    border: 1px solid rgba(58,42,32,0.10);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(58,42,32,0.10);
}

.full-intro-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(58,42,32,0.10);
}

.full-intro-title {
    font-size: 26px;
    line-height: 1.18;
    font-weight: 700;
    margin: 0;
}

.full-intro-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.strava-page-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(231,196,138,0.35);
    border: 1px solid rgba(58,42,32,0.10);
    color: var(--secondary-text-color);
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}

.strava-page-meta-chip__label {
    color: var(--fourth-text-color);
    font-weight: 700;
}

.strava-page-meta-chip__value a {
    color: var(--primary-color);
    text-decoration: none;
}

.strava-page-meta-chip__value a:hover {
    color: var(--primary-color-darker);
    text-decoration: underline;
}

.full-intro-body {
    display: flex;
    gap: 14px;
    padding-top: 14px;
    align-items: stretch;
}

.strava-page-cover {
    max-width: 260px;
    /* min-width: 360px; */
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(58,42,32,0.12);
    background: rgba(241,226,195,0.35);
}

.strava-page-cover__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    max-width: 260px;
}

.strava-page-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
	justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* .strava-page-summary__text {
    font-size: 15px;
    line-height: 1.55;
    color: var(--secondary-text-color);
    background: rgba(246,239,227,0.55);
    border: 1px solid rgba(58,42,32,0.10);
    border-radius: 14px;
    padding: 12px;
} */

.strava-page-summary__text{
    font-size:15px;
    line-height:1.55;
    color:var(--secondary-text-color);

    background:rgba(246,239,227,0.55);
    border:1px solid rgba(58,42,32,0.10);
    border-radius:14px;
    padding:12px;

    max-width:100%;
    box-sizing:border-box;

    overflow-wrap:break-word;
    word-break:break-word;
}

.strava-page-facts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.strava-page-fact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(241,226,195,0.35);
    border: 1px solid rgba(58,42,32,0.10);
    font-size: 13px;
    line-height: 1;
}

.strava-page-fact__icon {
    color: var(--primary-color);
}

.strava-page-fact__key {
    color: var(--fourth-text-color);
    font-weight: 800;
}

.strava-page-fact__val {
    color: var(--primary-text-color);
    font-weight: 800;
}

.strava-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.strava-page-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(58,42,32,0.12);
    background: rgba(246,239,227,0.65);
    color: var(--primary-text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
}

.strava-page-action-btn:hover {
    background: rgba(231,196,138,0.35);
    border-color: rgba(58,42,32,0.18);
}

.strava-page-action-btn--primary {
    background: rgba(194,65,12,0.12);
    border-color: rgba(194,65,12,0.25);
    color: var(--primary-color-darker);
}

.strava-page-note {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--bg-color-third);
    border: 1px solid rgba(58,42,32,0.10);
    color: var(--secondary-text-color);
    font-size: 14px;
    line-height: 1.6;
}

.strava-page-share {
    margin-top: 12px;
    display: flex;
    gap: 10px;
	justify-content: center;
    align-items: center;
}

.strava-page-share__btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(58,42,32,0.12);
    background: var(--bg-color-third);
    color: var(--primary-text-color);
}

.strava-page-share i {font-size: 18px;}

.strava-page-share__btn:hover {
    background: rgba(231,196,138,0.35);
}

.strava-page-grid {
    margin-top: 14px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.strava-page-panel {
    background: var(--bg-color-third);
    border: 1px solid rgba(58,42,32,0.10);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(58,42,32,0.08);
    overflow: hidden;
}

.strava-page-panel--ingredients {
    width: 380px;
    min-width: 380px;
}

.strava-page-panel--steps {
    flex: 1;
}

.strava-page-panel__head {
    padding: 14px 14px 12px 14px;
    border-bottom: 1px solid rgba(58,42,32,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.strava-page-panel__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.strava-page-panel__title .fal {
    color: var(--primary-color);
}

.strava-page-panel__hint {
    font-size: 12px;
    line-height: 1.2;
    color: var(--fourth-text-color);
    font-weight: 800;
    background: rgba(231,196,138,0.35);
    border: 1px solid rgba(58,42,32,0.10);
    padding: 7px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.strava-page-panel__body {
    padding: 14px;
    color: var(--secondary-text-color);
    font-size: 14px;
    line-height: 1.65;
}

.strava-page-ingredients ul,
.strava-page-steps ol,
.strava-page-steps ul {
    margin: 0;
    padding-left: 18px;
}

.strava-page-ingredients li,
.strava-page-steps li {
    font-weight: 500;
    margin: 6px 0;
}

.strava-page-steps h3,
.strava-page-steps h4 {
    margin: 12px 0 8px 0;
    color: var(--primary-text-color);
}

.strava-page-tags {
    padding: 12px 14px 14px 14px;
    border-top: 1px solid rgba(58,42,32,0.10);
    background: rgba(246,239,227,0.40);
}

.strava-page-tags__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-text-color);
    font-size: 13px;
    line-height: 1;
    margin-bottom: 8px;
}

.strava-page-tags__items a {
    display: inline-flex;
    margin: 0 8px 8px 0;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(241,226,195,0.45);
    border: 1px solid rgba(58,42,32,0.10);
    color: var(--primary-color-darker);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

.strava-page-tags__items a:hover {
    background: rgba(231,196,138,0.45);
}

.strava-page-tips {
    margin-top: 12px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(194,65,12,0.20);
    background: rgba(194,65,12,0.08);
}

.strava-page-tips__head {
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color-darker);
    border-bottom: 1px solid rgba(194,65,12,0.15);
}

.strava-page-tips__body {
    padding: 12px;
    color: var(--secondary-text-color);
    font-size: 14px;
    line-height: 1.6;
}

.strava-page-block {
    margin-top: 14px;
    background: var(--bg-color-third);
    border: 1px solid rgba(58,42,32,0.10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(58,42,32,0.08);
}

.strava-page-block__head {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(58,42,32,0.10);
    background: rgba(246,239,227,0.45);
}

.strava-page-block__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--primary-text-color);
}

.strava-page-block__body {
    padding: 14px;
}

.strava-page-comments {
    margin-top: 14px;
    background: var(--bg-color-third);
    border: 1px solid rgba(58,42,32,0.10);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(58,42,32,0.08);
    overflow: hidden;
}

.strava-page-comments__head {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(58,42,32,0.10);
    background: rgba(246,239,227,0.45);
}

.strava-page-comments__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--primary-text-color);
}

.strava-page-comments__body {
    padding: 14px;
}

.strava-page-comments__form {
    margin-bottom: 14px;
}

.strava-page-comments__tree {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strava-page-comments__item {
    margin: 0;
}

.rcard-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.rcard-list-2{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

/* 2 колонки */
.rcard-list-2 > *{
    width:calc(50% - 5px) !important;
}

/* ниже 600px - 1 колонка */
@media (max-width:600px){
    .rcard-list-2 > *{
        width:100% !important;
    }
}

.similar-strava-item{
    background:#ffffff;
    border:1px solid rgba(58,42,32,0.12);
    border-radius:10px;
}

.similar-strava-link{
    display:flex;
    align-items:center;
    gap:10px;

    padding:10px;

    text-decoration:none;
    color:var(--primary-text-color);
}

.similar-strava-icon{
    width:44px;
    height:44px;

    border-radius:8px;
    overflow:hidden;
    flex:0 0 auto;
}

.similar-strava-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.similar-strava-title{
    font-size:15px;
    line-height:18px;
    font-weight:600;

    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.cat-search{
    margin: 0px auto 10px;
}

.cat-search p {
    font-size: 13px;
    padding: 10px 20px;
    font-weight: 400;
}

.cat-search-input{
    width:100%;
    height:40px;
    padding:10px;

    border:1px solid rgba(58,42,32,0.15);
    border-radius:10px;

    background:#ffffff;
    color:var(--primary-text-color);

    font-size:14px;
    line-height:18px;
    outline:none;
}

.cat-search-input:focus{
    border-color:rgba(58,42,32,0.30);
}

.cat-search-empty{
    display:none;
    padding:10px;
    margin:10px 0 0;

    border:1px solid rgba(58,42,32,0.12);
    border-radius:10px;

    background:#ffffff;
    color:var(--secondary-text-color);

    font-size:14px;
    line-height:18px;
    font-weight:600;
}

.cat-search-empty.is-show{
    display:block;
}


.rcard {
    background: var(--bg-color-third);
    border: 1px solid rgba(58,42,32,0.10);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(58,42,32,0.08);
    overflow: hidden;
    width: 100%;
	padding: 10px;

	display: flex;
	flex-direction: column;
}

@media (max-width: 600px) {
    .rcard {
        width: 100%;
    }
}

@media (min-width: 601px) {
    .rcard {
        width: calc(50% - 7.5px);
    }
}

.strava-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
	justify-content: space-between;
    color: inherit;
    padding: 12px;
}

.strava-media {
    width: 132px;
    min-width: 132px;
    height: 96px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(58,42,32,0.12);
    background: rgba(241,226,195,0.35);
    position: relative;
}

.strava-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.strava-badge {
    position: absolute;
    left: 8px;
    top: 8px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(194,65,12,0.92);
    color: var(--third-text-color);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

.strava-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
	margin-top: auto;
}

.strava-title {
    font-weight: 700;
	text-align: right;
    max-width: 100%;
    overflow: hidden;
    word-break: break-word;
    font-size: 16px;
    line-height: 1.25;
    color: var(--primary-text-color);
}

.strava-sub {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--secondary-text-color);
    font-size: 13px;
    line-height: 1.2;
}

.strava-cat a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.strava-cat a:hover {
    color: var(--primary-color-darker);
    text-decoration: underline;
}

.strava-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.strava-fact {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(231,196,138,0.30);
    border: 1px solid rgba(58,42,32,0.10);
    color: var(--secondary-text-color);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.strava-fact .fal {
    color: var(--primary-color);
}
/* 
.strava-desc {
    color: var(--secondary-text-color);
    font-size: 13px;
    line-height: 1.4;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
} */

.strava-desc{
    color:var(--secondary-text-color);
    font-size:13px;
    line-height:18px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;

    overflow:hidden;
}


.strava-actions {
    display: flex;
    gap: 10px;
    margin-top: 2px;
	justify-content: space-between;
}

.strava-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 14px;
    border: 1px solid rgba(58,42,32,0.12);
    background: rgba(246,239,227,0.65);
    color: var(--primary-text-color);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

.strava-btn--primary {
    background: rgba(194,65,12,0.12);
    border-color: rgba(194,65,12,0.25);
    color: var(--primary-color-darker);
}

.subcat-list{
    display:flex;
    width: 100%;
    flex-wrap:wrap;
    gap:10px;
    padding: 0px 0px 35px 0px;
    margin: 15px auto;
    border-bottom: 1px solid rgba(58, 42, 32, 0.12);
    list-style:none;
}

.subcat-card{
    width:calc(33% - 5px);
    margin:0;
    padding:0;
}

.subcat-link{
    display:flex;
    align-items:center;
    gap:10px;

    padding:10px;
    min-height:60px;

    background:#ffffff;
    border:1px solid rgba(58,42,32,0.12);
    border-radius:10px;

    color:var(--primary-text-color);
    text-decoration:none;

    box-shadow:0 10px 20px rgba(58,42,32,0.06);
    transition:background .15s ease, border-color .15s ease, transform .15s ease;
}

.subcat-link:hover{
    background:#f7fbff;
    border-color:rgba(58,42,32,0.18);
    transform:translateY(-1px);
}

.subcat-icon-wrap{
    width:44px;
    height:44px;
    border-radius:10px;
    background:rgba(58,42,32,0.06);
    border:1px solid rgba(58,42,32,0.10);

    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex:0 0 auto;
}

.subcat-icon{
    width:28px;
    height:28px;
    display:block;
}

.subcat-text{
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;
    flex:1 1 auto;
}

.subcat-title{
    font-size:15px;
    line-height:18px;
    font-weight:700;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.subcat-meta{
    font-size:12px;
    line-height:14px;
    font-weight:600;
    color:rgba(58,42,32,0.70);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.subcat-arrow{
    font-size:18px;
    line-height:18px;
    opacity:0.50;
    flex:0 0 auto;
}

.subcat-children{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    padding:10px 0 0;
    margin:0;
    list-style:none;
}

.subcat-children li{
    width:calc(50% - 5px);
}
.subcat-children a{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:40px;
    padding:10px;

    background:#f5f5f5;
    border:1px solid #e5e5e5;
    border-radius:10px;

    color:#111;
    text-decoration:none;

    font-size:14px;
    line-height:18px;
    font-weight:600;
}
.subcat-children a:hover{
    background:#ededed;
    border-color:#d5d5d5;
}

@media (max-width:600px){
    .subcat-card{width:100%;}
    .subcat-children li{width:100%;}
}


@media (max-width: 980px) {
    /* .full-intro-body { flex-direction: column; } */
    .strava-page-cover {  min-width: 0; }
    .strava-page-panel--ingredients { width: 100%; min-width: 0; }
    .strava-page-grid { flex-direction: column; }
}

@media (max-width: 950px) {
    .full-intro-body {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .full-intro-body {flex-direction: column; display: flex; align-items: center; justify-content: center;}
    .strava-link {flex-direction: column; justify-content: center; align-items: center; padding: 12px 12px 0px 12px;}
    .strava-title {text-align: center;}
    .strava-desc {max-height: 60px; overflow: hidden; text-overflow: ellipsis; white-space: normal; max-width: stretch;}

}

@media (max-width: 600px) {
    /* .strava-actions {justify-content: center;} */
    .strava-desc {text-align: center;}
    .similar-strava-title {white-space: normal;}

}

@media (max-width: 580px) {
    .full-intro-head { flex-direction: column; align-items: stretch; }
    .full-intro-meta { justify-content: flex-start; }
    .strava-link { flex-direction: column; }
    .strava-media { width: 100%; min-width: 0; height: 170px; }
}

@media (max-width: 480px) {

}


