/* ============================================
   野菜巻き串 えくぼ — White Modern Style
   ============================================ */

:root {
    --white: #ffffff;
    --bg: #fafafa;
    --bg-card: #f2f0ed;
    --bg-dark: #1c1c1c;
    --border: #e4e0db;
    --border-light: #eeebe7;
    --text: #1c1c1c;
    --text-mid: #555550;
    --text-dim: #8c8880;
    --accent: #c8553a;
    --accent-light: #d8714f;
    --accent-dark: #a8422c;
    --font-main: 'Noto Sans JP', 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
    --font-round: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-height: 72px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text);
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.04em;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 clamp(20px, 4vw, 60px);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-family: var(--font-round);
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: var(--font-round);
    color: var(--text);
}

.global-nav ul {
    list-style: none;
    display: flex;
    gap: clamp(16px, 3vw, 40px);
    align-items: center;
}

.global-nav a {
    color: var(--text-mid);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}

.global-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--transition);
}

.global-nav a:hover {
    color: var(--text);
}

.global-nav a:hover::after {
    width: 100%;
}

.nav-tel {
    color: var(--accent) !important;
    border: 1px solid var(--accent);
    border-radius: 24px;
    padding: 6px 18px !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.06em !important;
    font-weight: 500;
}

.nav-tel:hover {
    background: var(--accent);
    color: var(--white) !important;
}

.nav-tel::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(255, 255, 255, 0.9) 92%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-catch {
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    font-weight: 700;
    font-family: var(--font-round);
    letter-spacing: 0.1em;
    line-height: 1.7;
    color: var(--white);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-shop-name {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    font-family: var(--font-round);
    letter-spacing: 0.12em;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-sub {
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: lineGrow 2s ease-out 0.5s both;
}

@keyframes lineGrow {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: 50px;
        opacity: 1;
    }
}

.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-tag {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Hero placeholder (no images) */
.hero-bg-placeholder {
    position: absolute;
    inset: 0;
    background: var(--bg-card);
}

.hero--no-image .hero-catch {
    color: var(--text);
    text-shadow: none;
}

.hero--no-image .hero-shop-name {
    color: var(--text);
    text-shadow: none;
}

.hero--no-image .hero-sub {
    color: var(--text-dim);
    text-shadow: none;
}

.hero--no-image .hero-line {
    background: linear-gradient(to bottom, var(--border), transparent);
}

.hero--no-image .hero-tag {
    border-color: var(--border);
    color: var(--text-mid);
    background: var(--white);
    backdrop-filter: none;
    text-shadow: none;
}

/* ---- Sections ---- */
.section {
    padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 80px);
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 70px);
}

.section-title-en {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text);
    text-transform: uppercase;
    font-family: var(--font-round);
}

.section-title-ja {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    margin-top: 6px;
}

.section-title-line {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--accent);
    margin: 18px auto 0;
}

/* ---- Photo Strip ---- */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.photo-strip-item {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-strip-item:hover img {
    transform: scale(1.04);
}

/* ---- Photo Banner ---- */
.photo-banner {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 21/9;
    overflow: hidden;
    border-radius: 10px;
}

.photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-banner-label {
    position: absolute;
    bottom: 20px;
    left: 28px;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    font-family: var(--font-round);
    color: var(--white);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ---- Photo Placeholders ---- */
.photo-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder span,
.photo-placeholder-box span,
.photo-placeholder-wide span {
    font-size: 0.78rem;
    color: var(--text-dim);
    opacity: 0.5;
}

.photo-placeholder-box {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 2px dashed var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/4;
}

.photo-placeholder-wide {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 2px dashed var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Concept ---- */
.concept-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.concept-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
}

.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.concept-image:hover img {
    transform: scale(1.03);
}

.concept-text h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    font-family: var(--font-round);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.8;
}

.concept-text p {
    font-size: 0.88rem;
    line-height: 2.2;
    color: var(--text-mid);
}

.concept-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: clamp(30px, 5vw, 50px);
}

.concept-gallery-item {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 10px;
}

.concept-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.concept-gallery-item:hover img {
    transform: scale(1.04);
}

/* ---- Drink ---- */
.drink-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.drink-intro-text h3 {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 600;
    font-family: var(--font-round);
    letter-spacing: 0.06em;
    margin-bottom: 18px;
    color: var(--text);
}

.drink-intro-text p {
    font-size: 0.88rem;
    line-height: 2.2;
    color: var(--text-mid);
}

.drink-intro-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
}

.drink-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Divider ---- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--border);
}

/* ---- Menu (Accordion) ---- */
.menu-category {
    margin-bottom: 6px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.menu-category-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.menu-category-toggle:hover {
    background: var(--bg-card);
}

.menu-category-name {
    flex: 1;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--text);
    font-weight: 600;
    font-family: var(--font-round);
}

.menu-category-count {
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
}

.menu-toggle-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--text-dim);
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle-icon::before {
    width: 12px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle-icon::after {
    width: 1.5px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-category-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.menu-list-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-list-wrap.is-open {
    max-height: 3000px;
}

.menu-list {
    display: grid;
    gap: 0;
    padding: 0 20px 16px;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: start;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-with-image {
    grid-template-columns: 72px 1fr auto;
}

.menu-item-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.menu-item-name {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text);
}

.menu-item-desc {
    font-size: 0.76rem;
    color: var(--text-dim);
    margin-top: 3px;
    line-height: 1.7;
}

.menu-item-price {
    font-size: 0.92rem;
    color: var(--accent);
    letter-spacing: 0.04em;
    white-space: nowrap;
    font-weight: 600;
}

.price-tax {
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--text-dim);
}

.menu-note {
    font-size: 0.76rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 20px;
}

/* ---- News ---- */
.news-list {
    list-style: none;
}

.news-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.news-item:first-child {
    border-top: 1px solid var(--border-light);
}

.news-date {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    font-weight: 500;
}

.news-title {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    color: var(--text);
}

.news-content {
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 2;
}

/* ---- Access ---- */
.access-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: start;
}

.access-info dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 20px;
    font-size: 0.86rem;
}

.access-info dt {
    color: var(--text);
    letter-spacing: 0.08em;
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.82rem;
}

.access-info dd {
    color: var(--text-mid);
    line-height: 1.8;
}

.access-map {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 80px);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.footer-logo .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-round);
}

.footer-logo .logo-main {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: var(--font-round);
    color: var(--white);
}

.footer-sns {
    display: flex;
    gap: 16px;
}

.footer-sns a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.footer-sns a:hover {
    color: var(--white);
}

.footer-info dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 18px;
    font-size: 0.78rem;
}

.footer-info dt {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    font-weight: 500;
}

.footer-info dd {
    color: rgba(255, 255, 255, 0.65);
}

.footer-info dd a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-info dd a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.06em;
}

/* ---- Fade-in ---- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.12s;
}

.fade-in-delay-2 {
    transition-delay: 0.24s;
}

/* ---- Mobile Sticky Bottom Bar ---- */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    transition: color 0.3s ease, background 0.3s ease;
    position: relative;
}

.mobile-bottom-item:hover,
.mobile-bottom-item:active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-bottom-item+.mobile-bottom-item {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-bottom-item--phone {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-bottom-item--phone svg {
    color: var(--accent-light);
}

.mobile-bottom-item span {
    font-family: var(--font-main);
    font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.is-active span {
        background: var(--white);
    }

    .global-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(28, 28, 28, 0.97);
        backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }

    .global-nav.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .global-nav ul {
        flex-direction: column;
        gap: 26px;
    }

    .global-nav a {
        font-size: 1rem;
        letter-spacing: 0.2em;
        color: rgba(255, 255, 255, 0.7);
    }

    .global-nav a:hover {
        color: var(--white);
    }

    .nav-tel {
        border-color: rgba(255, 255, 255, 0.4);
        color: var(--white) !important;
    }

    .nav-tel:hover {
        background: var(--white);
        color: var(--bg-dark) !important;
    }

    .concept-body,
    .access-body,
    .drink-intro {
        grid-template-columns: 1fr;
    }

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

    .menu-item-with-image {
        grid-template-columns: 56px 1fr auto;
    }

    .menu-item-img {
        width: 56px;
        height: 56px;
    }

    .hero-tags {
        padding: 0 20px;
    }

    .photo-strip {
        grid-template-columns: 1fr;
    }

    .photo-banner {
        border-radius: 0;
        aspect-ratio: 16/9;
    }

    .photo-banner-label {
        bottom: 12px;
        left: 16px;
    }

    /* Mobile bottom bar visible */
    .mobile-bottom-bar {
        display: grid;
    }

    .site-footer {
        padding-bottom: calc(clamp(40px, 6vw, 70px) + 70px);
    }
}

/* ---- BG Section (交互背景) ---- */
.section-alt {
    background: var(--bg);
}

/* ============================================
   Admin Styles
   ============================================ */

.admin-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 30px) 20px 60px;
}

.admin-login {
    max-width: 380px;
    margin: 15vh auto;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.admin-login h1 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
    text-align: center;
    color: var(--text);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.76rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="file"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 0.88rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 10px 28px;
    font-family: var(--font-main);
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: 1px solid var(--accent);
    border-radius: 8px;
    background: transparent;
    color: var(--accent);
    transition: all var(--transition);
}

.btn:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-danger {
    border-color: #c04040;
    color: #c04040;
}

.btn-danger:hover {
    background: #c04040;
    color: var(--white);
}

.btn-small {
    padding: 5px 14px;
    font-size: 0.72rem;
}

.admin-section {
    margin-bottom: 44px;
}

.admin-section h2 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.admin-table th,
.admin-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.admin-table th {
    color: var(--text-dim);
    font-weight: 500;
    letter-spacing: 0.06em;
    font-size: 0.76rem;
}

.admin-table td {
    color: var(--text-mid);
}

.admin-table img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.alert {
    padding: 12px 18px;
    margin-bottom: 18px;
    font-size: 0.84rem;
    border: 1px solid;
    border-radius: 8px;
}

.alert-success {
    border-color: #b8d8be;
    background: #eef6ef;
    color: #3a7d44;
}

.alert-error {
    border-color: #e0b8b8;
    background: #fceeed;
    color: #9e3636;
}

.admin-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.admin-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-dim);
}

.admin-nav a:hover,
.admin-nav a.active {
    border-color: var(--accent);
    color: var(--accent);
}