:root {
    --ink: #1c1410;
    --ink-soft: #2a1f18;
    --paper: #f4ead4;
    --paper-2: #ebdcbc;
    --ember: #cf4520;
    --ember-dark: #9e3115;
    --mustard: #d99a2b;
    --smoke: #7d6c58;
    --smoke-dark: #4a3d31;
    --line: #d6c49b;
    --white: #fff8ea;

    /* совместимость со старыми именами переменных */
    --primary: var(--ember);
    --primary-dark: var(--ember-dark);
    --primary-light: var(--mustard);
    --bg-light: var(--paper);
    --text-dark: var(--ink);
    --text-muted: var(--smoke);
    --border-light: var(--line);

    --cut: 16px;   /* срез крупных карточек */
    --cut-sm: 9px; /* срез кнопок/тегов */
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--paper);
    color: var(--ink);
    padding-top: 78px;
    position: relative;
}

/* лёгкая крафтовая текстура на всём фоне */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    background-image:
        radial-gradient(rgba(28,20,16,0.045) 1px, transparent 1px);
    background-size: 3px 3px;
}

h1, h2, .display-num, .footer-custom .brand, .navbar-custom .navbar-brand,
.product-card .body h5, .stat-item .number, .price, .price-new, .price-old,
.modal-body .modal-info .price-lg {
    font-family: 'Anton', 'Inter', sans-serif;
    font-weight: 400;
}

/* Навигация — тёмная, без "таблетки" */
.navbar-custom {
    background: var(--ink);
    box-shadow: 0 2px 24px rgba(0,0,0,0.25);
    padding: 14px 0;
    border-bottom: 3px solid var(--ember);
}

.navbar-custom .navbar-brand {
    font-size: 26px;
    letter-spacing: 0.5px;
    color: var(--white) !important;
}

.navbar-custom .navbar-brand span {
    color: var(--ember);
}

.navbar-custom .nav-link {
    font-weight: 600;
    font-size: 15px;
    color: rgba(244,234,212,0.65) !important;
    transition: color 0.2s;
    padding: 8px 16px;
    position: relative;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--ember);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

.navbar-custom .nav-link:hover {
    color: var(--white) !important;
}

.navbar-custom .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-toggler {
    filter: invert(1);
}

/* Герой */
.hero-section {
    padding: 76px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--paper);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section .badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--paper);
    color: var(--ink);
    border: 1.5px dashed var(--smoke-dark);
    padding: 7px 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
    transform: rotate(-2deg);
}

.hero-section h1 {
    font-size: 66px;
    letter-spacing: 0.5px;
    line-height: 1.02;
    margin-bottom: 18px;
    color: var(--ink);
}

.hero-section h1 span {
    color: var(--ember);
}

.hero-section .subtitle {
    font-size: 19px;
    color: var(--smoke-dark);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-section .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary-custom {
    background: var(--ember);
    color: var(--white);
    padding: 14px 36px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    clip-path: polygon(0 0, calc(100% - var(--cut-sm)) 0, 100% var(--cut-sm), 100% 100%, 0 100%);
}

.btn-primary-custom:hover {
    background: var(--ember-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline-custom {
    padding: 14px 36px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--ink);
    color: var(--ink);
    background: transparent;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    clip-path: polygon(0 0, calc(100% - var(--cut-sm)) 0, 100% var(--cut-sm), 100% 100%, 0 100%);
}

.btn-outline-custom:hover {
    border-color: var(--ember);
    color: var(--ember);
    transform: translateY(-2px);
}

.hero-features { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-features .feature { display: flex; align-items: center; gap: 10px; color: var(--smoke-dark); font-weight: 500; }
.hero-features .feature .icon { font-size: 24px; }

.hero-image { position: relative; }

.hero-image img {
    width: 100%;
    max-width: 520px;
    box-shadow: 10px 14px 0 var(--ink);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.hero-image .floating-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: var(--ink);
    color: var(--white);
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-9deg);
    border: 2px dashed var(--ember);
}

.hero-image .floating-badge .number {
    font-family: 'Anton', sans-serif;
    font-size: 26px;
    color: var(--ember);
    line-height: 1;
}

.hero-image .floating-badge .label {
    font-size: 10.5px;
    letter-spacing: 0.3px;
    color: rgba(244,234,212,0.8);
    margin-top: 2px;
    max-width: 80px;
}

/* Заголовки секций */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 52px;
}

.section-header .label {
    display: inline-block;
    color: var(--ember);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.section-header h2 {
    font-size: 42px;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    color: var(--ink);
}

.section-header p { color: var(--smoke); font-size: 17px; }

/* Меню */
.menu-section { padding: 84px 0; background: var(--white); position: relative; z-index: 1; }

.product-card {
    background: var(--paper);
    overflow: hidden;
    transition: all 0.25s;
    cursor: pointer;
    border: 1px solid var(--line);
    height: 100%;
    clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--ember);
    box-shadow: 6px 10px 0 rgba(28,20,16,0.12);
}

.product-card .image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--paper-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .image-wrap img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    background: var(--paper-2);
    transition: transform 0.5s;
}

.product-card:hover .image-wrap img { transform: scale(1.05); }

.product-card .hit-badge {
    position: absolute;
    top: 14px;
    left: -34px;
    background: var(--ember);
    color: var(--white);
    padding: 4px 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transform: rotate(-38deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.product-card .body { padding: 18px 22px 22px; }

.product-card .body h5 {
    font-size: 21px;
    letter-spacing: 0.2px;
    margin-bottom: 4px;
    color: var(--ink);
}

.product-card .body .desc {
    color: var(--smoke);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .body .ingredients { font-size: 12.5px; color: var(--smoke); opacity: 0.75; margin-top: 4px; }

.product-card .body .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
    margin-top: 12px;
}

.product-card .body .price { font-size: 23px; color: var(--ember); }

.product-card .body .btn-detail {
    background: transparent;
    border: none;
    color: var(--smoke);
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.2s;
    padding: 0;
}
.product-card .body .btn-detail:hover { color: var(--ember); }

/* Команда */
.team-section { padding: 84px 0; background: var(--paper); position: relative; z-index: 1; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 36px;
}

.team-card { text-align: center; }

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 18px;
    overflow: hidden;
    border: 3px solid var(--ink);
    background: var(--paper-2);
    position: relative;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Если фото ещё не загружено — показываем нейтральную заглушку */
.team-photo.no-photo img { display: none; }
.team-photo.no-photo::after {
    content: '📷';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    opacity: 0.35;
}

.team-card h5 { font-weight: 700; margin-bottom: 2px; color: var(--ink); }
.team-card .role { color: var(--ember); font-weight: 700; font-size: 13px; letter-spacing: 0.2px; margin-bottom: 8px; display: block; }
.team-card p { color: var(--smoke); font-size: 14px; margin: 0; line-height: 1.5; }

/* О нас */
.about-section { padding: 84px 0; background: var(--white); position: relative; z-index: 1; }

.about-section .about-image img {
    width: 60%;
    box-shadow: 8px 10px 0 var(--ink);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}

.stat-item { border-left: 2px dashed var(--line); padding-left: 14px; }
.stat-item:first-child { border-left: none; padding-left: 0; }
.stat-item .number { font-size: 30px; color: var(--ember); display: block; }
.stat-item .label { color: var(--smoke); font-size: 13.5px; }

/* Отзывы */
.reviews-section { padding: 84px 0; background: var(--paper); position: relative; z-index: 1; }

.review-card {
    background: var(--white);
    padding: 22px;
    border: 1px solid var(--line);
    height: 100%;
    transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--ember); }
.review-card .name { font-weight: 700; font-size: 16px; color: var(--ink); }
.review-card .date { font-size: 13px; color: var(--smoke); }
.review-card .text { color: var(--ink); font-size: 15px; line-height: 1.6; margin-top: 8px; }

.review-form-wrapper {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--line);
    max-width: 500px;
    margin: 0 auto;
}
.review-form-wrapper input, .review-form-wrapper textarea {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 15px;
}
.review-form-wrapper input:focus, .review-form-wrapper textarea:focus {
    border-color: var(--ember);
    box-shadow: none;
}

/* Контакты */
.contact-section { padding: 84px 0; background: var(--white); position: relative; z-index: 1; }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-item .icon { font-size: 24px; width: 40px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 15px; color: var(--ink); }
.contact-item p { color: var(--smoke); margin: 0; }

.contact-map {
    background: var(--paper-2);
    overflow: hidden;
    min-height: 350px;
    position: relative;
    border: 3px solid var(--ink);
}
.contact-map .icon { font-size: 48px; display: block; }
.contact-map iframe { width: 100%; height: 100%; min-height: 350px; display: block; }
.contact-map p { font-weight: 600; margin-top: 8px; color: var(--smoke); }

@media (max-width: 768px) {
    .contact-map { min-height: 250px; }
    .contact-map iframe { min-height: 250px; }
    .contact-map .floating-label { font-size: 13px; padding: 8px 16px; white-space: normal; max-width: 90%; }
}

/* Кнопки навигации (карты) */
.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    border: 2px solid var(--ink);
    color: var(--ink);
    background: var(--white);
    clip-path: polygon(0 0, calc(100% - var(--cut-sm)) 0, 100% var(--cut-sm), 100% 100%, 0 100%);
}
.btn-nav:hover { transform: translateY(-2px); border-color: var(--ember); color: var(--ember); }
.btn-nav-primary { background: var(--ember); color: var(--white); border-color: var(--ember); }
.btn-nav-primary:hover { background: var(--ember-dark); border-color: var(--ember-dark); color: var(--white); }

/* FAQ — в стиле чека/тикета */
.faq-section { padding: 84px 0; background: var(--paper); position: relative; z-index: 1; }

.faq-item {
    background: var(--white);
    padding: 18px 22px;
    border: none;
    border-bottom: 1px dashed var(--line);
    margin-bottom: 0;
    cursor: pointer;
    transition: background-color 0.2s;
}
.faq-item:first-child { border-top: 1px dashed var(--line); }
.faq-item:hover { background: var(--paper-2); }
.faq-item .question { font-weight: 700; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.faq-item .question .icon { font-size: 16px; color: var(--ember); transition: transform 0.3s; }
.faq-item.open .question .icon { transform: rotate(180deg); }
.faq-item .answer { display: none; padding-top: 12px; color: var(--smoke); line-height: 1.7; }
.faq-item.open .answer { display: block; }

/* Футер */
.footer-custom { background: var(--ink); color: var(--white); padding: 56px 0 20px; border-top: 3px solid var(--ember); }
.footer-custom a { color: rgba(244,234,212,0.6); text-decoration: none; transition: color 0.2s; }
.footer-custom a:hover { color: var(--white); }
.footer-custom .brand { font-size: 24px; letter-spacing: 0.3px; }
.footer-custom .brand span { color: var(--ember); }
.footer-custom .live-status { color: #7fbf6a; font-size: 14px; }
.footer-custom .live-status::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    background: #7fbf6a;
    border-radius: 50%;
    margin-right: 6px;
    animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* Модалка товара */
.modal-content { border-radius: 4px; border: 3px solid var(--ink); background: var(--white); }
.modal-body img { width: 100%; object-fit: cover; }

/* Крестик закрытия — тёмный кружок + белая иконка, виден на любом фото */
.modal-body .btn-close {
    background-color: rgba(28,20,16,0.65);
    border-radius: 50%;
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 1;
    width: 32px;
    height: 32px;
    padding: 0;
    transition: background-color 0.2s;
}
.modal-body .btn-close:hover { background-color: var(--ember); }
.modal-body .modal-info { padding: 24px; }
.modal-body .modal-info .price-lg { font-size: 30px; color: var(--ember); }
.modal-body .modal-info .ingredients-block { background: var(--paper); padding: 16px 20px; margin: 12px 0; border-left: 3px solid var(--ember); }

/* Адаптив */
@media (max-width: 992px) {
    .hero-section h1 { font-size: 46px; }
    .hero-image img { max-width: 100%; }
    .hero-image .floating-badge { width: 88px; height: 88px; }
}

@media (max-width: 768px) {
    body { padding-top: 62px; }
    .hero-section { padding: 40px 0; min-height: auto; }
    .hero-section h1 { font-size: 36px; }
    .hero-section .subtitle { font-size: 17px; }
    .section-header h2 { font-size: 30px; }
}

/* Звёздный рейтинг (форма отзыва) */
.stars-rating { display: flex; justify-content: center; gap: 12px; font-size: 32px; cursor: pointer; }
.stars-rating i { color: var(--line); transition: all 0.2s; user-select: none; }
.stars-rating i.active { color: var(--mustard); }
.stars-rating i:hover { transform: scale(1.15); }
.stars-rating i.hover { color: var(--mustard); }

/* Карточки отзывов */
.review-item {
    background: var(--white);
    padding: 22px;
    border: 1px solid var(--line);
    transition: all 0.25s;
    margin-bottom: 16px;
}
.review-item:nth-child(odd) { transform: rotate(-0.35deg); }
.review-item:nth-child(even) { transform: rotate(0.35deg); }
.review-item:hover { border-color: var(--ember); transform: rotate(0deg); box-shadow: 3px 6px 0 rgba(28,20,16,0.08); }

.review-item .review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.review-item .review-name { font-weight: 700; font-size: 16.5px; color: var(--ink); }
.review-item .review-stars { color: var(--mustard); font-size: 17px; letter-spacing: 2px; }
.review-item .review-date { font-size: 13px; color: var(--smoke); margin-left: 8px; }
.review-item .review-text { color: var(--ink); line-height: 1.7; margin-top: 8px; }
.review-item .review-text.expanded { display: block; }
.review-item .review-text:not(.expanded) { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.review-item .review-toggle { color: var(--ember); cursor: pointer; font-weight: 600; font-size: 14px; margin-top: 8px; display: inline-block; background: none; border: none; padding: 0; }
.review-item .review-toggle:hover { text-decoration: underline; }

.no-reviews { text-align: center; padding: 60px 20px; color: var(--smoke); }
.no-reviews .icon { font-size: 64px; margin-bottom: 16px; opacity: 0.3; }
.no-reviews h4 { color: var(--smoke-dark); margin-bottom: 8px; }

@media (max-width: 768px) {
    .stars-rating { font-size: 28px; gap: 8px; }
    .review-item .review-header { flex-direction: column; gap: 4px; }
    .review-item .review-stars { font-size: 16px; }
}

/* Категории меню — вкладки, не пилюли */
.categories-tabs { margin-bottom: 40px; position: relative; }
.categories-scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 4px 4px 12px 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    border-bottom: 2px solid var(--line);
}
.categories-scroll::-webkit-scrollbar { height: 4px; }
.categories-scroll::-webkit-scrollbar-track { background: var(--paper-2); }
.categories-scroll::-webkit-scrollbar-thumb { background: var(--ember); }

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: var(--smoke-dark);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
    margin-bottom: -2px;
}
.category-tab:hover { color: var(--ember); }
.category-tab.active { color: var(--ember); border-bottom-color: var(--ember); }
.category-tab .icon { font-size: 18px; }

.product-card .category-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(28,20,16,0.72);
    color: var(--white);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .category-tab { padding: 8px 14px; font-size: 13px; gap: 4px; }
    .category-tab .icon { font-size: 16px; }
    .categories-scroll { gap: 2px; padding-bottom: 8px; }
}

/* Цены и размеры */
.price-block { display: flex; align-items: center; gap: 8px; }
.price { font-size: 22px; color: var(--ember); }
.price-old { font-size: 17px; font-weight: 600; color: var(--smoke); text-decoration: line-through; text-decoration-color: var(--ember); text-decoration-thickness: 2px; }
.price-new { font-size: 23px; color: var(--ember); }
.size-block { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--smoke); }
.size { font-size: 13px; color: var(--smoke); }
.size-old { font-size: 12px; color: var(--smoke); opacity: 0.6; text-decoration: line-through; text-decoration-color: var(--ember); text-decoration-thickness: 1.5px; }
.size-new { font-size: 13px; color: var(--ember); font-weight: 700; }
.price-size-wrapper { display: flex; flex-direction: column; gap: 2px; }

/* ===== АДМИНКА ===== */
.admin-wrapper { max-width: 1100px; margin: 0 auto; padding: 24px 20px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; background: var(--white); padding: 16px 24px; border: 1px solid var(--line); clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); margin-bottom: 28px; }
.admin-header h1 { font-family: 'Anton', sans-serif; font-size: 28px; color: var(--ink); }
.admin-header .status { color: #27ae60; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.admin-header .status::before { content: ''; width: 10px; height: 10px; background: #27ae60; border-radius: 50%; animation: blink 1.5s infinite; }
.admin-tabs { display: flex; gap: 6px; background: var(--paper); padding: 6px; border: 1px solid var(--line); clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); overflow-x: auto; margin-bottom: 28px; }
.admin-tabs .tab-btn { padding: 10px 22px; border: none; background: transparent; color: var(--smoke); font-weight: 600; font-size: 15px; cursor: pointer; transition: 0.2s; white-space: nowrap; font-family: 'Inter', sans-serif; }
.admin-tabs .tab-btn:hover { color: var(--ink); background: rgba(28,20,16,0.04); }
.admin-tabs .tab-btn.active { background: var(--ember); color: var(--white); clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%); }
.admin-tabs .tab-btn .badge-count { background: rgba(255,255,255,0.25); padding: 0 8px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.admin-card { background: var(--white); padding: 24px; border: 1px solid var(--line); margin-bottom: 24px; clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%); }
.admin-card h5 { font-family: 'Anton', sans-serif; font-size: 20px; margin-bottom: 16px; color: var(--ink); }
.admin-card .form-label { font-weight: 600; font-size: 13px; color: var(--smoke); letter-spacing: 0.3px; }
.admin-card .form-control { border: 1px solid var(--line); background: var(--paper); border-radius: 4px; padding: 10px 14px; font-size: 14px; transition: 0.2s; }
.admin-card .form-control:focus { border-color: var(--ember); box-shadow: none; background: var(--white); }
.admin-card .btn-primary-custom { background: var(--ember); color: var(--white); border: none; padding: 10px 24px; font-weight: 700; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); transition: 0.2s; }
.admin-card .btn-primary-custom:hover { background: var(--ember-dark); transform: translateY(-2px); }
.admin-card .btn-success-custom { background: #27ae60; color: #fff; border: none; padding: 10px 24px; font-weight: 700; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); }
.admin-card .btn-success-custom:hover { background: #1e8449; }
.admin-card .btn-outline-custom { background: transparent; border: 2px solid var(--ink); color: var(--ink); padding: 8px 20px; font-weight: 600; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); }
.admin-card .btn-outline-custom:hover { border-color: var(--ember); color: var(--ember); }
.product-item, .category-item, .news-item-admin, .faq-item-admin, .review-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--paper); border-bottom: 1px solid var(--line); flex-wrap: wrap; gap: 8px; }
.product-item:last-child, .category-item:last-child, .news-item-admin:last-child, .faq-item-admin:last-child { border-bottom: none; }
.badge-hit { background: var(--ember); color: var(--white); padding: 2px 12px; font-size: 11px; font-weight: 700; border-radius: 20px; }
.empty-state { text-align: center; color: var(--smoke); padding: 30px 0; }
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
.toast-custom { background: var(--ink); color: var(--white); padding: 14px 28px; border-radius: 6px; font-size: 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); margin-top: 8px; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.image-preview img { max-height: 150px; border-radius: 6px; border: 1px solid var(--line); }
.news-form, .faq-form { background: var(--paper); padding: 16px; border-radius: 6px; margin-top: 12px; }