/* ========================================
   Template : Zen Asiatique
   Neutres, bambou vert, minimalisme japonais
   ======================================== */

.menu-template.zen-asiatique {
    --t-primary: var(--custom-primary, #2d2d2d);
    --t-secondary: var(--custom-secondary, #8b9a6b);
    --t-bg: var(--custom-bg, #f9f7f2);
    --t-text: var(--custom-text, #4a4a4a);
    --t-heading-font: var(--custom-heading-font, 'Noto Serif JP', serif);
    --t-body-font: var(--custom-body-font, 'Lato', sans-serif);

    background: var(--t-bg);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

/* Washi paper texture — very faint fiber pattern + ink wash gradient */
.zen-asiatique .menu-texture-overlay {
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(139, 154, 107, 0.01) 3px,
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 5px,
            rgba(139, 154, 107, 0.008) 5px,
            transparent 6px
        ),
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 8px,
            rgba(45, 45, 45, 0.006) 8px,
            transparent 9px
        ),
        radial-gradient(ellipse at 70% 20%, rgba(139, 154, 107, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(45, 45, 45, 0.02) 0%, transparent 40%);
    opacity: 1;
    mix-blend-mode: multiply;
}

/* Subtle ink wash gradient in background */
.zen-asiatique::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 10%, rgba(139, 154, 107, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 90%, rgba(45, 45, 45, 0.025) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
.zen-asiatique .menu-header {
    text-align: center;
    margin-bottom: 55px;
}

/* Vertical header line — taller and thinner */
.zen-asiatique .menu-header-line {
    width: 0.5px;
    height: 50px;
    background: var(--t-secondary);
    margin: 0 auto 24px;
    opacity: 0.5;
}

/* Bamboo SVG decoration */
.zen-asiatique .menu-header-deco {
    margin-bottom: 20px;
    opacity: 0.4;
}

.zen-asiatique .menu-header-deco .menu-svg-ornament {
    color: var(--t-secondary);
    opacity: 0.6;
}

.zen-asiatique .menu-restaurant-logo {
    margin: 0 auto 18px;
}

.zen-asiatique .menu-restaurant-name {
    font-family: var(--t-heading-font);
    font-size: 2em;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--t-primary);
    margin-bottom: 12px;
}

.zen-asiatique .menu-restaurant-subtitle {
    font-size: 0.8em;
    letter-spacing: 0.18em;
    color: var(--t-secondary);
    font-weight: 300;
}

/* SVG ornaments */
.zen-asiatique .menu-svg-ornament {
    color: var(--t-secondary);
    opacity: 0.4;
}

/* Categories — more breathing room */
.zen-asiatique .menu-category {
    margin-bottom: 44px;
}

/* Category header lines — more refined */
.zen-asiatique .menu-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.zen-asiatique .menu-category-line {
    flex: 1;
    height: 0.5px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(139, 154, 107, 0.3),
        rgba(139, 154, 107, 0.15)
    );
    opacity: 1;
}

.zen-asiatique .menu-category-line:last-child {
    background: linear-gradient(
        to left,
        transparent,
        rgba(139, 154, 107, 0.3),
        rgba(139, 154, 107, 0.15)
    );
}

.zen-asiatique .menu-category-name {
    font-family: var(--t-heading-font);
    font-size: 0.92em;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--t-primary);
    white-space: nowrap;
}

.zen-asiatique .menu-category-desc {
    font-size: 0.78em;
    font-style: italic;
    color: var(--t-text);
    opacity: 0.45;
    margin-bottom: 16px;
    margin-top: -12px;
    text-align: center;
}

/* Items — clean minimal borders, more breathing room */
.zen-asiatique .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(139, 154, 107, 0.1);
}

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

.zen-asiatique .menu-item-content {
    flex: 1;
    padding-right: 24px;
}

.zen-asiatique .menu-item-name {
    font-size: 0.94em;
    font-weight: 500;
    color: var(--t-primary);
    letter-spacing: 0.02em;
}

.zen-asiatique .menu-item-description {
    font-size: 0.78em;
    color: var(--t-text);
    opacity: 0.5;
    font-style: normal;
    margin-top: 4px;
    line-height: 1.6;
}

.zen-asiatique .menu-item-price {
    font-size: 0.88em;
    font-weight: 500;
    color: var(--t-secondary);
    letter-spacing: 0.03em;
}

/* Footer */
.zen-asiatique .menu-footer {
    margin-top: 55px;
    text-align: center;
}

.zen-asiatique .menu-footer-line {
    width: 0.5px;
    height: 35px;
    background: var(--t-secondary);
    margin: 0 auto 18px;
    opacity: 0.4;
}

.zen-asiatique .menu-restaurant-info {
    font-size: 0.74em;
    color: var(--t-text);
    opacity: 0.4;
    letter-spacing: 0.06em;
}

.zen-asiatique .menu-restaurant-info p {
    margin: 4px 0;
}
