:root {
    --primary: #8a6a3f; /* Joyce banner gold/wood tone */
    --dark: #0c2418;
    --light: #f8f5ef;
    --accent: #c08a3b;
    --accent-soft: #f7e3c2;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.dashboard-body {
    background: #f1f5f9;
}

.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.site-header,
.site-footer {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.site-header .container,
.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.brand img {
    height: 58px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.hero {
    padding: 4rem 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}

.booking-hero {
    padding: 3rem 0 1rem;
    background: #e0f2f1;
}

.booking-search {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.booking-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.booking-filters label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #475569;
}

.booking-filters input {
    padding: 0.5rem;
    border: 1px solid #cbd5f5;
    border-radius: 0.375rem;
}

.booking-results {
    padding: 2rem 0;
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.available-rooms {
    list-style: none;
    padding: 0;
    margin: 0;
}

.available-rooms li {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.guest-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.guest-fields input {
    flex: 1 1 200px;
    padding: 0.5rem;
    border: 1px solid #cbd5f5;
    border-radius: 0.375rem;
}

.alert.success {
    background: #d1fae5;
    border: 1px solid #34d399;
    color: #065f46;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin-top: 1rem;
}

.alert.danger {
    background: #fee2e2;
    border: 1px solid #f87171;
    color: #991b1b;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
}

.auth-card {
    width: min(420px, 100%);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.auth-card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.auth-card label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #475569;
}

.auth-card input {
    padding: 0.65rem;
    border: 1px solid #cbd5f5;
    border-radius: 0.375rem;
    margin-top: 0.35rem;
}

/* Login Page Styles */
.login-page-wrapper {
    padding: 2rem 1rem;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.login-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.login-page-intro h1 {
    font-size: 3rem;
    color: #0d9488;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.login-page-intro p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.login-page-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.login-card {
    width: 100%;
    max-width: 100%;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 0.625rem;
    color: #0d9488;
    font-size: 2rem;
}

.login-subtitle {
    text-align: center;
    margin-bottom: 1.875rem;
    color: #666;
}

.login-card label {
    display: block;
    margin-bottom: 1.25rem;
}

.login-card label span {
    display: block;
    margin-bottom: 0.3125rem;
    font-weight: 600;
    color: #333;
}

.login-card input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    font-size: 1rem;
    box-sizing: border-box;
}

.login-card input[type="text"],
.login-card input[type="password"] {
    font-size: 16px; /* Prevent iOS zoom */
}

.login-card label small {
    display: block;
    margin-top: 0.3125rem;
    color: #666;
    font-size: 0.85rem;
}

.login-card .btn-block {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.login-help {
    text-align: center;
    margin-top: 1.25rem;
    color: #666;
    font-size: 0.9rem;
}

.login-help a {
    color: #0d9488;
    text-decoration: none;
}

.login-help a:hover {
    text-decoration: underline;
}

/* Site Header Responsive */
@media (max-width: 1023px) {
    .site-header .container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav a {
        margin-left: 0;
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .brand img {
        max-height: 40px;
    }
}

@media (max-width: 767px) {
    .site-header .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .nav {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav a {
        margin-left: 0;
        margin-top: 0;
        padding: 0.75rem 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .brand {
        width: 100%;
    }
    
    .brand img {
        max-height: 36px;
    }
    
    /* Login Page Mobile */
    .login-page-wrapper {
        padding: 1.5rem 1rem;
        min-height: calc(100vh - 150px);
    }
    
    .login-page-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-page-intro {
        order: 2;
        text-align: center;
    }
    
    .login-page-intro h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .login-page-intro p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .login-page-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .login-page-actions .btn {
        width: 100%;
    }
    
    .login-card {
        order: 1;
        padding: 1.5rem;
    }
    
    .login-card h2 {
        font-size: 1.5rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
}

.btn-small {
    padding: 0.35rem 0.75rem;
    font-size: 0.9rem;
}

.booking-staff-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-header-actions {
    display: flex;
    gap: 0.5rem;
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.booking-actions form {
    margin: 0;
}

.inline-form {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0.25rem 0;
}

.inline-form input[type="text"],
.inline-form select {
    padding: 0.35rem;
    border: 1px solid #cbd5f5;
    border-radius: 0.375rem;
}

.folio-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.folio-summary div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
}

.folio-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.folio-form label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #475569;
}

.folio-form input,
.folio-form select {
    margin-top: 0.35rem;
    padding: 0.5rem;
    border: 1px solid #cbd5f5;
    border-radius: 0.375rem;
}

.calendar-table th,
.calendar-table td {
    text-align: center;
    min-width: 110px;
}

.calendar-slot-active {
    background: #e0f2f1;
}

.calendar-table form {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.calendar-table select {
    padding: 0.3rem;
}

.pos-shell {
    padding: 1.5rem;
}

.pos-topbar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 0.25rem;
}
.pos-topbar__controls {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}
.pos-topbar__actions {
	display: flex;
	gap: 0.5rem;
}
.pos-layout {
	display: grid;
	grid-template-columns: 220px 1fr 360px;
	gap: 1rem;
	position: relative;
	min-height: 70vh;
}
.pos-categories {
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	padding: 1rem;
	background: #f8fafc;
}
.pos-categories ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.pos-categories button {
	width: 100%;
	text-align: left;
	background: transparent;
	border: 1px solid transparent;
	padding: 0.5rem 0.75rem;
	border-radius: 0.6rem;
	font-weight: 600;
	color: #0f172a;
	transition: background 0.2s;
}
.pos-categories button.active {
	background: #0ea5e9;
	color: #fff;
}
.pos-categories__header {
	display: none;
}
.pos-items {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.pos-items__search input {
	width: 100%;
	border: 1px solid #cbd5f5;
	border-radius: 0.8rem;
	padding: 0.65rem 1rem;
}
.pos-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}
.pos-card {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	padding: 0.75rem;
	background: #fff;
	position: relative;
	cursor: pointer;
}
.pos-card img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 0.8rem;
}
.pos-card__placeholder {
	width: 100%;
	height: 120px;
	border-radius: 0.8rem;
	background: linear-gradient(120deg, #f0fdfa, #dbeafe);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #0f172a;
}
.pos-card__meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-align: left;
}
.pos-card__badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	font-size: 0.75rem;
	background: #e2e8f0;
	color: #0f172a;
	pointer-events: none;
}
.pos-card__badge.add {
	background: #0ea5e9;
	color: #fff;
}
.pos-card.is-disabled {
	opacity: 0.5;
	cursor: pointer;
}
.pos-cart {
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	padding: 1rem;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
}
.pos-cart__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
}
.pos-cart__actions {
	display: flex;
	gap: 0.5rem;
}
.pos-cart__actions .pos-cart-close {
	display: none;
}
.pos-cart__lines {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-height: 45vh;
	overflow-y: auto;
}
.pos-line {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 0.5rem;
	align-items: center;
	padding: 0.5rem;
	border: 1px solid #e2e8f0;
	border-radius: 0.75rem;
}
.pos-line__qty {
	display: flex;
	gap: 0.25rem;
	align-items: center;
}
.pos-line__qty button {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: 1px solid #cbd5f5;
	background: #fff;
}
.pos-line__total {
	text-align: right;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.pos-line__total button {
	align-self: flex-end;
	background: transparent;
	border: none;
	color: #ef4444;
	font-size: 1rem;
	cursor: pointer;
}
.pos-cart__summary {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}
.pos-cart__fields {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.75rem;
}
.pos-cart__fields select,
.pos-cart__fields input {
	width: 100%;
	border: 1px solid #cbd5f5;
	border-radius: 0.6rem;
	padding: 0.5rem;
}
.pos-cart-floating {
	display: none;
	position: fixed;
	bottom: 1.25rem;
	right: 1.25rem;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	background: #0ea5e9;
	color: #fff;
	border: none;
	font-weight: 600;
	box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}
.pos-cart.is-open {
	transform: translateY(0);
}

/* POS Modern Professional Theme */
.pos-shell {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	color: #1e293b;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	border-radius: 1rem;
	padding: 2rem;
}
.pos-shell h2,
.pos-shell h3 {
	color: #0f172a;
	font-weight: 700;
}
.pos-shell strong {
	color: #1e293b;
}
.pos-topbar {
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
}
.pos-topbar__user {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 0.75rem;
	padding: 0.75rem 1.25rem;
	color: #475569;
}
.pos-topbar__actions .btn-outline {
	background: #fff;
	border-color: #cbd5e1;
	color: #475569;
}
.pos-topbar__actions .btn-outline:hover {
	background: #f8fafc;
	border-color: #94a3b8;
}
.pos-layout {
	grid-template-columns: 240px 1fr 400px;
	gap: 1.5rem;
}
.pos-categories {
	border: 1px solid #e2e8f0;
	background: #ffffff;
	backdrop-filter: none;
	border-radius: 0.75rem;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.pos-categories button {
	background: transparent;
	color: #64748b;
	border-radius: 0.5rem;
	font-weight: 500;
	transition: all 0.2s ease;
}
.pos-categories button:hover {
	background: #f8fafc;
	color: #334155;
}
.pos-categories button.active {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	color: #ffffff;
	box-shadow: 0 4px 6px -1px rgba(139, 92, 246, 0.3);
}
.pos-items__search input {
	background: #ffffff;
	color: #1e293b;
	border: 1px solid #e2e8f0;
	border-radius: 0.75rem;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.pos-items__search input:focus {
	outline: none;
	border-color: #8b5cf6;
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.pos-grid {
	gap: 1rem;
}
.pos-card {
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #1e293b;
	border-radius: 0.75rem;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease;
	overflow: hidden;
}
.pos-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	border-color: #cbd5e1;
}
.pos-card__badge {
	background: rgba(255, 255, 255, 0.95);
	color: #64748b;
	backdrop-filter: blur(8px);
	font-weight: 600;
}
.pos-card__badge.add {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}
.pos-card__placeholder {
	background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
	color: #6366f1;
	font-weight: 700;
}
.pos-card__meta strong {
	color: #0f172a;
	font-weight: 600;
}
.pos-card__meta span {
	color: #8b5cf6;
	font-weight: 700;
}
.pos-cart {
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #1e293b;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.pos-cart__header {
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.pos-cart__header h3 {
	color: #0f172a;
	margin: 0;
}
.pos-cart__header small {
	color: #64748b;
}
.pos-line {
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	border-radius: 0.5rem;
	padding: 0.75rem;
}
.pos-line__qty button {
	border: 1px solid #cbd5e1;
	background: #ffffff;
	color: #475569;
	font-weight: 600;
	transition: all 0.2s ease;
}
.pos-line__qty button:hover {
	background: #f1f5f9;
	border-color: #94a3b8;
}
.pos-line__total strong {
	color: #0f172a;
	font-weight: 700;
}
.pos-line__total button {
	color: #ef4444;
	transition: color 0.2s ease;
}
.pos-line__total button:hover {
	color: #dc2626;
}
.pos-cart__summary {
	background: #f8fafc;
	border-radius: 0.5rem;
	padding: 1rem;
	border: 1px solid #e2e8f0;
}
.pos-cart__summary div {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.pos-cart__summary span {
	color: #64748b;
	font-size: 0.875rem;
}
.pos-cart__summary strong {
	color: #0f172a;
	font-size: 1.125rem;
	font-weight: 700;
}
.pos-cart__summary div:last-child strong {
	color: #8b5cf6;
	font-size: 1.25rem;
}
.pos-cart__fields {
	background: #f8fafc;
	border-radius: 0.5rem;
	padding: 1rem;
	border: 1px solid #e2e8f0;
}
.pos-cart__fields label {
	color: #475569;
	font-weight: 500;
}
.pos-cart__fields label span {
	color: #334155;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
	display: block;
}
.pos-cart__fields select,
.pos-cart__fields input {
	background: #ffffff;
	color: #1e293b;
	border: 1px solid #cbd5e1;
	border-radius: 0.5rem;
	padding: 0.625rem 0.875rem;
	transition: all 0.2s ease;
}
.pos-cart__fields select:focus,
.pos-cart__fields input:focus {
	outline: none;
	border-color: #8b5cf6;
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.pos-cart__fields select option {
	background: #ffffff;
	color: #1e293b;
}
.pos-cart__customer {
	background: #f8fafc;
	border-radius: 0.5rem;
	padding: 1rem;
	border: 1px solid #e2e8f0;
}
.pos-cart__customer label {
	color: #475569;
	font-weight: 500;
}
.pos-cart__customer label span {
	color: #334155;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
	display: block;
}
.pos-cart__customer select {
	background: #ffffff;
	color: #1e293b;
	border: 1px solid #cbd5e1;
	border-radius: 0.5rem;
	padding: 0.625rem 0.875rem;
	width: 100%;
}
.pos-cart-floating {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	color: #ffffff;
	box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.3), 0 4px 6px -2px rgba(139, 92, 246, 0.2);
	font-weight: 600;
}
.pos-cart-floating:hover {
	background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
	box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.3), 0 10px 10px -5px rgba(139, 92, 246, 0.2);
}
.pos-cart__actions .btn-outline {
	background: #ffffff;
	border: 1px solid #cbd5e1;
	color: #475569;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
}
.pos-cart__actions .btn-outline:hover {
	background: #f8fafc;
	border-color: #94a3b8;
}
#complete-sale {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	border: none;
	font-weight: 600;
	padding: 0.875rem 1.5rem;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
	transition: all 0.2s ease;
}
#complete-sale:hover:not(:disabled) {
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
	box-shadow: 0 6px 8px -1px rgba(16, 185, 129, 0.4);
	transform: translateY(-1px);
}
#complete-sale:disabled {
	background: #cbd5e1;
	color: #94a3b8;
	cursor: not-allowed;
	box-shadow: none;
}
.pos-card.is-disabled {
	opacity: 0.5;
	filter: grayscale(0.3);
	cursor: pointer;
}
.alert {
	border-radius: 0.5rem;
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
}
.alert.danger {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}
.alert.success {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #166534;
}

@media (max-width: 1080px) {
	.pos-layout {
		grid-template-columns: 180px 1fr;
	}
	.pos-cart {
		position: fixed;
		right: 0;
		left: 0;
		bottom: -100%;
		max-height: 80vh;
		transition: transform 0.3s ease;
		transform: translateY(100%);
		border-radius: 1rem 1rem 0 0;
	}
	.pos-cart.is-open {
		transform: translateY(0);
	}
	.pos-cart-floating {
		display: inline-flex;
	}
	.pos-cart__actions .pos-cart-close {
		display: inline-flex;
	}
}

@media (max-width: 900px) {
	.pos-layout {
		grid-template-columns: 1fr;
	}
	.pos-grid {
		grid-template-columns: 1fr;
	}
	.pos-categories {
		position: relative;
		padding-top: 0;
	}
	.pos-categories__header {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.pos-categories[data-mobile-state="closed"] ul {
		display: none;
	}
	.pos-categories[data-mobile-state="open"] ul {
		display: flex;
	}
}

.pos-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.pos-menu {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.pos-category {
    margin-bottom: 1.5rem;
}

.pos-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.pos-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem;
    background: #fff;
    text-align: left;
    cursor: pointer;
}

.pos-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.pos-order {
    border-left: 1px solid #e2e8f0;
    padding-left: 1rem;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-table input {
    width: 60px;
}

.order-summary {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.order-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-fields label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #475569;
}

.order-fields select,
.order-fields input {
    margin-top: 0.35rem;
    padding: 0.5rem;
    border: 1px solid #cbd5f5;
    border-radius: 0.375rem;
}

@media (max-width: 980px) {
    .pos-container {
        grid-template-columns: 1fr;
    }

    .pos-order {
        border-left: none;
        padding-left: 0;
    }
}

.showcase-hero {
    padding: 4rem 0;
}

.intro-section {
    background: #fff;
    padding: 4rem 0;
}

.hero-layered {
    position: relative;
    padding: 5rem 0 4rem;
    background: #f8fafc;
}

.hero-layered__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
    opacity: 0.35;
}

.hero-layered__container {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
}

.hero-layered__box {
    width: min(90vw, 1100px);
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 3rem 3.5rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.hero-layered__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-layered__brand img {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    box-shadow: 0 12px 25px rgba(20, 184, 166, 0.35);
}

.hero-layered__brand-text h1 {
    margin: 0;
    font-size: 2rem;
    color: var(--dark);
}

.hero-layered__brand-text p {
    margin: 0;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hero-layered__summary {
    font-size: 1.15rem;
    color: #475569;
    margin: 0;
}

.hero-layered__box--photo {
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.hero-layered__box--photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.75));
    backdrop-filter: blur(2px);
}

.hero-layered__box--photo > * {
    position: relative;
    z-index: 1;
}

.hero-layered__box--photo .hero-layered__brand-text h1,
.hero-layered__box--photo .hero-layered__brand-text p,
.hero-layered__box--photo .hero-layered__summary,
.hero-layered__box--photo .hero-stats span,
.hero-layered__box--photo .hero-stats p {
    color: #fff;
}

.hero-layered__box--photo .hero-layered__actions .btn.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-layered__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.hero-layered__actions .btn {
    min-width: 190px;
}

.hero-layered__actions .btn.btn-ghost {
    border: 1px solid rgba(12, 36, 24, 0.25);
    color: var(--dark);
}

.hero-layered__actions .btn.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background-color: color-mix(in srgb, var(--primary) 12%, transparent);
}

.hero-layered__actions .btn.btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.hero-stats {
    margin-top: 1.5rem;
}

.hero-stats div {
    background: linear-gradient(145deg, rgba(192, 138, 59, 0.12), rgba(20, 83, 45, 0.08));
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: var(--dark);
}

.hero-stats span {
    color: var(--dark);
}

.hero-stats p {
    color: rgba(15, 23, 42, 0.7);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.guest-profile-card {
    padding: 1.5rem 0 0;
}

.guest-profile-card .container {
    max-width: min(90vw, 900px);
    margin: 0 auto;
}

.guest-profile-grid {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.guest-profile-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--dark);
}

.guest-profile-grid input {
    border: 1px solid #cbd5f5;
    border-radius: 0.6rem;
    padding: 0.65rem;
    font-size: 0.95rem;
}

.guest-profile-hint {
    margin-top: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stats-grid div {
    background: rgba(13, 148, 136, 0.08);
    border-radius: 0.75rem;
    padding: 1rem;
}

.stats-grid span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-section {
    padding: 3rem 0;
    background: #fff;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.text-center {
    text-align: center;
}

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

.feature-card {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
}

.modules-showcase {
    background: #f1f5f9;
    padding: 3rem 0;
}

.intro-section .container {
    max-width: min(90vw, 1100px);
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.intro-card {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.intro-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .hero-layered__box {
        width: 100%;
        padding: 2rem 1.75rem;
        border-radius: 1.25rem;
    }

    .hero-layered__actions .btn {
        width: 100%;
    }
}

.modules-showcase .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.module-card {
    border-radius: 0.75rem;
    border: 1px solid #d7e3f4;
    background: #fff;
    padding: 1.5rem;
}

.module-card ul {
    padding-left: 1rem;
}

.cta-section {
    padding: 3rem 0;
    text-align: center;
}

.cta-section .hero-actions {
    justify-content: center;
}

.public-body {
    background: var(--light);
    color: var(--dark);
}

.site-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--primary), var(--accent));
    color: #fff;
    padding: 1.25rem 0;
    font-weight: 500;
}

.site-banner .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-banner__frame {
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1rem 1.5rem;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.25);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
}

.site-banner::before,
.site-banner::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    top: -60px;
}

.site-banner::before {
    left: -40px;
}

.site-banner::after {
    right: -60px;
}

.site-banner__content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0;
}

.site-banner__badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-banner__close {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

.site-banner.is-dismissed {
    animation: bannerSlideUp 0.3s forwards;
}

@keyframes bannerSlideUp {
    to {
        opacity: 0;
        transform: translateY(-100%);
        height: 0;
        padding: 0;
        margin: 0;
    }
}

.btn.btn-white {
    background: #fff;
    color: var(--primary);
}

.public-header .nav a {
    color: #3d2a13;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.public-header .nav a:hover {
    background-color: rgba(138, 106, 63, 0.08);
    color: #2a1c0a;
}

.public-main {
    min-height: 60vh;
    padding-bottom: 3rem;
}

.page-hero {
    padding: 3rem 0 1rem;
    text-align: center;
}

/* Modern Simple Page Hero */
.page-hero-simple {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.page-hero-simple p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.room-filter-panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.page-hero p {
    max-width: 680px;
    margin: 0.75rem auto 0;
}

.rooms-grid,
.menu-grid,
.about-grid,
.contact-grid,
.order-options {
    display: grid;
    gap: 1rem;
}

.rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 0 0 3rem;
}

.room-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.room-card__media {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.room-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.room-card__head {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.room-card__eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 600;
}

.room-card__rate {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: #475569;
}

.room-card__rate strong {
    font-size: 1.15rem;
    color: var(--dark);
}

.room-card__copy {
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.room-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #475569;
}

.room-card__actions {
    margin-top: auto;
}


.room-filter-toggle {
    display: none;
}

.room-filter-content {
    display: block;
}

.room-filter-essential {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
}

.room-filter-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.room-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
}

.room-filter-panel label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--dark);
}

.room-filter-panel input,
.room-filter-panel select {
    border: 1px solid #cbd5f5;
    border-radius: 0.5rem;
    padding: 0.65rem;
    font-size: 0.95rem;
}

.room-filter-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1rem;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.filter-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    color: var(--dark);
}

.empty-state {
    text-align: center;
    color: #64748b;
    padding: 2rem 0;
}

.room-amenities {
    padding-left: 1rem;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.25rem 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.booking-panel {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.booking-panel.is-visible {
    display: flex;
}

.booking-panel__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
}

.booking-panel__card {
    position: relative;
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    width: min(540px, 90vw);
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.35);
}

.booking-panel__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: rgba(15, 23, 42, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
}

.booking-panel__step {
    display: none;
}

.booking-panel__step.is-active {
    display: block;
}

.booking-panel__status {
    margin-top: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.booking-panel__status.error {
    color: #b91c1c;
}

.booking-panel__suggestions {
    margin-top: 1rem;
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.booking-panel__suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: grid;
    gap: 0.5rem;
}

.booking-summary {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    background: #f8fafc;
}

.booking-summary dl {
    margin: 0;
    display: grid;
    gap: 0.35rem;
}

.booking-summary dt {
    font-size: 0.85rem;
    color: #64748b;
}

.booking-summary dd {
    margin: 0;
    font-weight: 600;
}

.booking-panel__fine-print {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #64748b;
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .page-hero--boxed header,
    .page-hero--boxed p {
        text-align: center;
    }

    .booking-panel__card {
        padding: 1.5rem;
        width: min(500px, 94vw);
    }

    .booking-summary {
        flex-direction: column;
    }

    /* Mobile Room Filter Simplification */
    .room-filter-panel {
        padding: 0;
        border: none;
        box-shadow: none;
        margin-bottom: 2rem;
    }

    .room-filter-toggle {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.875rem 1rem;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        font-weight: 600;
        color: var(--dark);
        cursor: pointer;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .room-filter-toggle:hover {
        background: #f8fafc;
    }

    .room-filter-toggle .filter-icon {
        margin-left: auto;
    }

    .room-filter-panel:not(.is-open) .room-filter-toggle .filter-icon {
        transform: rotate(0deg);
    }

    .room-filter-panel.is-open .room-filter-toggle .filter-icon {
        transform: rotate(180deg);
    }

    .room-filter-content {
        display: none;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 1rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .room-filter-panel.is-open .room-filter-content {
        display: block;
    }

    .room-filter-essential {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .room-filter-advanced {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .room-filter-panel label span {
        font-size: 0.875rem;
    }

    .room-filter-panel input,
    .room-filter-panel select {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .room-filter-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .room-filter-actions .checkbox-inline {
        width: 100%;
    }

    .room-filter-actions button {
        width: 100%;
    }
}

.menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 0 1rem 3rem;
}

.menu-card {
    background: #fff;
    border: 1px solid #dde5f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.menu-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-card li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.menu-card.compact li {
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content h2,
.about-highlights h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--dark);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlights-list li {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlights-list li strong {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
}

.highlights-list li span {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.contact-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--dark);
}

.contact-address {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 1.5rem 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-list a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-list a:hover {
    color: var(--primary);
}

.map-embed {
    margin-top: 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-embed iframe {
    width: 100%;
    border: none;
    min-height: 300px;
    display: block;
}

/* Menu Filter Panel */
.menu-filter-panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .page-hero-simple {
        padding: 3rem 0;
    }
    
    .about-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.order-options {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 0 1rem 2rem;
}

.order-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.public-footer {
    background: linear-gradient(180deg, #f5f7fb 0%, #e4ecf6 100%);
    color: #0f172a;
    padding: 3.5rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.public-footer .container {
    max-width: min(85vw, 1000px);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.footer-grid strong {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links span {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.6);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.footer-policies ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-policies span {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.6);
}

.footer-meta {
    margin-top: 1.75rem;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.85;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    padding-top: 1.5rem;
}
.public-footer a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}

.public-footer a:hover {
    color: var(--primary);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

select.btn {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a6a3f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

select.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 106, 63, 0.1);
}

.settings-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.settings-sidebar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    position: sticky;
    top: 1rem;
    height: max-content;
}

.settings-sidebar h2 {
    margin-top: 0;
}

.muted {
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.settings-tab {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.25rem;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
}

.settings-tab.active,
.settings-tab:hover {
    border-color: var(--primary);
    background: rgba(13, 148, 136, 0.08);
}

.settings-panels {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.settings-panel {
    display: none;
}

.settings-panel.active {
    display: block;
}

.settings-panel header h3 {
    margin: 0 0 0.25rem;
}

.panel-fields {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.panel-fields label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    gap: 0.45rem;
}

.panel-fields input,
.panel-fields textarea,
.panel-fields select {
    padding: 0.65rem;
    border: 1px solid #cbd5f5;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.panel-fields textarea {
    min-height: 120px;
}

.panel-fields .checkbox {
    flex-direction: row;
    align-items: center;
    font-weight: 500;
}

.panel-fields .checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.panel-actions {
    text-align: right;
}

@media (max-width: 768px) {
    .site-header .container,
    .site-footer .container,
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav a {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .settings-shell {
        grid-template-columns: 1fr;
    }

    .settings-sidebar {
        position: relative;
    }

    .settings-shell {
        grid-template-columns: 1fr;
    }

    .settings-sidebar {
        position: relative;
    }
}

.dashboard-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background: #f1f5f9;
}

.dashboard-sidebar {
    background: #f8f9fa;
    color: #495057;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-right: 1px solid #e2e8f0;
}

.brand-mini {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.5rem;
    min-height: 96px;
}

.brand-mini__badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(145deg, #1dd1b2, #0f766e);
    color: #04121f;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 18px rgba(20, 184, 166, 0.35);
}

.brand-mini__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-mini__text strong {
    color: #212529;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.brand-mini__text small {
    color: #6c757d;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Sidebar Search */
.sidebar-search {
    position: relative;
    margin-bottom: 1rem;
}

.sidebar-search input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.5rem;
    color: #e2e8f0;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.sidebar-search input:focus {
    outline: none;
    border-color: rgba(20, 184, 166, 0.5);
    background: rgba(15, 23, 42, 0.8);
}

.sidebar-search input::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

.sidebar-search svg {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(148, 163, 184, 0.6);
    pointer-events: none;
}

/* Sidebar Navigation - Clean Light Design */
.sidebar-nav {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
    padding: 0.5rem 0;
    margin: 0;
    background: #f8f9fa;
}

.sidebar-nav .list-unstyled {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sidebar-nav .mb-1 {
    margin-bottom: 0.125rem !important;
}

/* Clean toggle button */
.btn-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1rem;
    color: #212529;
    background-color: transparent;
    border: 0;
    border-radius: 0.375rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.btn-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000;
}

.btn-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.btn-toggle::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    order: 2;
}

.btn-toggle[aria-expanded="true"]::after {
    transform: rotate(90deg);
}

.btn-toggle.collapsed::after {
    transform: rotate(0deg);
}

.sidebar-section-icon {
    flex-shrink: 0;
    color: #212529;
    width: 18px;
    height: 18px;
    order: 0;
}

.sidebar-section-title {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #212529;
    text-transform: none;
    letter-spacing: 0;
    order: 1;
}

/* Bootstrap-style collapse */
.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* Toggle nav with connecting line - aligned with category title text */
.btn-toggle-nav {
    list-style: none;
    padding-left: 0;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

/* Ensure sub-items align with category title text */
.btn-toggle-nav .sidebar-link {
    padding-left: 2.875rem;
    padding-right: 0.75rem;
}

.btn-toggle-nav .small {
    font-size: 0.875rem !important;
    opacity: 1 !important;
}

.btn-toggle-nav .link-body-emphasis {
    color: #212529 !important;
    opacity: 1 !important;
}

.btn-toggle-nav .fw-normal {
    font-weight: 400 !important;
    opacity: 1 !important;
}

.btn-toggle-nav::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #dee2e6;
}

.btn-toggle-nav li {
    margin-bottom: 0;
    position: relative;
    padding-left: 0;
}

.btn-toggle-nav li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    width: 1.875rem;
    height: 1px;
    background: #dee2e6;
}

.btn-toggle-nav li:first-child::before {
    top: 0.75rem;
}

.btn-toggle-nav li:last-child::before {
    height: 1px;
}

/* Sidebar Links - Clean Light Design */
.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem 0.5rem 0;
    color: #212529 !important;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.15s ease;
    position: relative;
    margin-bottom: 0;
    font-size: 0.875rem !important;
    font-weight: 400;
    gap: 0.5rem;
    line-height: 1.4;
    min-height: 2rem;
    opacity: 1 !important;
}

.sidebar-link::before {
    display: none;
}

.sidebar-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000;
}

.sidebar-link.active {
    background-color: #e9ecef;
    color: #000;
    font-weight: 500;
}

.sidebar-link-label {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.4;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    color: inherit;
    opacity: 1 !important;
}


.sidebar-nav a {
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 1003;
    display: block;
    color: #cbd5f5;
    text-decoration: none;
    padding: 0.5rem 0;
}

.sidebar-nav a.active {
    color: #fff;
    font-weight: 600;
}

.sidebar-role-switch label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: #cbd5f5;
}

.sidebar-role-switch select {
    width: 100%;
    padding: 0.4rem;
    border-radius: 0.25rem;
    border: none;
    margin-bottom: 0.5rem;
}

.btn-small {
    padding: 0.4rem 0.75rem;
    border: none;
    border-radius: 0.375rem;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
}

.btn-block {
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

.dashboard-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.dashboard-slot {
    flex: 1;
    padding: 2rem;
}

/* Enhanced Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    border-left: 1px solid #e2e8f0;
}

/* Hide mobile toggle on desktop by default */
.dashboard-header .mobile-menu-toggle {
    display: none;
}

.dashboard-header .header-left {
    flex: 1;
    min-width: 0;
}

.dashboard-header .header-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    min-width: 0;
}

.dashboard-header .header-breadcrumb h1 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.dashboard-header .header-subtitle {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.dashboard-header .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-header .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-header .header-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dashboard-header .header-action-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

.dashboard-header .header-action-btn .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
}

.dashboard-header .user-menu {
    position: relative;
    z-index: 10001;
    overflow: visible !important;
}

.dashboard-header .user-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
    -webkit-user-select: none;
}

.dashboard-header .user-chip:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.dashboard-header .user-chip svg {
    color: #64748b;
    transition: transform 0.2s ease;
}

.dashboard-header .user-menu.active .user-chip svg {
    transform: rotate(180deg);
}

.dashboard-header .user-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.dashboard-header .user-info strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
}

.dashboard-header .user-info small {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.2;
}

.dashboard-header .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.dashboard-header .user-dropdown {
    position: fixed;
    top: auto;
    right: auto;
    min-width: 200px;
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 10000;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    overflow-x: visible;
    pointer-events: none;
    display: block;
}

.dashboard-header .user-dropdown.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}

@media (max-width: 767px) {
    .dashboard-header .user-dropdown.active {
        display: block;
    }
}

.dashboard-header .dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #475569 !important;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
    visibility: visible !important;
    opacity: 1 !important;
    white-space: nowrap;
}

.dashboard-header .dropdown-item:last-child {
    border-bottom: none;
}

.dashboard-header .dropdown-item:hover {
    background: #f8fafc;
    color: #0f172a;
}

.dashboard-header .dropdown-item svg {
    color: #64748b;
    flex-shrink: 0;
}

.dashboard-header .dropdown-item:hover svg {
    color: #475569;
}

.dashboard-header .dropdown-item-danger {
    color: #ef4444;
}

.dashboard-header .dropdown-item-danger:hover {
    background: #fef2f2;
    color: #dc2626;
}

.dashboard-header .dropdown-item-danger svg {
    color: #ef4444;
}

.dashboard-header .dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.5rem 0;
}

/* Dashboard Footer */
.dashboard-footer {
    margin-top: auto;
    padding: 3rem 2rem 1.5rem;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.dashboard-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
}

.dashboard-footer .footer-section h4 {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-footer .footer-section p {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

.dashboard-footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-footer .footer-section ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.dashboard-footer .footer-section ul li a:hover {
    color: #8b5cf6;
}

.dashboard-footer .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
}

.dashboard-footer .footer-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #94a3b8;
    flex: 1;
}

.dashboard-footer .footer-meta span {
    white-space: nowrap;
}

.dashboard-footer .footer-copyright {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
    text-align: right;
    flex-shrink: 0;
}

/* Responsive styles for dashboard header and footer */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .dashboard-header .header-left {
        width: 100%;
        margin-bottom: 1rem;
    }

    .dashboard-header .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .dashboard-header .header-breadcrumb h1 {
        font-size: 1.25rem;
    }

    .dashboard-header .user-chip {
        padding: 0.375rem 0.75rem;
    }

    .dashboard-header .user-info {
        display: none;
    }

    .dashboard-header .user-dropdown {
        right: 0;
        left: 0;
        min-width: auto;
    }

    .dashboard-footer {
        padding: 2rem 1rem 1rem;
    }

    .dashboard-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dashboard-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-footer .footer-copyright {
        text-align: center;
    }

    .dashboard-footer .footer-meta {
        text-align: center;
    }
}

.user-chip {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
}

.user-avatar {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.dashboard-slot {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.25rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.inventory-dashboard .kpi-grid {
    margin-bottom: 0.5rem;
}

.inventory-dashboard .card {
    border-radius: 1rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
}

.inventory-dashboard .flex-panels {
    gap: 1.25rem;
}

.kpi .value {
    font-size: 2rem;
    margin: 0.2rem 0;
}

.kpi .trend {
    color: #0f766e;
    font-weight: 600;
}

.flex-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.table-lite {
    width: 100%;
    border-collapse: collapse;
}

.table-lite th,
.table-lite td {
    text-align: left;
    padding: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.list-condensed {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-condensed li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.list-condensed li:last-child {
    border-bottom: none;
}

.workflow-grid {
    display: flex;
    gap: 1rem;
}

/* Tabs for requisitions */
.tabs {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0 1rem;
    flex-wrap: wrap;
}
.tab {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    color: #0f172a;
}
.tab.is-active {
    border-color: var(--primary);
    background: color-mix(in srgb, var(--primary) 16%, #fff);
    color: #0f172a;
}

/* Badges for statuses */
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(15, 23, 42, 0.12);
}
.badge-pending { background: #fff7ed; color: #9a3412; border-color: #fdba74; }
.badge-approved { background: #ecfeff; color: #155e75; border-color: #67e8f9; }
.badge-rejected { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.badge-ordered { background: #eef2ff; color: #3730a3; border-color: #c7d2fe; }
.badge-completed { background: #f0fdf4; color: #166534; border-color: #86efac; }

/* Remove old responsive rule - now handled in comprehensive section above */

.site-header[data-sticky] {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.public-header {
    position: relative;
    overflow: hidden;
}

.public-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(138, 106, 63, 0.08), rgba(247, 226, 194, 0));
    pointer-events: none;
}

.public-header > .container {
    position: relative;
    z-index: 1;
}

.public-header {
    background: #fff;
}

.public-header .brand {
    max-width: 240px;
}

.public-header .brand img {
    height: auto;
    max-height: 48px;
    max-width: 220px;
    width: 100%;
}

.public-header .nav-toggle {
    display: none;
}

.public-header .nav-toggle-label {
    display: none;
}

/* Desktop Navigation - Always visible on desktop */
.public-nav .nav-main,
.public-nav .nav-actions {
    display: flex;
}

@media (max-width: 1024px) {
    .public-nav .nav-main {
        gap: 2.5rem;
    }
}

/* Mobile Navigation Toggle - Always visible on mobile */
@media (max-width: 768px) {
    .public-header {
        overflow: visible;
    }
    
    .public-header > .container {
        padding: 1rem 0;
        position: static;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .public-header .brand {
        flex-shrink: 0;
        max-width: calc(100% - 60px);
    }
    
    .public-header .brand img {
        max-height: 40px;
        width: auto;
    }
    
    .public-header .nav-toggle {
        display: block;
        position: absolute;
        height: 1px;
        width: 1px;
        opacity: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 101;
        margin: 0;
        padding: 0;
    }

    .public-header .nav-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        gap: 6px;
        margin: 0;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
    }
    
    .public-header .nav-toggle-label span {
        display: block;
        height: 2px;
        width: 24px;
        background: var(--dark);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .public-header .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .public-header .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    
    .public-header .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .public-nav {
        width: auto;
        gap: 0;
    }
    
    /* Hide navigation on mobile by default */
    .public-nav .nav-main,
    .public-nav .nav-actions {
        display: none;
    }
    
    /* Mobile Navigation Dropdown */
    .public-header .public-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .public-header .nav-toggle:checked ~ .public-nav {
        opacity: 1;
        pointer-events: auto;
        max-height: 600px;
        transform: translateY(0);
    }

    /* Show navigation when toggle is checked */
    .public-header .nav-toggle:checked ~ .public-nav .nav-main,
    .public-header .nav-toggle:checked ~ .public-nav .nav-actions {
        display: flex;
    }

    .public-header .public-nav .nav-main {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 1rem;
    }

    .public-header .public-nav .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        width: 100%;
        padding: 0 1rem 1rem 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .public-header .public-nav a:not(.btn) {
        width: 100%;
        text-align: left;
        color: var(--dark);
        padding: 0.875rem 1rem;
        border-radius: 0.5rem;
        transition: background-color 0.2s ease;
        display: block;
    }

    .public-header .public-nav a:not(.btn):hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .public-header .public-nav .nav-account {
        color: var(--primary);
        font-weight: 600;
        width: 100%;
        text-align: left;
        padding: 0.875rem 1rem;
    }

    .public-header .public-nav .btn {
        width: 100%;
        text-align: center;
        margin: 0;
    }
}

/* Simple Hero Section */
.hero-simple {
    padding: 4rem 0;
    background: #fff;
}

.hero-simple__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-simple__image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-simple__image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-simple__text h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.hero-simple__tagline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--primary);
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.hero-simple__summary {
    font-size: clamp(0.95rem, 1.25vw, 1.125rem);
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.hero-simple__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-simple__actions .btn {
    min-width: 160px;
}

@media (max-width: 1024px) {
    .public-nav .nav-main {
        gap: 1.75rem;
        margin-left: 1.5rem;
    }
    
    .hero-simple__content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        padding: 3rem 0;
    }
    
    .hero-simple__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-simple__image {
        order: -1;
    }
    
    .hero-simple__actions {
        flex-direction: column;
    }
    
    .hero-simple__actions .btn {
        width: 100%;
    }
    
    .public-nav .nav-main {
        gap: 0;
    }
}

/* Desktop Navigation Styles */
.public-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.public-nav .nav-main {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-start;
    margin-left: 2rem;
}

.public-nav .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.public-nav a:not(.btn):not(.nav-account) {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.public-nav a:not(.btn):not(.nav-account)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.public-nav a:not(.btn):not(.nav-account):hover {
    color: var(--primary);
}

.public-nav a:not(.btn):not(.nav-account):hover::after {
    width: 100%;
}

.public-nav .nav-account {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.public-nav .nav-account:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.public-nav .btn {
    white-space: nowrap;
}

.hero.showcase-hero {
    position: relative;
    overflow: hidden;
}

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

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

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.35));
}

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

.hero-slide .slide-label {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.btn.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.public-header .btn.btn-ghost {
    border-color: rgba(61, 42, 19, 0.35);
    color: #2a1c0a;
    background: transparent;
}

.public-header .btn.btn-ghost:hover {
    background-color: color-mix(in srgb, var(--primary) 14%, transparent);
    border-color: var(--primary);
    color: #2a1c0a;
}

.btn.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.restaurant-highlight .highlight-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.highlight-media {
    border-radius: 1.5rem;
    min-height: 320px;
    background-size: cover;
    background-position: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.amenity-card {
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    background: #fff;
}

.portal-section {
    padding: 4rem 0;
}

.portal-auth,
.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0;
}

.portal-form label {
    display: block;
    margin-bottom: 1rem;
}

.portal-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    margin-top: 0.35rem;
}

.portal-benefits {
    list-style: disc;
    padding-left: 1.5rem;
    color: rgba(15, 23, 42, 0.8);
}

.portal-grid .card {
    border-radius: 1.25rem;
}

.reservation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reservation-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    padding: 1rem;
}

.reservation-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.status {
    font-size: 0.85rem;
    padding: 0.15rem 0.75rem;
    border-radius: 999px;
    text-transform: capitalize;
}

.status-pending {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.status-confirmed,
.status-in_house {
    background: rgba(13, 148, 136, 0.15);
    color: #0d9488;
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.status-available {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-occupied {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.status-maintenance {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.status-blocked {
    background: rgba(107, 114, 128, 0.15);
    color: #6b7280;
}

.status-checked_in {
    background: rgba(13, 148, 136, 0.15);
    color: #0d9488;
}

.guest-summary {
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.7);
    margin: 0.5rem 0 1rem;
}

.inline-form {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.reservation-card .actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.reservation-card .actions .btn {
    flex: 1 1 auto;
    min-width: 120px;
}

/* Mobile Responsive Styles for Portal Pages */
@media (max-width: 768px) {
    .portal-section {
        padding: 2rem 0;
    }
    
    .portal-auth,
    .portal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portal-form input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .reservation-card {
        padding: 1rem;
    }
    
    .reservation-card header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .reservation-card header > div {
        width: 100%;
    }
    
    .reservation-card .status {
        align-self: flex-start;
    }
    
    .reservation-card .actions {
        flex-direction: column;
        width: 100%;
    }
    
    .reservation-card .actions .btn {
        width: 100%;
        min-width: unset;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .inline-form {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.75rem;
    }
    
    .inline-form .btn {
        width: 100%;
    }
    
    .page-hero-simple .inline-form {
        margin-top: 1rem;
    }
}

/* Modern Image Upload Component */
.image-upload-wrapper {
    margin-top: 0.5rem;
}

.image-upload-area {
    position: relative;
    border: 2px dashed #cbd5e1;
    border-radius: 0.75rem;
    background: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
}

.image-upload-area:hover {
    border-color: var(--primary);
    background: #fefefe;
}

.image-upload-area.drag-over {
    border-color: var(--primary);
    background: var(--accent-soft);
    transform: scale(1.01);
}

.image-upload-content {
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.image-upload-icon {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.image-upload-area:hover .image-upload-icon {
    color: var(--primary);
}

.image-upload-text {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.image-upload-hint {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.image-preview {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.image-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.image-remove-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.image-remove-btn:hover {
    background: rgba(239, 68, 68, 0.9);
    transform: scale(1.1);
}

.current-image {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.current-image-preview {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================
   ENHANCED PUBLIC WEBSITE DESIGN POLISH
   ============================================ */

/* Enhanced Typography */
.public-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
    color: #1a1a1a;
}

/* Sticky Header Enhancement */
.public-header[data-sticky] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.public-header[data-sticky] .container {
    padding: 1.25rem 0;
    transition: padding 0.3s ease;
}

.public-header .brand img {
    transition: transform 0.3s ease;
}

.public-header .brand:hover img {
    transform: scale(1.05);
}


/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(138, 106, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 106, 63, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 106, 63, 0.2);
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(42, 28, 10, 0.2);
    color: #2a1c0a;
}

.btn-ghost:hover {
    background: rgba(138, 106, 63, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.btn.highlight {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(138, 106, 63, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(138, 106, 63, 0.5);
    }
}

/* Enhanced Hero Section */
.hero-layered {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-layered__container {
    position: relative;
    z-index: 2;
}

.hero-layered__box {
    background: linear-gradient(135deg, rgba(12, 36, 24, 0.95) 0%, rgba(42, 28, 10, 0.9) 100%);
    border-radius: 2rem;
    padding: 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-layered__box--photo {
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-layered__box--photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 36, 24, 0.85) 0%, rgba(42, 28, 10, 0.75) 100%);
    z-index: 0;
}

.hero-layered__box > * {
    position: relative;
    z-index: 1;
}

.hero-layered__brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-layered__brand img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-layered__brand-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-layered__brand-text p {
    font-size: 1.25rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-weight: 400;
}

.hero-layered__summary {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 2rem 0;
    opacity: 0.95;
    max-width: 600px;
}

.hero-layered__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid > div {
    text-align: left;
}

.stats-grid > div span {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stats-grid > div p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
}

/* Enhanced Intro Section */
.intro-section {
    padding: 4rem 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-grid article h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 1rem 0;
    color: #1a1a1a;
}

.intro-grid article p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

.eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.intro-card {
    background: linear-gradient(135deg, #f8f5ef 0%, #fff 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(138, 106, 63, 0.1);
}

.intro-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.intro-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(138, 106, 63, 0.1);
    font-weight: 500;
    color: #2a1c0a;
}

.intro-card li:last-child {
    border-bottom: none;
}

/* Enhanced Feature Cards */
.feature-section {
    padding: 4rem 0;
    background: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.section-heading p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(138, 106, 63, 0.1);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card__media {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.feature-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card__media::after {
    opacity: 0;
}

.feature-card__body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card__head h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #1a1a1a;
}

.feature-card__body p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.feature-card .rate {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.room-amenities {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.room-amenities li {
    background: rgba(138, 106, 63, 0.1);
    color: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Enhanced Restaurant Highlight */
.restaurant-highlight {
    padding: 6rem 0;
    background: #fff;
}

.highlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, #f8f5ef 0%, #fff 100%);
    border-radius: 2rem;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.highlight-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #1a1a1a;
    line-height: 1.3;
}

.highlight-media {
    border-radius: 1.5rem;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-media {
    transform: scale(1.02);
}

/* Enhanced Amenities Section */
.amenities-section {
    padding: 4rem 0;
    background: #fff;
}

.amenities-section .section-heading {
    margin-bottom: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.amenity-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.amenity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.amenity-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--dark);
}

.amenity-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 3rem 0;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Enhanced CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    text-align: center;
}

.cta-section h3 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #fff;
}

.cta-section p {
    font-size: 1.25rem;
    margin: 0 0 2.5rem 0;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .hero-actions {
    justify-content: center;
}

.cta-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cta-section .btn-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}


.social-links a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-layered__brand-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-layered__summary {
        font-size: 1.25rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlight-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .cta-section h3 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.amenity-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* ============================================
   RESPONSIVE DESIGN SYSTEM - CLEAN REBUILD
   Mobile-First: Mobile ≤767px | Tablet 768-1023px | Desktop ≥1024px
   ============================================ */

/* ===== DASHBOARD RESPONSIVE ===== */
.mobile-menu-toggle {
    display: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.mobile-sidebar-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Desktop: Normal sidebar layout - NO mobile toggle */
@media (min-width: 1024px) {
    .dashboard-wrapper {
        grid-template-columns: 260px 1fr;
    }

    .dashboard-sidebar {
        position: relative;
        transform: none !important;
        width: auto;
        height: auto;
        z-index: auto;
        padding: 2rem 1.25rem;
    }

    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-sidebar-overlay {
        display: none !important;
        visibility: hidden !important;
    }

    .mobile-brand {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .mobile-brand-logo {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;
        max-height: 0 !important;
    }
}

/* Tablet & Mobile: Sidebar becomes overlay */
@media (max-width: 1023px) {
    .dashboard-wrapper {
        grid-template-columns: 1fr;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        width: 40px !important;
        height: 40px !important;
        padding: 0.5rem !important;
        position: relative !important;
        left: auto !important;
    }

    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 280px;
        max-width: 85vw;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 1rem;
        padding-top: 1rem;
        pointer-events: auto !important;
        touch-action: manipulation;
    }

    .dashboard-sidebar.active {
        transform: translateX(0);
        pointer-events: auto !important;
    }

    .dashboard-sidebar a,
    .dashboard-sidebar button,
    .dashboard-sidebar .sidebar-section-header {
        pointer-events: auto !important;
        position: relative;
        z-index: 1001;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    .dashboard-sidebar .sidebar-section-content {
        pointer-events: auto !important;
    }
    
    .sidebar-search {
        margin-bottom: 0.75rem;
    }
    
    .sidebar-search input {
        padding: 0.625rem 2.25rem 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .sidebar-section-header {
        padding: 0.625rem 0.875rem;
        pointer-events: auto !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        z-index: 1002;
        position: relative;
    }
    
    .sidebar-section-title {
        font-size: 0.8125rem;
    }
    
    .sidebar-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
        border-left-width: 2px;
        gap: 0.625rem;
        height: auto;
    }
    
    .sidebar-link::before {
        width: 5px;
        height: 5px;
    }
    

    .dashboard-slot {
        padding: 1rem;
    }
}

/* Mobile Brand in Header - Hidden by default, only show on mobile */
.mobile-brand {
    display: none !important;
    visibility: hidden !important;
    flex-shrink: 0;
    width: 0;
    height: 0;
    max-width: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.mobile-brand-logo {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    object-fit: contain;
    border-radius: 6px;
}

.mobile-brand-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    max-width: 28px;
    border-radius: 8px;
    background: linear-gradient(145deg, #1dd1b2, #0f766e);
    color: #04121f;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Mobile: Header adjustments with brand */
@media (max-width: 767px) {
    .dashboard-header {
        padding: 0.75rem 0.75rem;
        flex-wrap: nowrap;
        gap: 0.5rem;
        min-height: 56px;
        align-items: center;
        justify-content: space-between;
    }

    .dashboard-header .mobile-menu-toggle {
        order: 1;
        flex-shrink: 0;
    }

    .dashboard-header .header-left {
        flex: 1 1 0;
        order: 2;
        min-width: 0;
        overflow: hidden;
        max-width: calc(100% - 140px);
    }

    .dashboard-header .header-breadcrumb {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        width: 100%;
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .dashboard-header .header-breadcrumb h1 {
        font-size: 0.9375rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        margin: 0;
        line-height: 1.2;
    }

    .mobile-brand {
        display: flex !important;
        visibility: visible !important;
        align-items: center;
        flex-shrink: 0;
        width: 28px !important;
        max-width: 28px !important;
        height: 28px !important;
        max-height: 28px !important;
        margin-right: 0.25rem;
        overflow: hidden;
    }

    .mobile-brand-logo {
        display: block !important;
        visibility: visible !important;
        max-width: 28px !important;
        max-height: 24px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .mobile-brand-initial {
        width: 28px;
        height: 28px;
        min-width: 28px;
        max-width: 28px;
        font-size: 1rem;
    }

    .dashboard-header .header-breadcrumb h1 {
        font-size: 1.125rem;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1 1 auto;
        min-width: 0;
        line-height: 1.4;
    }

    .dashboard-header .header-subtitle {
        display: none;
    }

    .dashboard-header .header-right {
        flex: 0 0 auto;
        order: 3;
        justify-content: flex-end;
        align-items: center;
        gap: 0.25rem;
        margin-left: 0.25rem;
        flex-shrink: 0;
        width: auto;
    }

    .dashboard-header .header-actions {
        gap: 0.25rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .dashboard-header .header-action-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        padding: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dashboard-header .header-action-btn svg {
        width: 18px;
        height: 18px;
    }

    .dashboard-header .user-menu {
        flex-shrink: 0;
        position: relative;
        min-width: 0;
    }

    .dashboard-header .user-chip {
        padding: 0;
        gap: 0;
        min-width: 32px;
        width: 32px;
        height: 32px;
        justify-content: center;
        align-items: center;
    }

    .dashboard-header .user-info {
        display: none;
    }

    .dashboard-header .user-chip svg {
        display: none;
    }

    .dashboard-header .user-avatar {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
        font-size: 0.75rem;
        font-size: 0.875rem;
        margin: 0;
    }

    .dashboard-header .user-dropdown {
        right: 0;
        left: auto;
        min-width: 200px;
        max-width: calc(100vw - 2rem);
        z-index: 1001;
    }
}

/* Tablet: Header adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .dashboard-header {
        padding: 1rem 1.5rem;
    }

    .dashboard-header .header-breadcrumb h1 {
        font-size: 1.375rem;
    }
}

/* ===== TABLES ===== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
    .data-table,
    .table-lite,
    .modern-table {
        font-size: 0.875rem;
        min-width: 100%;
    }

    .table-responsive .data-table thead {
        display: none;
    }

    .table-responsive .data-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 0.5rem;
        padding: 1rem;
    }

    .table-responsive .data-table tbody tr td {
        display: block;
        text-align: right;
        padding: 0.5rem 0;
        border: none;
    }

    .table-responsive .data-table tbody tr td[data-label]::before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: #64748b;
    }
}

/* ===== FORMS ===== */
.form-grid,
.filter-grid,
.filters-grid {
    display: grid;
    gap: 1rem;
}

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

    .filter-grid,
    .filters-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 767px) {
    .form-grid,
    .filter-grid,
    .filters-grid {
        grid-template-columns: 1fr;
    }

    input,
    select,
    textarea {
        font-size: 16px;
        width: 100%;
    }
}

/* ===== GRIDS ===== */
@media (max-width: 767px) {
    .kpi-grid,
    .flex-panels,
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CARDS ===== */
@media (max-width: 767px) {
    .card {
        padding: 1rem;
    }

    .card-header {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ===== BUTTONS ===== */
@media (max-width: 767px) {
    .btn,
    button {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        min-height: 44px;
    }

    .action-buttons,
    .booking-actions {
        flex-direction: column;
        width: 100%;
    }

    .action-buttons .btn,
    .booking-actions .btn {
        width: 100%;
    }
}

/* ===== MODALS ===== */
@media (max-width: 767px) {
    .modal-content {
        max-width: 100%;
        margin: 0.5rem;
        max-height: calc(100vh - 1rem);
    }
}

/* ===== DROPDOWNS ===== */
@media (max-width: 767px) {
    .dashboard-header .user-dropdown {
        right: 0 !important;
        left: auto !important;
        min-width: 200px;
        max-width: calc(100vw - 2rem);
        position: absolute;
        top: calc(100% + 0.5rem);
        margin-top: 0;
        z-index: 10000;
    }

    .dashboard-header .user-menu {
        position: relative;
    }

    .dashboard-header .user-dropdown.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* ===== TYPOGRAPHY ===== */
@media (max-width: 767px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.125rem; }
}

/* ===== UTILITIES ===== */
@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
    .show-mobile { display: block !important; }
    html, body { 
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }
    .dashboard-wrapper {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    .dashboard-content {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    .dashboard-slot {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hide-tablet { display: none !important; }
    .show-tablet { display: block !important; }
}

