:root {
  --bg: #f7f5f1;
  --surface: rgba(255, 255, 255, 0.92);
  --text: #2f3b31;
  --muted: #5d5d50;
  --border: rgba(0, 0, 0, 0.08);
  --accent: #6f8b6b;
  --accent-2: #cbbfa7;
  --radius: 18px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.dark-theme {
  --bg: #0f1114;
  --surface: rgba(22, 26, 31, 0.89);
  --text: rgba(238, 242, 246, 0.96);
  --muted: rgba(206, 211, 219, 0.7);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #88af88;
  --accent-2: rgba(203, 191, 167, 0.35);
  --shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing:border-box;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

html{
  scroll-behavior:smooth
}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  background: var(--bg);
  color: var(--text)
}

body.is-loading{
overflow:hidden
}

#preloader{
position:fixed;
inset:0;
display:flex;
align-items:center;
justify-content:center;
background: var(--bg);
z-index:9999;
opacity:1;
visibility:visible;
transition:opacity .45s ease, visibility .45s ease
}

#preloader.hide{
opacity:0;
visibility:hidden
}

.preloader-mark{
display:flex;
align-items:center;
gap:12px;
font-family:'Playfair Display',serif;
letter-spacing:1.5px;
color:#3e4a3f
}

.preloader-leaf {
  animation: leafSpin 2s linear infinite;
}

@keyframes leafSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.preloader-dot{
width:10px;
height:10px;
border-radius:50%;
background:#6f8b6b;
animation:preloaderPulse 1s ease-in-out infinite
}

.preloader-text{
font-size:24px;
opacity:.95
}

/* NAV */
nav{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 6%;
background:rgba(243,239,231,0.75);
backdrop-filter:blur(10px);
z-index:30;
animation:slideDown .85s ease both;
transition:transform .32s ease
}

nav.nav-hidden{
transform:translateY(-100%)
}

nav .logo{
text-decoration:none;
display:flex;
align-items:center;
gap:8px;
font-family:'Playfair Display',serif;
font-size:20px;
letter-spacing:2px;
color:#3e4a3f
}

.logo-img {
  width: 60px;              /* tamaño pequeño */
    height: 60px;             /* mismo valor = círculo perfecto */
    border-radius: 50%;       /* hace el círculo */
    object-fit: contain;      /* muestra la imagen completa */
    background-color: white;  /* opcional, rellena espacios */
    padding: 1px;             /* opcional, da aire al logo */
}


.nav-actions{
display:flex;
align-items:center;
gap:10px;
position:relative;
z-index:9999
}

.cart-top-btn{
display:flex;
align-items:center;
gap:8px;
border:1px solid rgba(62,74,63,.2);
background:rgba(255,255,255,.55);
color:#3e4a3f;
padding:8px 12px;
border-radius:999px;
cursor:pointer;
font-size:14px
}

.cart-count-badge{
min-width:22px;
height:22px;
padding:0 6px;
display:inline-flex;
align-items:center;
justify-content:center;
border-radius:999px;
background:#6f8b6b;
color:#fff;
font-size:12px;
font-weight:600
}

.login-top-btn{
display:flex;
align-items:center;
gap:8px;
border:1px solid rgba(62,74,63,.2);
background:rgba(255,255,255,.55);
color:#3e4a3f;
padding:8px 12px;
border-radius:999px;
cursor:pointer;
font-size:14px;
text-decoration:none;
transition:transform .25s ease,opacity .25s ease
}

.login-top-btn:hover{
transform:translateY(-2px);
opacity:.85
}

.login-avatar{
width:20px;
height:20px;
border-radius:50%;
object-fit:cover;
display:block
}



#cart-panel.cart-dropdown{
position:absolute;
top:calc(100% + 12px);
right:0;
min-width:360px;
max-width:90vw;
max-height:70vh;
overflow:hidden;
display:none;
background:rgba(255,255,255,0.98);
backdrop-filter:blur(24px);
border:1px solid rgba(255,255,255,0.3);
border-radius:16px;
box-shadow:0 20px 60px rgba(0,0,0,0.25),0 0 0 1px rgba(255,255,255,0.1);
z-index:9999;
opacity:0;
transform:translateY(-12px) scale(0.95);
transition:all .24s cubic-bezier(0.4,0,0.2,1);
font-family:'Inter',sans-serif
}

#cart-panel.show{
opacity:1;
transform:translateY(0) scale(1);
visibility:visible;
pointer-events:auto;
box-shadow:0 32px 64px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,255,255,0.4)
}

.cart-dropdown-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  border-bottom:1px solid rgba(0,0,0,0.08);
  background:rgba(255,255,255,1)
}

.cart-dropdown-header h3 {
  margin:0;
  font-size:16px;
  font-weight:600;
  color:#2f3b31
}

#cart-panel-count.badge {
  background:#6f8b6b;
  color:white;
  padding:4px 8px;
  border-radius:12px;
  font-size:12px;
  font-weight:500;
  margin-left:8px
}

.cart-close-btn {
  background:none;
  border:none;
  font-size:20px;
  color:#6f8b6b;
  cursor:pointer;
  padding:4px;
  border-radius:4px;
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s
}

.cart-close-btn:hover {
  background:rgba(111,139,107,0.15)
}

#cart-items-panel {
  padding:12px 16px;
  max-height:280px;
  overflow-y:auto
}

.cart-item {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid rgba(0,0,0,0.05);
  gap:12px
}

.cart-item:last-child {
  border-bottom:none
}

.cart-item-info {
  flex:1
}

.cart-item-info strong {
  display:block;
  font-weight:500;
  color:#2f3b31;
  font-size:14px;
  margin-bottom:2px
}

.cart-item-info small {
  color:#6f8b6b;
  font-size:13px
}

.cart-item-total {
  font-weight:600;
  color:#2f3b31;
  font-size:14px;
  text-align:right;
  min-width:70px
}

.cart-footer {
  padding:16px 20px;
  border-top:1px solid rgba(0,0,0,0.08);
  background:rgba(255,255,255,0.9)
}

.cart-total-panel {
  margin-bottom:12px;
  font-size:15px;
  font-weight:600;
  color:#2f3b31;
  text-align:center
}

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

.primary-btn, .secondary-btn {
  flex:1;
  padding:12px 16px;
  border:none;
  border-radius:10px;
  font-weight:500;
  font-size:14px;
  cursor:pointer;
  transition:all .2s ease
}

.primary-btn {
  background:#6f8b6b;
  color:white
}

.primary-btn:hover {
  background:#5c7559
}

.secondary-btn {
  background:rgba(111,139,107,0.2);
  color:#6f8b6b
}

.secondary-btn:hover {
  background:rgba(111,139,107,0.3)
}

@media(max-width:768px){
#cart-panel{
  width:min(90vw,340px);
  right:-16px;
}
}



.cart-panel-title{
margin:0 0 8px;
font-size:16px;
font-weight:600;
color:#2f3b31
}

.cart-panel-actions{
margin-top:8px;
display:flex;
gap:8px;
justify-content:flex-end;
flex-wrap:wrap
}

.cart-empty{
margin:0;
color:#4f5d50;
font-size:14px
}

.cart-item{
display:flex;
justify-content:space-between;
gap:8px;
align-items:center;
padding:8px 0;
border-bottom:1px solid #eee7da
}

.cart-item-meta{
display:flex;
flex-direction:column;
gap:2px
}

.cart-item-meta strong{
font-size:14px;
font-weight:600;
color:#2f3b31
}

.cart-item-meta small{
font-size:12px;
color:#6a736b
}

.cart-item-actions{
display:flex;
gap:6px;
align-items:center
}

.cart-mini-btn{
width:24px;
height:24px;
border:1px solid #d9d2c5;
border-radius:6px;
background:#fff;
color:#3e4a3f;
line-height:1;
cursor:pointer
}

.cart-text-btn{
border:none;
background:transparent;
color:#3e4a3f;
font-size:12px;
cursor:pointer;
text-decoration:underline;
padding:0 2px
}

.cart-line-total{
font-size:12px;
color:#2f3b31
}

header{
height:95vh;
background:linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)),url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874');
background-size:cover;
background-position:center;
color:white;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
animation:fadeIn 1.5s
}

header img{width:150px;margin-bottom:25px}

header h1{
font-family:'Playfair Display',serif;
font-size:52px;
letter-spacing:5px;
margin:0
}

header p{
max-width:700px;
margin-top:20px;
font-size:19px;
line-height:1.6
}

.cta-buttons{
margin-top:35px;
display:flex;
gap:20px;
flex-wrap:wrap;
justify-content:center
}

button.primary{
background:#6f8b6b;
border:none;
padding:15px 32px;
border-radius:40px;
color:white;
font-size:16px;
cursor:pointer;
transition:0.3s
}

button.primary:hover{
background:#5c7559;
transform:scale(1.05)
}

.section{
padding:90px 8%;
text-align:center
}

.section h2{
font-family:'Playfair Display',serif;
font-size:40px;
margin-bottom:15px
}

.section p.lead{
max-width:850px;
margin:auto;
line-height:1.7;
font-size:17px
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:35px;
margin-top:50px
}

.card{
background:rgba(255,255,255,0.6);
backdrop-filter:blur(10px);
border-radius:20px;
padding:35px;
border:1px solid rgba(0,0,0,0.05);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:transform .35s ease, box-shadow .35s ease
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 18px 32px rgba(0,0,0,0.12)
}

.card h3{
font-family:'Playfair Display',serif
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:12px;
margin-top:50px
}

.gallery img{
width:100%;
height:230px;
object-fit:cover;
border-radius:14px;
transition:0.4s
}

.gallery img:hover{
transform:scale(1.05)
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  justify-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.feature{
background:#e8e3d9;
padding:30px;
border-radius:16px;
transition:transform .3s ease, box-shadow .3s ease
}

.feature:hover{
transform:translateY(-6px);
box-shadow:0 12px 24px rgba(0,0,0,0.1)
}

.booking{
background:#e6e1d6;
padding:80px 8%
}

.booking form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:16px
}

input,select{
padding:15px;
border-radius:10px;
border:1px solid #d2cbbd;
background:#f8f6f0;
font-size:15px
}

.payments{
display:flex;
justify-content:center;
gap:30px;
margin-top:30px
}

footer{
background:#3e4a3f;
color:#e9e4da;
padding:50px;
text-align:center
}

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:14px 16px;
border-radius:50px;
font-size:16px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
animation:pulse 2s infinite;
display:flex;
align-items:center;
gap:8px
}
.instagram{
position:fixed;
bottom:90px; /* arriba del botón de WhatsApp */
right:25px;
background:#E4405F;
color:white;
padding:14px 16px;
border-radius:50px;
font-size:16px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
display:flex;
align-items:center;
gap:8px;
transition:0.3s;
}

.instagram:hover{
transform:scale(1.1);
background:#c72e4d;
}

@keyframes pulse{
0%{transform:scale(1)}
50%{transform:scale(1.1)}
100%{transform:scale(1)}
}

@keyframes preloaderPulse{
0%,100%{transform:scale(1);opacity:.7}
50%{transform:scale(1.45);opacity:1}
}

@keyframes fadeIn{
from{opacity:0;transform:translateY(20px)}
to{opacity:1;transform:translateY(0)}
}

@keyframes slideDown{
from{opacity:0;transform:translateY(-24px)}
to{opacity:1;transform:translateY(0)}
}

@keyframes floatIn{
from{opacity:0;transform:translateY(26px) scale(.98)}
to{opacity:1;transform:translateY(0) scale(1)}
}

.reveal{
opacity:0;
transform:translateY(24px);
transition:opacity .7s ease, transform .7s ease
}

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

.reveal-stagger > *{
opacity:0;
transform:translateY(18px);
transition:opacity .55s ease, transform .55s ease
}

.reveal-stagger.is-visible > *{
opacity:1;
transform:translateY(0)
}

.reveal-stagger.is-visible > *:nth-child(1){transition-delay:.08s}
.reveal-stagger.is-visible > *:nth-child(2){transition-delay:.16s}
.reveal-stagger.is-visible > *:nth-child(3){transition-delay:.24s}
.reveal-stagger.is-visible > *:nth-child(4){transition-delay:.32s}
.reveal-stagger.is-visible > *:nth-child(5){transition-delay:.4s}
.reveal-stagger.is-visible > *:nth-child(6){transition-delay:.48s}

.form-toast{
position:fixed;
left:24px;
bottom:24px;
z-index:1000;
max-width:340px;
padding:14px 16px;
border-radius:14px;
background:rgba(248,246,240,0.96);
backdrop-filter:blur(6px);
border:1px solid #d2cbbd;
box-shadow:0 10px 25px rgba(0,0,0,0.14);
font-size:14px;
line-height:1.4;
color:#3e4a3f;
opacity:0;
transform:translateY(16px);
pointer-events:none;
transition:opacity .3s ease,transform .3s ease
}

.form-toast.show{
opacity:1;
transform:translateY(0)
}

.form-toast.success{
border-color:#9fc8a2;
color:#1b7f3a
}

.form-toast.error{
border-color:#d89a9a;
color:#b00020
}

.form-toast.sending{
border-color:#c6bda9;
color:#3e4a3f
}

/* LOGIN PAGE */
.login-page{
min-height:100vh;
display:flex;
flex-direction:column;
background:
linear-gradient(rgba(0,0,0,0.28),rgba(0,0,0,0.28)),
url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874');
background-size:cover;
background-position:center
}

.login-nav{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 6%;
background:rgba(243,239,231,0.74);
backdrop-filter:blur(10px);
z-index:20
}

.login-nav .logo{
text-decoration:none;
font-family:'Playfair Display',serif;
font-size:20px;
letter-spacing:2px;
color:#3e4a3f
}

.login-back{
text-decoration:none;
color:#3e4a3f;
font-size:14px;
font-weight:500
}

.login-main{
flex:1;
display:flex;
align-items:center;
justify-content:center;
padding:120px 20px 30px
}

.login-card{
width:100%;
max-width:520px;
background:rgba(255,255,255,0.76);
backdrop-filter:blur(12px);
border-radius:22px;
padding:34px;
border:1px solid rgba(255,255,255,0.45);
box-shadow:0 16px 36px rgba(0,0,0,0.2);
animation:floatIn .9s ease both
}

.login-card h1{
font-family:'Playfair Display',serif;
font-size:38px;
line-height:1.15;
margin:0 0 10px 0;
color:#2f3b31
}

.login-card p{
margin:0 0 24px;
color:#4f5d50
}

.login-form{
display:flex;
flex-direction:column;
gap:16px
}

.login-field{
display:flex;
flex-direction:column;
gap:8px
}

.login-field label{
font-size:14px;
font-weight:500;
color:#3e4a3f
}

.login-field input{
padding:15px;
border-radius:12px;
border:1px solid #d2cbbd;
background:#f8f6f0;
font-size:15px;
outline:none
}

.login-field input:focus{
border-color:#92aa8f;
box-shadow:0 0 0 3px rgba(111,139,107,0.18)
}

.field-error{
  color:#b00020;
  font-size:13px;
  min-height:18px;
  margin-top:4px;
}

.login-submit{
margin-top:8px
}

.login-message{
margin-top:14px;
font-size:14px;
min-height:20px;
text-align:center
}

/* DASHBOARD PAGE */
.dashboard-page{
min-height:100vh;
background:linear-gradient(180deg,#f3efe7 0%,#ece6da 100%);
color:#2f3b31
}

.dashboard-nav{
position:sticky;
top:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 6%;
background:rgba(243,239,231,0.85);
backdrop-filter:blur(8px);
border-bottom:1px solid rgba(62,74,63,0.08);
z-index:15
}

.dashboard-nav .logo{
text-decoration:none;
font-family:'Playfair Display',serif;
font-size:20px;
letter-spacing:2px;
color:#3e4a3f
}

.dashboard-actions{
display:flex;
gap:14px;
align-items:center
}

.dashboard-link{
text-decoration:none;
font-size:14px;
font-weight:500;
color:#3e4a3f;
padding:8px 14px;
border-radius:999px;
background:rgba(111,139,107,0.12);
transition:transform .25s ease, background .25s ease
}

.dashboard-link:hover{
transform:translateY(-2px);
background:rgba(111,139,107,0.22)
}

.dashboard-main{
padding:56px 20px 40px;
display:flex;
justify-content:center
}

.dashboard-card{
width:100%;
max-width:960px;
background:rgba(255,255,255,0.72);
backdrop-filter:blur(8px);
border:1px solid rgba(0,0,0,0.05);
border-radius:24px;
padding:28px;
box-shadow:0 16px 32px rgba(0,0,0,0.08)
}

.dashboard-card h1{
font-family:'Playfair Display',serif;
margin:0 0 8px;
font-size:42px;
color:#2f3b31
}

.dashboard-card > p{
margin:0 0 24px;
color:#4f5d50;
max-width:680px
}

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

.dashboard-item{
background:#f8f6f0;
border:1px solid #e1dacb;
border-radius:18px;
padding:18px;
transition:transform .25s ease, box-shadow .25s ease
}

.dashboard-item:hover{
transform:translateY(-4px);
box-shadow:0 12px 22px rgba(0,0,0,0.08)
}

.dashboard-item h2{
font-size:16px;
margin:0 0 10px;
color:#3e4a3f
}

.dashboard-item p{
font-size:22px;
font-weight:600;
margin:0;
color:#2f3b31
}

/* CRUD PAGE */
.crud-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 20px 80px;
}

.crud-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin: 0;
  letter-spacing: 0.03em;
  color: var(--text);
}

.crud-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-toggle {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.75);
}

.crud-container h2 {
  font-size: 1.35rem;
  margin: 0 0 18px;
  color: var(--text);
}

.crud-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.floating-field {
  position: relative;
  margin-bottom: 18px;
}

.floating-field input,
.floating-field select,
.floating-field textarea {
  width: 100%;
  padding: 18px 14px 10px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.floating-field label {
  position: absolute;
  top: 16px;
  left: 14px;
  pointer-events: none;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0 6px;
  background: transparent;
  transition: transform 0.18s ease, font-size 0.18s ease, color 0.18s ease;
}

.floating-field input:focus,
.floating-field select:focus,
.floating-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(111, 139, 107, 0.18);
}

.floating-field input:focus + label,
.floating-field select:focus + label,
.floating-field textarea:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field textarea:not(:placeholder-shown) + label,
.floating-field select:valid + label {
  transform: translateY(-10px);
  font-size: 0.78rem;
  color: var(--accent);
}

.floating-field textarea {
  min-height: 110px;
  resize: vertical;
}

.crud-subtipo {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.28s ease;
}

.crud-subtipo.open {
  opacity: 1;
  max-height: 260px;
  margin-top: 12px;
}

.crud-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.crud-actions button {
  flex: 1;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.crud-actions button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.crud-actions .btn-cancel {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

.crud-actions .btn-submit {
  background: var(--accent);
  color: white;
}

.crud-actions .btn-submit:hover {
  background: #5c7559;
}

.crud-table {
  margin-top: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.crud-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.crud-table thead {
  background: rgba(111, 139, 107, 0.1);
}

.crud-table th,
.crud-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.crud-table th {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--muted);
}

.crud-table tbody tr {
  transition: background 0.22s ease;
}

.crud-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.48);
}

.crud-table tbody tr:hover {
  background: rgba(111, 139, 107, 0.08);
}

.edit-btn,
.toggle-btn {
  border-radius: 999px;
  padding: 8px 12px;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease;
}

.edit-btn {
  background: rgba(203, 191, 167, 0.5);
  color: var(--text);
}

.toggle-btn {
  background: rgba(184, 92, 92, 0.18);
  color: #b00020;
}

.edit-btn:hover,
.toggle-btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .crud-container {
    padding: 40px 16px 60px;
  }
  .crud-form {
    padding: 22px;
  }
  .crud-actions {
    flex-direction: column;
  }
  .crud-table table {
    min-width: 0;
  }
}

@media(max-width:768px){
header h1{font-size:36px}
.section{padding:60px 6%}

#cart-panel{
top:calc(100% + 8px);
right:0;
transform:none;
width:min(320px,92vw);
max-height:56vh
}

.form-toast{
left:12px;
right:12px;
bottom:12px;
max-width:none
}

.login-card{padding:22px}
}

.inaug-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 59, 49, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  animation: modalFadeIn 0.4s ease forwards;
}

.inaug-modal {
  background: linear-gradient(135deg, #fffdf9 0%, #f8f6f0 100%);
  border-radius: 24px;
  padding: 36px;
  max-width: 420px;
  width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: scale(0.9) translateY(20px);
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.inaug-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin: 0 0 12px;
  text-align: center;
  color: #2f3b31;
  letter-spacing: 0.5px;
}

.inaug-modal p {
  font-size: 16px;
  margin: 8px 0;
  text-align: center;
  color: #3e4a3f;
  line-height: 1.5;
}

.inaug-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.inaug-reservar {
  background: linear-gradient(135deg, #6f8b6b, #5c7559);
  color: white !important;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.inaug-reservar:hover {
  transform: scale(1.05);
}

.inaug-mas {
  background: rgba(111, 139, 107, 0.2);
  color: #6f8b6b !important;
  border: 1px solid rgba(111, 139, 107, 0.4);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.inaug-mas:hover {
  background: rgba(111, 139, 107, 0.35);
  transform: translateY(-2px);
}

.inaug-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #6f8b6b;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.inaug-close:hover {
  background: rgba(111, 139, 107, 0.15);
  transform: rotate(90deg);
}

@keyframes modalFadeIn {
  to { opacity: 1; }
}

@keyframes modalSlideIn {
  to { 
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 480px) {
  .inaug-modal {
    margin: 20px;
    padding: 28px 24px;
  }
  
  .inaug-modal h2 {
    font-size: 24px;
  }
}
