/* ========== SERVICES PAGE ========== */

/* Hero секция */
.services-hero {
    background: rgb(191 163 137);
    padding: 80px 0;
    color: #5d3a1a;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-hero-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
    opacity: 0.95;
}

.services-hero-content .welcome-text {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    font-style: italic;
}

/* Список услуг */
.services-list {
    padding: 60px 0;
    background: #faf7f2;
}

/* Категория услуг */
.service-category {
    margin-bottom: 60px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b87c4a, #5d3a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 40px;
    color: white;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #5d3a1a;
    margin-bottom: 12px;
}

.category-description {
    font-size: 16px;
    color: #9b7a5a;
    max-width: 600px;
    margin: 0 auto;
}

/* Сетка услуг */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Карточка услуги */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e6d5c0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #b87c4a;
}

/* Изображение карточки */
.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e85d4a, #ff8c42);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Контент карточки */
.service-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #5d3a1a;
    margin-bottom: 10px;
}

.service-card-content p {
    font-size: 14px;
    color: #9b7a5a;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

/* Кнопки действий */
.service-card-actions {
    margin-top: auto;
    padding-top: 15px;
}

.btn-add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, #b87c4a, #9b5e2e);
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 124, 74, 0.3);
    background: #5d3a1a;
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

/* Бейдж подарка */
.gift-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e85d4a, #ff8c42);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gift-badge i {
    font-size: 12px;
}

/* Баннер преимуществ */
.services-benefits {
    background: white;
    padding: 60px 0;
    border-top: 1px solid #e6d5c0;
    border-bottom: 1px solid #e6d5c0;
}

.services-benefits h2 {
    text-align: center;
    font-size: 36px;
    color: #5d3a1a;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #faf7f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.benefit-icon i {
    font-size: 36px;
    color: #b87c4a;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: #b87c4a;
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-card h3 {
    font-size: 20px;
    color: #5d3a1a;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #9b7a5a;
    line-height: 1.5;
}

/* Дополнительные стили для фильтра категорий */
.category-filter-section {
    background: white;
    border-radius: 60px;
    padding: 15px 25px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 90;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.filter-category-btn {
    background: #f8f6f3;
    border: 1px solid #e8dfd5;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: #5d3a1a;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.filter-category-btn i {
    font-size: 16px;
    color: #b87c4a;
}

.filter-category-btn:hover {
    background: #b87c4a;
    border-color: #b87c4a;
    color: white;
    transform: translateY(-2px);
}

.filter-category-btn:hover i {
    color: white;
}

.filter-category-btn.active {
    background: linear-gradient(135deg, #b87c4a 0%, #9b5e2e 100%);
    border-color: #b87c4a;
    color: white;
    box-shadow: 0 4px 15px rgba(184, 124, 74, 0.3);
}

.filter-category-btn.active i {
    color: white;
}

.service-category {
    transition: all 0.4s ease;
}

.service-category.hidden-category {
    display: none;
}

html {
    scroll-behavior: smooth;
}

/* Тосты */
.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #4caf50;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10002;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
}

.cart-toast.error {
    background: #f44336;
}

.cart-toast.info {
    background: #2196f3;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========== МОДАЛЬНОЕ ОКНО (ПРЕМИУМ ВЕРСИЯ) ========== */
.service-modal,
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

/* ФИКС ОТКРЫТИЯ - максимальная специфичность */
.service-modal.active,
.auth-modal.active,
body .service-modal.active,
html body .service-modal.active {
    display: flex !important;
}

/* Эффектный Overlay */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(93, 58, 26, .15), rgba(0, 0, 0, .78));
    backdrop-filter: blur(10px);
    cursor: pointer;
}

/* Премиум контейнер - увеличенная ширина */
.modal-container {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 247, 242, .98));
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 30px 80px rgba(93, 58, 26, .25), 0 10px 30px rgba(184, 124, 74, .15);
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    overflow: hidden;
    animation: modalFadeIn 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Золотое свечение сверху */
.modal-container::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(184, 124, 74, .18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Премиум анимация */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.92);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Прокачанный заголовок */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: linear-gradient(135deg, #fff9f2 0%, #f6eee5 100%);
    border-bottom: 1px solid #efe3d6;
    position: relative;
    z-index: 1;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: #5d3a1a;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #b87c4a;
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #9b5e2e;
    transform: rotate(90deg);
    background: rgba(184, 124, 74, .1);
}

/* Плавный скролл */
.modal-body {
    padding: 32px;
    max-height: calc(85vh - 82px);
    overflow-y: auto;
    position: relative;
    z-index: 1;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f4eee8;
    border-radius: 20px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #c49a73;
    border-radius: 20px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #b87c4a;
}

/* ========== НОВАЯ СТРУКТУРА: ФОТО СВЕРХУ, КОНТЕНТ ПОД НЕЙ ========== */

/* Фото услуги - вверху на всю ширину */
.modal-image {
    margin-bottom: 28px;
    border-radius: 24px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    transition: transform 0.4s ease;
}

.modal-image img:hover {
    transform: scale(1.02);
}

/* Описание услуги */
.modal-info .service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 28px;
    font-size: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #efe3d6;
}

/* Контент после фото - обычный поток */
.modal-content {
    width: 100%;
}

/* Две колонки для выбора и корзины (рядом) */
.modal-two-columns {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    margin-top: 20px;
}

/* Левая колонка - выбор опций */
.modal-options-col {
    overflow-y: auto;
    max-height: 400px;
    padding-right: 8px;
}

.modal-options-col::-webkit-scrollbar {
    width: 6px;
}

.modal-options-col::-webkit-scrollbar-track {
    background: #f4eee8;
    border-radius: 10px;
}

.modal-options-col::-webkit-scrollbar-thumb {
    background: #c49a73;
    border-radius: 10px;
}

/* Правая колонка - корзина (sticky) */
.modal-cart-col {
    position: sticky;
    top: 0;
    align-self: start;
}

/* Варианты услуг */
.variants-section {
    margin-bottom: 24px;
}

.variants-section h3,
.special-options h3 {
    font-size: 18px;
    font-weight: 600;
    color: #5d3a1a;
    margin-bottom: 12px;
    margin-top: 0;
}

.variants-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.variant-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #ffffff, #fcfaf7);
    border: 1px solid #ece5dd;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-item:hover {
    border-color: #b87c4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 124, 74, .12);
}

.variant-item.selected {
    background: linear-gradient(135deg, #fff8f2, #fff1e5);
    border-color: #b87c4a;
    box-shadow: 0 10px 25px rgba(184, 124, 74, .15);
}

.variant-radio {
    width: 18px;
    height: 18px;
    accent-color: #b87c4a;
}

.variant-info {
    flex: 1;
}

.variant-name {
    font-weight: 600;
    color: #5d3a1a;
    margin-bottom: 2px;
    font-size: 14px;
}

.variant-description {
    font-size: 12px;
    color: #9b7a5a;
}

.variant-price {
    font-weight: 700;
    color: #b87c4a;
    white-space: nowrap;
    font-size: 16px;
}

/* ========== УЛУЧШЕННЫЕ СТИЛИ ДЛЯ ЗАВТРАКОВ ========== */

/* Аккордеон для категорий */
.breakfast-category {
    margin-bottom: 12px;
    border: 1px solid #ece5dd;
    border-radius: 14px;
    background: white;
    overflow: hidden;
    margin-top: 15px;
}

.breakfast-category summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #5d3a1a;
    background: #faf7f3;
    transition: all 0.3s;
    list-style: none;
}

.breakfast-category summary::-webkit-details-marker {
    display: none;
}

.breakfast-category summary::after {
    content: "▼";
    font-size: 11px;
    transition: transform 0.3s;
    color: #b87c4a;
}

.breakfast-category[open] summary::after {
    transform: rotate(180deg);
}

.breakfast-category summary:hover {
    background: #fff4ea;
}

.category-icon-small {
    margin-right: 8px;
    font-size: 14px;
}

.category-count {
    font-size: 11px;
    color: #b87c4a;
    margin-left: 8px;
    font-weight: normal;
}

/* Сетка 2 колонки для опций */
.extras-list.radio-list,
.extras-list.checkbox-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
}

/* Компактные карточки */
.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    background: #faf7f3;
    border: 1px solid #ece5dd;
    border-radius: 10px;
    transition: 0.2s;
    min-height: 48px;
}

.extra-item:hover {
    border-color: #b87c4a;
    background: #fff;
}

.extra-item.selected {
    border-color: #b87c4a;
    background: #fff4ea;
    box-shadow: 0 2px 6px rgba(184, 124, 74, 0.1);
}

.extra-item input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #b87c4a;
    flex-shrink: 0;
}

.extra-item label {
    flex: 1;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.3;
    color: #5d3a1a;
}

.extra-item .extra-price {
    font-size: 11px;
    font-weight: 600;
    color: #b87c4a;
    white-space: nowrap;
}

.extra-item .extra-price.plus {
    color: #4caf50;
}

.required-badge {
    font-size: 9px;
    background: #e8dfd5;
    padding: 2px 6px;
    border-radius: 10px;
    color: #5d3a1a;
    margin-left: 6px;
    white-space: nowrap;
}

/* Блок корзины (правая колонка) */
.order-summary {
    background: linear-gradient(135deg, #fff9f2, #f6eee5);
    border-radius: 20px;
    padding: 18px;
    border: 1px solid #efe3d6;
}

.order-summary h4 {
    font-size: 16px;
    font-weight: 700;
    color: #5d3a1a;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8dfd5;
}

.order-summary .delivery-info {
    margin-bottom: 14px;
    padding: 10px;
    background: white;
    border-radius: 12px;
}

.order-summary .delivery-info select {
    width: 100%;
    padding: 8px;
    border: 1px solid #e8dfd5;
    border-radius: 8px;
    margin-top: 6px;
    font-size: 13px;
}

/* Выбранные продукты в корзине */
.selected-products {
    margin: 14px 0;
    max-height: 200px;
    overflow-y: auto;
}

.selected-products-title {
    font-size: 13px;
    font-weight: 600;
    color: #5d3a1a;
    margin-bottom: 8px;
}

.selected-product-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px dashed #ece5dd;
}

.selected-product-name {
    color: #5d3a1a;
}

.selected-product-price {
    color: #b87c4a;
    font-weight: 600;
}

/* Чипсы выбранных позиций */
.selected-items-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
}

.selected-item-chip {
    background: #fff4ea;
    border: 1px solid #b87c4a;
    border-radius: 16px;
    padding: 4px 10px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #5d3a1a;
}

.selected-item-chip i {
    font-size: 9px;
    color: #b87c4a;
}

/* Количество */
.quantity-section {
    margin: 14px 0;
}

.quantity-section label {
    display: block;
    font-weight: 600;
    color: #5d3a1a;
    margin-bottom: 8px;
    font-size: 13px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e8dfd5;
    background: #f8f6f3;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: #b87c4a;
    border-color: #b87c4a;
    color: white;
}

#quantity {
    width: 50px;
    height: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e8dfd5;
    border-radius: 8px;
}

/* Итоговая цена */
.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px 0;
    padding: 14px;
    background: linear-gradient(135deg, #b87c4a, #8b5d34);
    color: white;
    border-radius: 14px;
}

.total-price span {
    font-size: 14px;
    font-weight: 600;
}

.total-price strong {
    font-size: 22px;
    font-weight: 800;
}

/* Кнопки */
.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.btn-cancel {
    flex: 1;
    padding: 12px;
    background: #f8f6f3;
    border: 1px solid #e8dfd5;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    color: #5d3a1a;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-cancel:hover {
    background: #e8dfd5;
}

.btn-add-to-cart-modal {
    flex: 2;
    padding: 12px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(135deg, #c88955, #9b5e2e);
    color: white;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 124, 74, .3);
}

.btn-add-to-cart-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 124, 74, .4);
}

/* Особые опции */
.special-options select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e8dfd5;
    border-radius: 10px;
    font-family: inherit;
}

.special-options .note {
    font-size: 11px;
    color: #9b7a5a;
    margin-top: 6px;
}

/* Кнопки выбора суммы сертификата */
.amount-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.amount-preset-btn {
    background: #f8f6f3;
    border: 1px solid #e8dfd5;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.amount-preset-btn:hover,
.amount-preset-btn.active {
    background: #b87c4a;
    color: white;
    border-color: #b87c4a;
}

/* Скрытые блоки */
#selectedExtrasSummary {
    display: none;
}

/* Адаптив */
@media (max-width: 900px) {
    .modal-two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-cart-col {
        position: static;
    }

    .modal-options-col {
        max-height: none;
    }

    .modal-image img {
        height: 240px;
    }
}

@media (max-width: 768px) {

    .extras-list.radio-list,
    .extras-list.checkbox-list {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px;
    }

    .breakfast-category summary {
        padding: 10px 14px;
        font-size: 13px;
    }

    .extra-item {
        padding: 6px 10px;
        min-height: 42px;
    }

    .modal-container {
        max-width: 95%;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-header {
        padding: 16px 20px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .modal-image img {
        height: 200px;
    }
}

/* Темная тема */
body.dark-theme .breakfast-category {
    background: #2c1a12;
    border-color: #4a2e20;
}

body.dark-theme .breakfast-category summary {
    background: #24160e;
    color: #e8dcd0;
}

body.dark-theme .breakfast-category summary:hover {
    background: #3d261a;
}

body.dark-theme .extra-item {
    background: #1a120e;
    border-color: #4a2e20;
}

body.dark-theme .extra-item.selected {
    background: #3d261a;
    border-color: #b87c4a;
}

body.dark-theme .extra-item label {
    color: #e8dcd0;
}

body.dark-theme .order-summary {
    background: linear-gradient(135deg, #2c1a12, #24160e);
    border-color: #4a2e20;
}

body.dark-theme .order-summary h4 {
    color: #e8dcd0;
    border-bottom-color: #4a2e20;
}

body.dark-theme .order-summary .delivery-info {
    background: #1a120e;
}

body.dark-theme .selected-item-chip {
    background: #3d261a;
    border-color: #b87c4a;
    color: #e8dcd0;
}

body.dark-theme .variant-item {
    background: linear-gradient(135deg, #2c1a12, #24160e);
    border-color: #4a2e20;
}

body.dark-theme .variant-item.selected {
    background: linear-gradient(135deg, #3d261a, #332012);
    border-color: #b87c4a;
}
/* Бейдж в аккордеоне */
.category-badge {
    font-size: 11px;
    font-weight: normal;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 10px;
    letter-spacing: normal;
}

/* Темная тема */
body.dark-theme .category-badge {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: #e8f5e9;
}

/* Компактные чекбоксы без лишних бейджей */
.extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #faf7f3;
    border: 1px solid #ece5dd;
    border-radius: 10px;
    transition: 0.2s;
}

.extra-item label {
    flex: 1;
    cursor: pointer;
    font-size: 13px;
    color: #5d3a1a;
}

/* Убираем лишние надписи */
.badge-included,
.badge-free,
.price-paid {
    display: none;
}
/* Платные добавки */
.paid-addons-list {
    background: #fff8f0;
    border-radius: 16px;
    padding: 12px;
}

.paid-addon-item {
    background: white;
    border-left: 3px solid #ff8c42;
}

.price-paid {
    color: #ff8c42;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.category-badge-paid {
    font-size: 11px;
    font-weight: normal;
    background: #fff3e0;
    color: #ff8c42;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

/* Темная тема */
body.dark-theme .paid-addons-list {
    background: #2c1a12;
}

body.dark-theme .paid-addon-item {
    background: #3d261a;
}

body.dark-theme .price-paid {
    color: #ffaa66;
}

body.dark-theme .category-badge-paid {
    background: #3d261a;
    color: #ffaa66;
}
/* Улучшенные карточки ингредиентов - кликабельные */
.extra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #faf7f3;
    border: 1px solid #ece5dd;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.extra-item:hover {
    background: #fff4ea;
    border-color: #b87c4a;
    transform: translateX(4px);
}

.extra-item.selected {
    background: #fff4ea;
    border-color: #b87c4a;
    box-shadow: 0 2px 8px rgba(184, 124, 74, 0.15);
}

/* Радио и чекбоксы - чуть больше для удобства */
.extra-item input[type="radio"],
.extra-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.extra-item input[type="radio"] {
    accent-color: #b87c4a;
}

.extra-item input[type="checkbox"] {
    accent-color: #b87c4a;
}

/* Метка - занимает всё доступное пространство */
.extra-item label {
    flex: 1;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #5d3a1a;
    margin: 0;
    padding: 0;
}

/* Цена платной добавки */
.price-paid {
    font-weight: 700;
    font-size: 14px;
    color: #ff8c42;
    background: rgba(255, 140, 66, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Платная добавка - выделение */
.paid-addon-item {
    border-left: 3px solid #ff8c42;
}

.paid-addon-item.selected {
    background: #fff8f0;
    border-color: #ff8c42;
}

/* Анимация при клике */
.extra-item:active {
    transform: scale(0.98);
    transition: transform 0.05s;
}

/* Категория платных добавок */
.category-badge-paid {
    font-size: 11px;
    font-weight: normal;
    background: #fff3e0;
    color: #ff8c42;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

.paid-addons-list {
    background: #fffbf5;
    border-radius: 16px;
    padding: 8px;
}

/* Темная тема */
body.dark-theme .extra-item {
    background: #2c1a12;
    border-color: #4a2e20;
}

body.dark-theme .extra-item:hover {
    background: #3d261a;
    border-color: #b87c4a;
}

body.dark-theme .extra-item.selected {
    background: #3d261a;
    border-color: #b87c4a;
}

body.dark-theme .extra-item label {
    color: #e8dcd0;
}

body.dark-theme .price-paid {
    background: rgba(255, 140, 66, 0.2);
}

body.dark-theme .paid-addons-list {
    background: #24160e;
}

body.dark-theme .category-badge-paid {
    background: #3d261a;
    color: #ffaa66;
}
/* Цена платной добавки - видна всегда */
.price-paid {
    display: inline-block !important;
    font-weight: 700;
    font-size: 14px;
    color: #ff8c42;
    background: rgba(255, 140, 66, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    margin-left: auto;
}

/* Карточка платной добавки */
.paid-addon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.paid-addon-item label {
    flex: 1;
}
/* Блокировка прокрутки страницы при открытом модальном окне */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* Для модального окна - чтобы скролл был внутри */
.service-modal.active,
.auth-modal.active {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

.modal-body {
    overflow-y: auto !important;
    max-height: calc(85vh - 80px) !important;
}
/* Стили для СПА */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.master-card {
    background: #faf7f3;
    border: 1px solid #ece5dd;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.master-card:hover {
    border-color: #b87c4a;
    transform: translateY(-2px);
}

.master-card.selected {
    border-color: #b87c4a;
    background: #fff4ea;
    box-shadow: 0 4px 12px rgba(184, 124, 74, 0.15);
}

.master-name {
    font-weight: 700;
    color: #5d3a1a;
    margin-bottom: 5px;
}

.master-specialization {
    font-size: 12px;
    color: #b87c4a;
    margin-bottom: 5px;
}

.master-experience {
    font-size: 11px;
    color: #9b7a5a;
    margin-bottom: 10px;
}

.btn-select-master {
    padding: 6px 12px;
    background: #b87c4a;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}

.btn-select-master:hover {
    background: #9b5e2e;
}

.appointment-date,
.appointment-time {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #e8dfd5;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
}

.appointment-date:disabled,
.appointment-time:disabled {
    background: #f5f0ea;
    cursor: not-allowed;
}

.no-masters {
    color: #9b7a5a;
    text-align: center;
    padding: 20px;
}
/* Стили для бассейна */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.slot-card {
    background: #faf7f3;
    border: 1px solid #ece5dd;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slot-card:hover {
    border-color: #b87c4a;
    transform: translateY(-2px);
}

.slot-card.selected {
    border-color: #b87c4a;
    background: #fff4ea;
    box-shadow: 0 4px 12px rgba(184, 124, 74, 0.15);
}

.slot-name {
    font-weight: 700;
    color: #5d3a1a;
    margin-bottom: 5px;
}

.slot-time {
    font-size: 13px;
    color: #b87c4a;
    margin-bottom: 5px;
}

.slot-capacity {
    font-size: 11px;
    color: #9b7a5a;
    margin-bottom: 10px;
}

.btn-select-slot {
    padding: 6px 12px;
    background: #b87c4a;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
}

.pool-date {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #e8dfd5;
    border-radius: 12px;
}

.pool-date:disabled {
    background: #f5f0ea;
    cursor: not-allowed;
}
/* ========== СТИЛИ ДЛЯ СЕРТИФИКАТОВ ========== */

/* Блок сертификата */
#giftOptions {
    background: #faf7f3;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e8dfd5;
}

#giftOptions h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #5d3a1a;
    font-size: 18px;
}

/* Поля ввода */
#giftOptions input[type="text"],
#giftOptions input[type="email"],
#giftOptions textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e8dfd5;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
    margin-top: 10px;
    margin-bottom: 10px;
}
.sposobpolych {
    margin-bottom: 10px;
}
.radiosposobpolych {
    display: flex;
    column-gap: 20px;
    margin-bottom: 10px;
}
#giftOptions input:focus,
#giftOptions textarea:focus {
    border-color: #b87c4a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 124, 74, 0.1);
}

/* Радио кнопки способа доставки */
.delivery-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.delivery-methods label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #e8dfd5;
    border-radius: 12px;
    transition: all 0.3s;
    background: white;
}

.delivery-methods label:hover {
    border-color: #b87c4a;
    background: #fff8f2;
}

.delivery-methods input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #b87c4a;
    margin: 0;
}

/* Блок выбора суммы */
#customAmountBlock {
    background: #faf7f3;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e8dfd5;
}

.amount-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.amount-preset-btn {
    background: white;
    border: 1px solid #e8dfd5;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: #5d3a1a;
}

.amount-preset-btn:hover,
.amount-preset-btn.active {
    background: #b87c4a;
    border-color: #b87c4a;
    color: white;
}

#customAmount {
    width: 100%;
    padding: 12px;
    border: 1px solid #e8dfd5;
    border-radius: 12px;
    font-size: 14px;
}

/* Кнопки модального окна */
.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-cancel {
    flex: 1;
    padding: 12px;
    background: #f8f6f3;
    border: 1px solid #e8dfd5;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    color: #5d3a1a;
}

.btn-add-to-cart-modal {
    flex: 2;
    padding: 12px;
    background: linear-gradient(135deg, #b87c4a, #9b5e2e);
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-to-cart-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 124, 74, 0.3);
}

/* Блок итоговой цены */
.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #b87c4a, #8b5d34);
    border-radius: 12px;
    color: white;
    margin: 20px 0;
}

.total-price span {
    font-size: 16px;
    font-weight: 600;
}

.total-price strong {
    font-size: 24px;
    font-weight: 800;
}
/* Стили для поля поздравления */
#giftOptions div:has(textarea) {
    margin-top: 15px;
}

#giftMessage {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e8dfd5;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    min-height: 80px;
    transition: all 0.3s;
    background: white;
}

#giftMessage:focus {
    border-color: #b87c4a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 124, 74, 0.1);
}

#giftMessage::placeholder {
    color: #c4b5a5;
    font-size: 13px;
}
/* Стили для обязательных полей сертификатов */
.form-group.required label .required-star {
    color: #f44336;
    font-weight: 700;
}

.form-group.required input.error {
    border-color: #f44336;
    background-color: #fff8f8;
}

.field-error {
    display: none;
    color: #f44336;
    font-size: 12px;
    margin-top: 4px;
}

.field-error.show {
    display: block;
}
/* Стили для обязательных полей сертификатов */
.form-group.required {
    margin-bottom: 15px;
}

.form-group.required label {
    display: block;
    font-weight: 600;
    color: #5d3a1a;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group.required label .required-star {
    color: #f44336;
    font-weight: 700;
}

.form-group.required input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e6d5c0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s, background-color 0.3s;
    background: #fefcf9;
    box-sizing: border-box;
}

.form-group.required input:focus {
    outline: none;
    border-color: #b87c4a;
}

.form-group.required input.error {
    border-color: #f44336;
    background-color: #fff8f8;
}

.field-error {
    display: none;
    color: #f44336;
    font-size: 12px;
    margin-top: 4px;
}

.field-error.show {
    display: block;
}
/* Стили для выбора брони в модальном окне */
.booking-selector-container {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.booking-selector-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-selector-wrapper label {
    font-size: 14px;
    font-weight: 500;
    color: #5d3a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-selector-wrapper label i {
    color: #b87c4a;
}

.booking-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.booking-select:focus {
    outline: none;
    border-color: #b87c4a;
    box-shadow: 0 0 0 3px rgba(184, 124, 74, 0.15);
}

.booking-selector-hint {
    font-size: 12px;
    color: #6c757d;
}

.booking-selector-empty {
    text-align: center;
    padding: 15px;
    color: #6c757d;
}

.booking-selector-empty i {
    font-size: 24px;
    color: #b87c4a;
    margin-bottom: 8px;
}

.booking-selector-empty p {
    margin: 8px 0;
}

.btn-create-booking {
    display: inline-block;
    padding: 8px 20px;
    background: #b87c4a;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-create-booking:hover {
    background: #5d3a1a;
    transform: translateY(-2px);
}
/* Добавьте в css/services.css */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 20px 0;
}

.filter-category-btn {
    padding: 12px 24px;
    border: 2px solid #e8ddd0;
    border-radius: 30px;
    background: white;
    color: #5d3a1a;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-category-btn i {
    font-size: 16px;
    color: #b87c4a;
    transition: color 0.3s ease;
}

.filter-category-btn.active {
    background: #b87c4a;
    color: white;
    border-color: #b87c4a;
    box-shadow: 0 4px 15px rgba(184, 124, 74, 0.3);
}

.filter-category-btn.active i {
    color: white;
}

.filter-category-btn:hover {
    background: #f5ede4;
    transform: translateY(-2px);
    border-color: #b87c4a;
}

.filter-category-btn.active:hover {
    background: #a06a3a;
    transform: translateY(-2px);
}

.service-category {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-category[style*="display: none"] {
    opacity: 0;
    transform: scale(0.95);
}

.service-category[style*="display: block"] {
    opacity: 1;
    transform: scale(1);
}

.no-services-message {
    animation: fadeIn 0.5s ease;
    padding: 60px 20px;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптив */
@media (max-width: 768px) {
    .category-filter {
        gap: 8px;
        padding: 15px 0;
    }

    .filter-category-btn {
        padding: 8px 16px;
        font-size: 13px;
        gap: 6px;
    }

    .filter-category-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .filter-category-btn {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 20px;
    }

    .filter-category-btn i {
        font-size: 12px;
    }
}
/* ============================================ */
/* НОВЫЙ ДИЗАЙН БЛОКА ПРИВЯЗКИ                  */
/* ============================================ */

.binding-section {
    margin: 20px 0 25px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0ea 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e8ddd0;
    box-shadow: 0 2px 8px rgba(184, 124, 74, 0.08);
}

.binding-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.binding-header h3 {
    font-size: 17px;
    color: #4a3520;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.binding-header h3 i {
    color: #b87c4a;
    font-size: 18px;
}

.binding-hint {
    font-size: 13px;
    color: #9b8a7a;
    background: rgba(184, 124, 74, 0.08);
    padding: 4px 14px;
    border-radius: 20px;
}

/* Вкладки */
.binding-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.binding-tab {
    flex: 1;
    min-width: 120px;
    padding: 10px 16px;
    border: 2px solid #e8ddd0;
    border-radius: 12px;
    background: white;
    color: #6b5a4a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.binding-tab i {
    font-size: 16px;
    color: #b87c4a;
    transition: color 0.3s ease;
}

.binding-tab:hover {
    border-color: #b87c4a;
    background: #faf5f0;
    transform: translateY(-1px);
}

.binding-tab.active {
    border-color: #b87c4a;
    background: #b87c4a;
    color: white;
    box-shadow: 0 4px 15px rgba(184, 124, 74, 0.25);
}

.binding-tab.active i {
    color: white;
}

/* Панели */
.binding-panel {
    display: none;
    animation: fadeSlideIn 0.3s ease;
}

.binding-panel.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.binding-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px dashed #d4c8b8;
}

.binding-info i {
    font-size: 24px;
    color: #b87c4a;
    flex-shrink: 0;
}

.binding-info strong {
    display: block;
    color: #4a3520;
    font-size: 15px;
}

.binding-info p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #9b8a7a;
}

/* Списки */
.binding-rooms-list,
.binding-bookings-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 4px;
}

.binding-rooms-list::-webkit-scrollbar,
.binding-bookings-list::-webkit-scrollbar {
    width: 4px;
}

.binding-rooms-list::-webkit-scrollbar-thumb,
.binding-bookings-list::-webkit-scrollbar-thumb {
    background: #d4c8b8;
    border-radius: 10px;
}

.binding-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    border-radius: 12px;
    border: 2px solid #f0e8de;
    cursor: pointer;
    transition: all 0.3s ease;
}

.binding-item:hover {
    border-color: #d4c8b8;
    transform: translateX(4px);
}

.binding-item.selected {
    border-color: #b87c4a;
    background: #fdf8f2;
    box-shadow: 0 2px 12px rgba(184, 124, 74, 0.12);
}

.binding-item.selected .binding-item-radio {
    border-color: #b87c4a;
    background: #b87c4a;
}

.binding-item.selected .binding-item-radio::after {
    opacity: 1;
}

.binding-item-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d4c8b8;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.binding-item-radio::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.binding-item-info {
    flex: 1;
    min-width: 0;
}

.binding-item-name {
    font-weight: 600;
    color: #4a3520;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.binding-item-name .badge {
    font-size: 10px;
    font-weight: 400;
    padding: 2px 10px;
    border-radius: 12px;
    background: #e8ddd0;
    color: #6b5a4a;
}

.binding-item-name .badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.binding-item-name .badge.pending {
    background: #fff3cd;
    color: #856404;
}

.binding-item-details {
    font-size: 13px;
    color: #9b8a7a;
    margin-top: 2px;
}

.binding-item-details i {
    margin: 0 4px 0 8px;
    font-size: 12px;
}

.binding-item-details i:first-child {
    margin-left: 0;
}

.binding-item-price {
    font-weight: 600;
    color: #b87c4a;
    font-size: 14px;
    white-space: nowrap;
}

.binding-empty {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    border: 1px dashed #e8ddd0;
}

.binding-empty i {
    font-size: 32px;
    color: #d4c8b8;
    display: block;
    margin-bottom: 10px;
}

.binding-empty p {
    color: #9b8a7a;
    font-size: 14px;
    margin: 0;
}

.binding-empty .btn-create-booking {
    margin-top: 12px;
    padding: 8px 20px;
    background: #b87c4a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.binding-empty .btn-create-booking:hover {
    background: #a06a3a;
}

.binding-loading {
    text-align: center;
    padding: 30px 20px;
    color: #9b8a7a;
}

.binding-loading i {
    font-size: 24px;
    color: #b87c4a;
    display: block;
    margin-bottom: 10px;
}

/* Адаптив */
@media (max-width: 768px) {
    .binding-section {
        padding: 16px;
    }

    .binding-tabs {
        gap: 6px;
    }

    .binding-tab {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 80px;
        flex: 1 1 auto;
    }

    .binding-tab span {
        display: none;
    }

    .binding-tab i {
        font-size: 18px;
    }

    .binding-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .binding-hint {
        font-size: 12px;
    }

    .binding-item {
        padding: 12px 14px;
        flex-wrap: wrap;
    }

    .binding-item-price {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .binding-tabs {
        gap: 4px;
    }

    .binding-tab {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 60px;
        border-radius: 8px;
    }

    .binding-tab i {
        font-size: 16px;
    }

    .binding-item-name {
        font-size: 13px;
    }

    .binding-item-details {
        font-size: 12px;
    }
}
/* ============================================ */
/* НОВЫЙ ДИЗАЙН БЛОКА ПРИВЯЗКИ С ВКЛАДКАМИ      */
/* ============================================ */

.binding-section {
    margin: 20px 0 25px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0ea 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e8ddd0;
    box-shadow: 0 2px 8px rgba(184, 124, 74, 0.08);
}

.binding-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.binding-header h3 {
    font-size: 17px;
    color: #4a3520;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.binding-header h3 i {
    color: #b87c4a;
    font-size: 18px;
}

.binding-hint {
    font-size: 13px;
    color: #9b8a7a;
    background: rgba(184, 124, 74, 0.08);
    padding: 4px 14px;
    border-radius: 20px;
}

/* Вкладки */
.binding-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.binding-tab {
    flex: 1;
    min-width: 120px;
    padding: 10px 16px;
    border: 2px solid #e8ddd0;
    border-radius: 12px;
    background: white;
    color: #6b5a4a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.binding-tab i {
    font-size: 16px;
    color: #b87c4a;
    transition: color 0.3s ease;
}

.binding-tab:hover {
    border-color: #b87c4a;
    background: #faf5f0;
    transform: translateY(-1px);
}

.binding-tab.active {
    border-color: #b87c4a;
    background: #b87c4a;
    color: white;
    box-shadow: 0 4px 15px rgba(184, 124, 74, 0.25);
}

.binding-tab.active i {
    color: white;
}

/* Панели */
.binding-panel {
    display: none;
    animation: fadeSlideIn 0.3s ease;
}

.binding-panel.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.binding-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px dashed #d4c8b8;
}

.binding-info i {
    font-size: 24px;
    color: #b87c4a;
    flex-shrink: 0;
}

.binding-info strong {
    display: block;
    color: #4a3520;
    font-size: 15px;
}

.binding-info p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #9b8a7a;
}

/* Списки */
.binding-rooms-list,
.binding-bookings-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 4px;
}

.binding-rooms-list::-webkit-scrollbar,
.binding-bookings-list::-webkit-scrollbar {
    width: 4px;
}

.binding-rooms-list::-webkit-scrollbar-thumb,
.binding-bookings-list::-webkit-scrollbar-thumb {
    background: #d4c8b8;
    border-radius: 10px;
}

/* Карточка элемента (номер или бронь) */
.binding-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    border-radius: 12px;
    border: 2px solid #f0e8de;
    cursor: pointer;
    transition: all 0.3s ease;
}

.binding-item:hover {
    border-color: #d4c8b8;
    transform: translateX(4px);
}

.binding-item.selected {
    border-color: #b87c4a;
    background: #fdf8f2;
    box-shadow: 0 2px 12px rgba(184, 124, 74, 0.12);
}

.binding-item.selected .binding-item-radio {
    border-color: #b87c4a;
    background: #b87c4a;
}

.binding-item.selected .binding-item-radio::after {
    opacity: 1;
}

.binding-item-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d4c8b8;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.binding-item-radio::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.binding-item-info {
    flex: 1;
    min-width: 0;
}

.binding-item-name {
    font-weight: 600;
    color: #4a3520;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.binding-item-name .badge {
    font-size: 10px;
    font-weight: 400;
    padding: 2px 10px;
    border-radius: 12px;
    background: #e8ddd0;
    color: #6b5a4a;
}

.binding-item-name .badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.binding-item-name .badge.pending {
    background: #fff3cd;
    color: #856404;
}

.binding-item-details {
    font-size: 13px;
    color: #9b8a7a;
    margin-top: 2px;
}

.binding-item-details i {
    margin: 0 4px 0 8px;
    font-size: 12px;
}

.binding-item-details i:first-child {
    margin-left: 0;
}

.binding-item-price {
    font-weight: 600;
    color: #b87c4a;
    font-size: 14px;
    white-space: nowrap;
}

/* Пустые состояния */
.binding-empty {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    border: 1px dashed #e8ddd0;
}

.binding-empty i {
    font-size: 32px;
    color: #d4c8b8;
    display: block;
    margin-bottom: 10px;
}

.binding-empty p {
    color: #9b8a7a;
    font-size: 14px;
    margin: 0;
}

.binding-empty .btn-create-booking {
    margin-top: 12px;
    padding: 8px 20px;
    background: #b87c4a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.binding-empty .btn-create-booking:hover {
    background: #a06a3a;
}

.binding-loading {
    text-align: center;
    padding: 30px 20px;
    color: #9b8a7a;
}

.binding-loading i {
    font-size: 24px;
    color: #b87c4a;
    display: block;
    margin-bottom: 10px;
}

/* Адаптив */
@media (max-width: 768px) {
    .binding-section {
        padding: 16px;
    }

    .binding-tabs {
        gap: 6px;
    }

    .binding-tab {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 80px;
        flex: 1 1 auto;
    }

    .binding-tab span {
        display: none;
    }

    .binding-tab i {
        font-size: 18px;
    }

    .binding-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .binding-hint {
        font-size: 12px;
    }

    .binding-item {
        padding: 12px 14px;
        flex-wrap: wrap;
    }

    .binding-item-price {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .binding-tabs {
        gap: 4px;
    }

    .binding-tab {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 60px;
        border-radius: 8px;
    }

    .binding-tab i {
        font-size: 16px;
    }

    .binding-item-name {
        font-size: 13px;
    }

    .binding-item-details {
        font-size: 12px;
    }
}
/* ============================================
   УЛУЧШЕННЫЙ ДИЗАЙН КАРТОЧЕК БРОНЕЙ
   ============================================ */

/* Номер брони */
.booking-number {
    font-weight: 700;
    color: #4a3520;
    font-size: 15px;
}

/* Название номера */
.booking-room {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    color: #5d3a1a;
}

.booking-room i {
    color: #b87c4a;
    font-size: 14px;
}

.booking-room strong {
    font-weight: 600;
    color: #4a3520;
}

.room-type {
    font-size: 12px;
    color: #9b8a7a;
    font-weight: 400;
}

/* Даты */
.booking-dates {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #7a6a5a;
    flex-wrap: wrap;
}

.booking-dates i {
    color: #b87c4a;
    font-size: 12px;
}

.booking-nights {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #f5ede4;
    padding: 1px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #5d3a1a;
}

.booking-nights i {
    color: #b87c4a;
    font-size: 11px;
}

/* Цена */
.booking-price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #b87c4a;
    font-size: 14px;
    background: rgba(184, 124, 74, 0.08);
    padding: 2px 12px;
    border-radius: 12px;
    margin-top: 4px;
}

.booking-price i {
    font-size: 12px;
}

/* Badge статуса */
.binding-item-name .badge.confirmed {
    background: #d4edda;
    color: #155724;
    font-size: 11px;
    padding: 2px 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Адаптив для карточек броней */
@media (max-width: 768px) {
    .booking-room {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .booking-dates {
        font-size: 12px;
        gap: 4px;
    }

    .booking-nights {
        font-size: 11px;
        padding: 1px 8px;
    }

    .booking-price {
        font-size: 13px;
        padding: 2px 10px;
    }
}

@media (max-width: 480px) {
    .booking-room {
        font-size: 12px;
    }

    .booking-dates {
        font-size: 11px;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .binding-item-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
/* Стили для названия комнаты */
.booking-room {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    color: #5d3a1a;
}

.booking-room i {
    color: #b87c4a;
    font-size: 14px;
}

.booking-room strong {
    font-weight: 600;
    color: #4a3520;
}

.room-type {
    font-size: 12px;
    color: #9b8a7a;
    font-weight: 400;
}

/* Стили для дат */
.booking-dates {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #7a6a5a;
    flex-wrap: wrap;
}

.booking-dates i {
    color: #b87c4a;
    font-size: 12px;
}

.booking-nights {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #f5ede4;
    padding: 1px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #5d3a1a;
}

.booking-nights i {
    color: #b87c4a;
    font-size: 11px;
}

.booking-guests {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #e8f0fe;
    padding: 1px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #1a3a6b;
}

.booking-guests i {
    color: #1a3a6b;
    font-size: 11px;
}

/* Цена и статус оплаты */
.booking-price-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.booking-price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #b87c4a;
    font-size: 14px;
    background: rgba(184, 124, 74, 0.08);
    padding: 2px 12px;
    border-radius: 12px;
}

.booking-price i {
    font-size: 12px;
}

.booking-payment {
    font-size: 12px;
    padding: 2px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.booking-payment.оплачено {
    background: #d4edda;
    color: #155724;
}

.booking-payment.частично {
    background: #fff3cd;
    color: #856404;
}

.booking-payment.не оплачено {
    background: #f8d7da;
    color: #721c24;
}

/* Адаптив */
@media (max-width: 768px) {
    .booking-room {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .booking-dates {
        font-size: 12px;
        gap: 4px;
        flex-wrap: wrap;
    }

    .booking-nights,
    .booking-guests {
        font-size: 11px;
        padding: 1px 8px;
    }

    .booking-price-info {
        gap: 8px;
    }

    .booking-price {
        font-size: 13px;
        padding: 2px 10px;
    }

    .booking-payment {
        font-size: 11px;
        padding: 1px 10px;
    }
}

@media (max-width: 480px) {
    .booking-room {
        font-size: 12px;
    }

    .booking-dates {
        font-size: 11px;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .binding-item-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
/* ============================================
   СТИЛИ ДЛЯ КАРТОЧЕК БРОНЕЙ (ОБНОВЛЕННЫЕ)
   ============================================ */

/* Номер брони */
.booking-number {
    font-weight: 700;
    color: #4a3520;
    font-size: 15px;
}

/* Название номера */
.booking-room {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    color: #5d3a1a;
}

.booking-room i {
    color: #b87c4a;
    font-size: 14px;
}

.booking-room strong {
    font-weight: 600;
    color: #4a3520;
}

/* Строка с датами и ценой (в одну линию) */
.booking-dates-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.booking-dates {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #7a6a5a;
}

.booking-dates i {
    color: #b87c4a;
    font-size: 12px;
}

/* Цена справа */
.booking-price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: #b87c4a;
    font-size: 15px;
    background: rgba(184, 124, 74, 0.08);
    padding: 2px 14px;
    border-radius: 12px;
    white-space: nowrap;
}

.booking-price i {
    font-size: 12px;
}

/* Badge статуса */
.binding-item-name .badge.confirmed {
    background: #d4edda;
    color: #155724;
    font-size: 11px;
    padding: 2px 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Адаптив */
@media (max-width: 768px) {
    .booking-room {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .booking-dates-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .booking-dates {
        font-size: 12px;
    }

    .booking-price {
        font-size: 14px;
        padding: 2px 10px;
    }
}

@media (max-width: 480px) {
    .booking-room {
        font-size: 12px;
    }

    .booking-dates {
        font-size: 11px;
        flex-wrap: wrap;
    }

    .booking-price {
        font-size: 13px;
        padding: 2px 8px;
    }

    .binding-item-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
/* ============================================ */
/* ВАРИАНТЫ ЗАВТРАКА (ОБЫЧНОГО И ДЕТСКОГО)      */
/* ============================================ */

.breakfast-variants-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 20px 0;
}

.breakfast-variant-item {
    border: 2px solid #e8ddd0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
}

.breakfast-variant-item:hover {
    border-color: #b87c4a;
    transform: translateX(4px);
}

.breakfast-variant-item.selected {
    border-color: #b87c4a;
    background: #fdf8f2;
    box-shadow: 0 2px 12px rgba(184, 124, 74, 0.12);
}

.breakfast-variant-item input[type="radio"] {
    display: none;
}

.variant-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.3s ease;
    width: 100%;
    margin: 0;
    gap: 12px;
}

.variant-label:hover {
    background: #faf5f0;
}

.variant-label .variant-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    flex-wrap: wrap;
}

.variant-label .variant-radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d4c8b8;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.variant-label .variant-radio-custom::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b87c4a;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.breakfast-variant-item input[type="radio"]:checked + .variant-label .variant-radio-custom {
    border-color: #b87c4a;
    background: #b87c4a;
}

.breakfast-variant-item input[type="radio"]:checked + .variant-label .variant-radio-custom::after {
    opacity: 1;
}

.breakfast-variant-item input[type="radio"]:checked + .variant-label {
    background: #fdf8f2;
}

.variant-label .variant-name {
    font-weight: 500;
    color: #4a3520;
    font-size: 14px;
}

.variant-label .variant-description {
    font-size: 12px;
    color: #9b8a7a;
}

.variant-label .variant-time {
    font-size: 12px;
    color: #b87c4a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.variant-label .variant-price {
    font-weight: 700;
    color: #b87c4a;
    font-size: 15px;
    white-space: nowrap;
}

/* ============================================ */
/* СТИЛИ ДЛЯ АККОРДЕОНА КАТЕГОРИЙ ЗАВТРАКА      */
/* ============================================ */

.breakfast-category {
    margin-bottom: 12px;
    border: 1px solid #ece5dd;
    border-radius: 14px;
    background: white;
    overflow: hidden;
    margin-top: 15px;
}

.breakfast-category.paid-category {
    border-color: #ffccb3;
    background: #fffbf5;
}

.category-header-accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    background: #faf7f3;
    transition: all 0.3s ease;
    user-select: none;
}

.category-header-accordion:hover {
    background: #f5ede4;
}

.breakfast-category.paid-category .category-header-accordion {
    background: #fff5ed;
}

.breakfast-category.paid-category .category-header-accordion:hover {
    background: #ffede0;
}

.category-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-header-left i {
    font-size: 18px;
    color: #b87c4a;
    width: 24px;
    text-align: center;
}

.breakfast-category.paid-category .category-header-left i {
    color: #ff8c42;
}

.category-title-text {
    font-weight: 600;
    font-size: 15px;
    color: #5d3a1a;
}

.category-badge {
    font-size: 11px;
    font-weight: normal;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: normal;
}

.category-badge-paid {
    font-size: 11px;
    font-weight: normal;
    background: #fff3e0;
    color: #ff8c42;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: normal;
}

.category-arrow {
    font-size: 14px;
    color: #b87c4a;
    transition: transform 0.3s ease;
}

.category-content {
    padding: 12px 16px;
    display: block;
}

.extras-list.radio-list,
.extras-list.checkbox-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #faf7f3;
    border: 1px solid #ece5dd;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.extra-item:hover {
    border-color: #b87c4a;
    background: #fff;
}

.extra-item.selected {
    border-color: #b87c4a;
    background: #fff4ea;
    box-shadow: 0 2px 8px rgba(184, 124, 74, 0.1);
}

.extra-item input[type="radio"],
.extra-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #b87c4a;
    flex-shrink: 0;
}

.extra-item label {
    flex: 1;
    cursor: pointer;
    font-size: 14px;
    color: #5d3a1a;
    margin: 0;
    padding: 0;
}

.price-paid {
    font-weight: 700;
    font-size: 14px;
    color: #ff8c42;
    background: rgba(255, 140, 66, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.paid-addon-item {
    border-left: 3px solid #ff8c42;
}

.paid-addon-item.selected {
    background: #fff8f0;
    border-color: #ff8c42;
}

.paid-addons-list {
    background: #fffbf5;
    border-radius: 16px;
    padding: 8px;
}

.selected-extras-summary {
    background: #f5f0ea;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 10px 0;
}

.selected-extra-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 13px;
    color: #5d3a1a;
    border-bottom: 1px dashed #ece5dd;
}

.selected-extra-item:last-child {
    border-bottom: none;
}

.selected-extra-item i {
    color: #b87c4a;
    width: 18px;
}

.selected-extra-price {
    margin-left: auto;
    font-weight: 600;
    color: #b87c4a;
}

/* Адаптив */
@media (max-width: 768px) {
    .extras-list.radio-list,
    .extras-list.checkbox-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .category-header-accordion {
        padding: 12px 14px;
    }
    
    .category-title-text {
        font-size: 14px;
    }
    
    .category-badge,
    .category-badge-paid {
        font-size: 10px;
        padding: 2px 10px;
    }
    
    .extra-item {
        padding: 8px 12px;
        min-height: 44px;
    }
    
    .extra-item label {
        font-size: 13px;
    }
    
    .price-paid {
        font-size: 13px;
        padding: 2px 10px;
    }
}

@media (max-width: 480px) {
    .category-header-left {
        gap: 8px;
    }
    
    .category-header-left i {
        font-size: 16px;
        width: 20px;
    }
    
    .category-title-text {
        font-size: 13px;
    }
    
    .extra-item {
        padding: 6px 10px;
    }
    
    .extra-item label {
        font-size: 12px;
    }
    
    .price-paid {
        font-size: 12px;
        padding: 2px 8px;
    }
}
