/* ============================================================
   styles.css — Public site styles
   Load order: brand.css → tokens.css → styles.css
   ============================================================
   RULES:
   - NO hex, NO hardcoded rgba/hsl values in components
   - ALL colors via semantic tokens from tokens.css
   - ALL shadows via elevation/inner tokens from tokens.css
   - Light mode ready: [data-theme="light"] overrides live
     in tokens.css, nothing needed here
   ============================================================ */

@import url('brand.css');
@import url('tokens.css');

/* ============================================================
   BASE & RESET
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-page);
    min-height: 100vh;
    color: var(--color-text);
    line-height: 1.6;
    font-weight: var(--fw-normal);
    scroll-behavior: smooth;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 1vh;
}

.container--wide {
    max-width: 1200px;
}

.container--location {
    max-width: 650px;
    padding: 40px 20px;
    margin: 0 auto;
}

/* ============================================================
   PROFILE & LOGO
   ============================================================ */
.profile-image,
.logo {
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--elevation-3);
    border: 4px solid var(--color-secondary);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.profile-image {
    width: 130px;
    height: 130px;
}

.logo {
    width: 80px;
    height: 80px;
    font-size: 36px;
    border-width: 3px;
    margin-bottom: 20px;
}

/* Profile image background — uses primary brand color */
.profile-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.profile-image span {
    position: relative;
    z-index: 1;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.business-name,
.menu-title {
    font-weight: var(--fw-bold);
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 4px hsl(var(--shadow-h) var(--shadow-s) var(--shadow-l) / 0.5);
    letter-spacing: -0.5px;
}

.business-name {
    color: var(--color-text);
    font-size: 32px;
}

.menu-title {
    font-size: 36px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-subtitle {
    font-size: 0.8rem;
    font-weight: var(--fw-normal);
    opacity: 0.8;
    margin: 0.25rem 0 0.5rem;
}

.business-tagline,
.menu-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: var(--fw-medium);
    text-shadow: 0 1px 2px hsl(var(--shadow-h) var(--shadow-s) var(--shadow-l) / 0.3);
}

.menu-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.thank-you {
    text-align: center;
    padding-top: 1rem;
    color: var(--color-text);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.profile-section,
.header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.6s ease-out;
}

.header {
    padding: var(--spacing-xl) 20px;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    animation: fadeInUp 0.6s ease-out 0.2s both;
    padding: 0 1rem;
}

.social-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: var(--spacing-md);
}

.social-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-full) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn .icon {
    font-size: 18px;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switch-btn {
    position: absolute;
    text-decoration: none;
    top: 2rem;
    right: 2rem;
    background: hsl(var(--neutral-h) var(--neutral-s) 80% / 0.1);
    border: 1px solid hsl(var(--neutral-h) var(--neutral-s) 80% / 0.2);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: inherit;
    font-weight: var(--fw-medium);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.lang-switch-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-invert);
    transform: translateY(-2px);
}

.lang-icon {
    font-size: 1.1rem;
}

/* ============================================================
   BUTTONS & LINKS
   ============================================================ */
.link-button {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    text-decoration: none;
    color: var(--color-text);
    font-size: 16px;
    font-weight: var(--fw-bold);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition-base);
    box-shadow: var(--elevation-1);
    cursor: pointer;
}

.link-button .loc-label {
    text-align: center;
    flex: 1;
}

.link-button .loc-status {
    font-size: 12px;
    font-weight: var(--fw-medium);
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.link-button:has(.loc-status) {
    flex-direction: column;
    gap: 2px;
}

.link-button .loc-status.status-open {
    color: var(--color-success);
}

.link-button .loc-status.status-closed {
    color: var(--color-danger);
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--elevation-2);
    background: var(--surface-1);
    /* Removed color-invert - text keeps normal color in both light/dark */
}

.link-button:active {
    transform: translateY(0);
    box-shadow: var(--inner-2);
}

.link-button:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Review CTA button */
.review-btn {
    background: var(--gradient-primary) !important;
    color: var(--color-text) !important;
    box-shadow: var(--shadow-primary) !important;
}

.review-btn:hover {
    background: var(--gradient-primary) !important;
    color: var(--color-text-invert) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-hover) !important;
}

.review-btn .icon {
    color: var(--color-accent);
    filter: drop-shadow(0 1px 3px hsl(var(--shadow-h) var(--shadow-s) var(--shadow-l) / 0.3));
}

/* Back navigation */
.back-link,
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--card-bg);
    color: var(--color-text);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-weight: var(--fw-medium);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-strong);
    cursor: pointer;
    margin-top: 2rem;
    box-shadow: var(--elevation-1);
}

.back-link:hover,
.back-btn:hover {
    background: var(--surface-4);
    transform: translateY(-2px);
    box-shadow: var(--elevation-2);
}

.back-link:active,
.back-btn:active {
    transform: translateY(0);
    box-shadow: var(--inner-1);
}

.back-link:focus-visible,
.back-btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.icon {
    font-size: 24px;
}

/* ============================================================
   REVIEW SYSTEM
   ============================================================ */
.review-page {
    max-width: 400px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
    animation: fadeInUp 0.6s ease-out;
}

.review-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.review-title {
    color: var(--color-text);
    font-size: 24px;
    font-weight: var(--fw-bold);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px hsl(var(--shadow-h) var(--shadow-s) var(--shadow-l) / 0.3);
}

.review-subtitle {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.rating-section {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    box-shadow: var(--elevation-2);
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.stars-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.star {
    font-size: 40px;
    color: var(--color-text-subtle);
    cursor: pointer;
    transition: var(--transition-base);
    border: 0;
    background: transparent;
}

.star:hover,
.star.active {
    color: var(--color-accent);
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px hsl(var(--accent-h) var(--accent-s) var(--accent-l) / 0.35));
}

.star:focus-visible {
    outline: none;
    filter: drop-shadow(0 0 4px hsl(var(--primary-h) var(--primary-s) var(--primary-l) / 0.6));
}

.rating-text {
    font-size: 18px;
    font-weight: var(--fw-medium);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.feedback-form {
    display: none;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--border);
}

.feedback-form.show {
    display: block;
    animation: slideDown 0.4s ease-out;
}

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

.form-label {
    display: block;
    font-weight: var(--fw-medium);
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px var(--spacing-sm);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-color);
    background: var(--input-bg);
    color: var(--input-text);
    box-shadow: var(--inner-1);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--inner-1), var(--focus-ring);
}

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

.submit-btn {
    background: var(--gradient-primary);
    color: var(--color-text-invert);
    border: none;
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 16px;
    font-weight: var(--fw-medium);
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-base);
    box-shadow: var(--shadow-primary);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-hover);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: var(--inner-2);
}

.submit-btn:focus-visible {
    outline: none;
    box-shadow: var(--shadow-primary), var(--focus-ring);
}

button:disabled,
input[type="submit"]:disabled {
    opacity: var(--disabled-opacity);
    cursor: not-allowed;
    filter: grayscale(100%);
}

/* Success message */
.success-message {
    display: none;
    text-align: center;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
    box-shadow: var(--elevation-2);
    margin-top: var(--spacing-lg);
    border: 1px solid var(--border);
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.success-icon {
    font-size: 60px;
    color: var(--color-success);
    margin-bottom: var(--spacing-sm);
}

.success-title {
    font-size: 20px;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.success-text {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ============================================================
   MENU
   ============================================================ */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.category {
    background: hsl(var(--neutral-h) var(--neutral-s) 80% / 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    border: 1px solid var(--border);
    box-shadow: var(--elevation-2);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-title {
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--color-accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-description {
    font-size: 14px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Product card — inverted colors for contrast in each mode */
.product-card {
    background: var(--color-text);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--elevation-1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--elevation-2);
}

.product-image {
    width: 100%;
    height: 160px;
    /* Brand-stable accent background — uses HSL primitives directly (not --accent-subtle)
       so it remains identical in light and dark themes, matching digital signage screens */
    background: hsl(var(--accent-h) var(--accent-s) var(--accent-l));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Shimmer overlay */
.product-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            transparent 30%,
            hsl(var(--neutral-h) var(--neutral-s) 100% / 0.1) 50%,
            transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

.product-info {
    padding: 20px;
    color: var(--color-text-invert);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xs);
}

.product-number {
    background: var(--gradient-primary);
    color: var(--color-text-invert);
    font-weight: var(--fw-bold);
    font-size: 12px;
    padding: 4px var(--spacing-xs);
    border-radius: var(--radius-xs);
    min-width: 24px;
    text-align: center;
}

.product-name {
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--color-text-invert);
    margin-bottom: var(--spacing-xs);
    flex: 1;
    margin-right: 10px;
}

.product-description {
    font-size: 14px;
    color: var(--color-text-invert);
    opacity: 0.75;
    line-height: 1.4;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 20px;
    font-weight: var(--fw-bold);
    color: var(--color-primary);
}

.order-btn {
    background: var(--gradient-primary);
    color: var(--color-text-invert);
    border: none;
    border-radius: var(--radius-full);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 12px;
    font-weight: var(--fw-medium);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--elevation-1);
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.order-btn:active {
    transform: translateY(0);
    box-shadow: var(--inner-1);
}

.order-btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* ============================================================
   MENU WRAPPER
   ============================================================ */
.menu-wrapper {
    animation: fadeInUp 0.5s ease-out;
}

.menu-wrapper .back-btn {
    margin-bottom: 30px;
}

/* ============================================================
   MISC — Shortcode highlight badge
   ============================================================ */
.fsd {
    color: var(--color-accent);
    font-weight: var(--fw-bold);
    text-shadow: 0 0 10px hsl(var(--accent-h) var(--accent-s) var(--accent-l) / 0.4);
    background: var(--accent-subtle);
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    border: 1px solid hsl(var(--accent-h) var(--accent-s) var(--accent-l) / 0.3);
    display: inline-block;
    animation: soft-pulse 2s infinite ease-in-out;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-section {
    background: var(--card-bg);
    margin: 2rem 0 2.5rem;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    border: 1px solid var(--border);
    box-shadow: var(--elevation-2);
}

.location-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-weight: var(--fw-bold);
    text-align: center;
}

.location-address,
.location-hours,
.location-contact {
    margin: 0.5rem 0;
    font-size: 1.05rem;
    color: var(--color-text);
}

.location-address a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: var(--fw-medium);
}

/* Secondary contact link — uses secondary brand color */
.location-contact a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: var(--fw-medium);
}

.location-card {
    cursor: pointer;
    text-align: center;
    background: var(--surface-1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.location-card:hover,
.location-card:focus {
    transform: translateY(-6px);
    box-shadow: var(--elevation-3);
}

.location-card:focus-visible {
    box-shadow: var(--elevation-2), var(--focus-ring);
}

.location-card .product-info {
    padding: 30px 20px;
}

.location-card .product-name {
    font-size: 20px;
    font-weight: var(--fw-bold);
    color: var(--card-text);
}

.location-card .product-description {
    font-size: 14px;
    color: var(--color-text-muted);
}

.location-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: 0 1rem;
}

#reviewLocationSelect.rating-section {
    background: transparent;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    padding: 0 1rem;
}

/* ============================================================
   GDPR / MODAL
   ============================================================ */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--color-text);
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.checkbox-wrapper a {
    color: var(--color-accent);
    text-decoration: underline;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: hsl(var(--shadow-h) var(--shadow-s) var(--shadow-l) / 0.8);
    backdrop-filter: blur(5px);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    margin: 20px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--elevation-3);
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: hsl(var(--shadow-h) var(--shadow-s) var(--shadow-l) / 0.15);
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-text);
}

.close-modal {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 10px;
    transition: var(--transition-color);
}

.close-modal:hover {
    color: var(--color-accent);
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.modal-body h2 {
    color: var(--color-text);
    font-size: 1.5rem;
}

.modal-body h3 {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.modal-body ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border);
    text-align: right;
    background: hsl(var(--shadow-h) var(--shadow-s) var(--shadow-l) / 0.15);
}

.btn-secondary {
    background: hsl(var(--neutral-h) var(--neutral-s) 80% / 0.1);
    color: var(--color-text);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-weight: var(--fw-medium);
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: hsl(var(--neutral-h) var(--neutral-s) 80% / 0.2);
    border-color: var(--border-strong);
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.hero {
    text-align: center;
    padding: 4rem 1rem 3rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.hero h1 em {
    font-style: normal;
    color: var(--color-primary);
}

.hero-meta {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-subtle);
    color: var(--color-primary);
    border: 1px solid hsl(var(--primary-h) var(--primary-s) var(--primary-l) / 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.toc-bar {
    background: hsl(var(--neutral-h) var(--neutral-s) 80% / 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin: 2rem 0 3rem;
    backdrop-filter: blur(10px);
}

.toc-bar h2 {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.8rem 2rem;
}

.toc-grid a {
    color: var(--color-text-subtle);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-color);
}

.toc-grid a:hover {
    color: var(--color-primary);
}

.toc-num {
    color: var(--color-primary);
    font-weight: var(--fw-medium);
    font-size: 0.8rem;
    min-width: 1.5em;
}

.modal-body .intro-text,
.page-wrap .intro-text {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    border-left: 3px solid var(--border);
    padding-left: 1rem;
}

.section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.text-highlight-white {
    color: var(--neutral-0);
}

.text-highlight-accent {
    color: var(--color-accent);
}

.section p .text-highlight-white,
.section p .text-highlight-accent {
    font-weight: var(--fw-bold);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.section-num {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: var(--color-text-invert);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.section-title {
    font-size: 1.4rem;
    color: var(--color-text);
    margin: 0;
}

h3.sub {
    font-size: 1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 2rem 0 1rem;
    font-weight: var(--fw-medium);
}

p {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.info-card {
    background: hsl(var(--neutral-h) var(--neutral-s) 80% / 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    background: hsl(var(--shadow-h) var(--shadow-s) var(--shadow-l) / 0.2);
    color: var(--color-text-muted);
    padding: 1rem;
    min-width: 200px;
    font-weight: var(--fw-medium);
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    padding: 1rem;
    color: var(--color-text);
    flex: 1;
    overflow-wrap: break-word;
}

.info-value a {
    color: var(--color-primary);
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    background: hsl(var(--neutral-h) var(--neutral-s) 80% / 0.03);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.data-table thead tr {
    background: hsl(var(--shadow-h) var(--shadow-s) var(--shadow-l) / 0.3);
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    color: var(--color-text-muted);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.data-table td:first-child {
    font-weight: var(--fw-medium);
    color: var(--color-primary);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.5rem;
}

.styled-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.styled-list li::before {
    content: "\203A";
    position: absolute;
    left: 0.2rem;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1;
    top: -2px;
}

.notice {
    border-left: 3px solid var(--color-primary);
    background: var(--primary-subtle);
    padding: 1rem 1.2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 1.5rem 0;
}

.notice strong {
    color: var(--color-text);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.right-card {
    background: hsl(var(--neutral-h) var(--neutral-s) 80% / 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    transition: var(--transition-base);
    box-shadow: var(--elevation-1);
}

.right-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: var(--elevation-2);
}

.right-card h4 {
    color: var(--color-text);
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: var(--fw-medium);
}

.right-card p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.right-card .rc-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    display: block;
}

.rc-ref {
    color: var(--color-primary);
    font-size: 0.68rem;
}

.contact-box {
    background: hsl(var(--neutral-h) var(--neutral-s) 80% / 0.03);
    border: 1px solid var(--border);
    border-top: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-box h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.contact-item .ci-label {
    color: var(--color-text);
    font-weight: var(--fw-medium);
    min-width: fit-content;
}

.contact-item a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Authority box — uses success semantic color */
.authority-box {
    background: var(--success-subtle);
    border: 1px solid hsl(var(--success-h) var(--success-s) var(--success-l) / 0.2);
    border-left: 3px solid var(--color-success);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.authority-box h4 {
    color: var(--color-success);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.authority-box a {
    color: var(--color-success);
    font-weight: var(--fw-medium);
    text-decoration: none;
}

.authority-box a:hover {
    text-decoration: underline;
}

.page-footer {
    text-align: center;
    padding: 3rem 1rem;
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out both;
    animation-delay: var(--anim-delay, 0s);
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 500px;
    }
}

@keyframes shimmer {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes soft-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
    .container {
        padding-top: 3vh;
    }

    .profile-image {
        width: 130px;
        height: 130px;
    }

    .business-name {
        font-size: 24px;
    }

    .menu-title {
        font-size: 28px;
    }

    .star {
        font-size: 32px;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
    }

    .header {
        padding: 20px 15px;
    }

    .category {
        padding: 10px;
    }

    .product-info {
        padding: 15px;
    }

    .lang-switch-btn {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .location-section {
        padding: 1rem 0.5rem;
    }

    .location-title {
        font-size: 1.15rem;
    }

    .location-card .product-info {
        padding: 20px 15px;
    }

    .location-card .product-name {
        font-size: 18px;
    }

    .modal-body {
        padding: 15px;
    }

    .info-row {
        flex-direction: column;
    }

    .info-label {
        min-width: auto;
        padding-bottom: 0.2rem;
        background: transparent;
        color: var(--color-accent);
        border-bottom: none;
    }

    .info-value {
        padding-top: 0;
    }

    .data-table {
        display: block;
        overflow-x: auto;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 3rem 1rem 2rem;
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .menu-grid {
        gap: 50px;
    }

    .contact-box {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .menu-grid {
        gap: 60px;
    }

    .product-image {
        height: 180px;
    }
}