/* ================================================
   JOLIM VESTIDOS — Design System v2.0
   Tema: Luxo Feminino · Rose Gold & Champagne
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --rose:        #c9847a;
  --rose-deep:   #a8594f;
  --rose-light:  #f0d5d1;
  --rose-pale:   #faf3f2;
  --champagne:   #e8d5c0;
  --gold:        #c9a96e;
  --gold-dark:   #a07840;
  --cream:       #fdf8f5;
  --ink:         #2c1f1e;
  --ink-soft:    #5a4540;
  --smoke:       #8a7a76;
  --border:      rgba(201,132,122,0.2);
  --shadow-sm:   0 2px 12px rgba(44,31,30,0.07);
  --shadow-md:   0 8px 32px rgba(44,31,30,0.12);
  --shadow-lg:   0 20px 60px rgba(44,31,30,0.16);
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 3px; }

/* ── NAVBAR ── */
.navbar-jolim {
  background: rgba(253,248,245,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar-jolim.scrolled { box-shadow: var(--shadow-md); }
.brand-logo { height: 28px; width: auto; object-fit: contain; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--rose-deep);
  letter-spacing: 0.02em;
}
.nav-link-custom {
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link-custom:hover { color: var(--rose-deep); }
.nav-link-custom:hover::after { transform: scaleX(1); }
.btn-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1.5px solid var(--rose);
  color: var(--rose-deep);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.48rem 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-nav-login:hover {
  background: var(--rose); color: white;
  box-shadow: 0 4px 16px rgba(201,132,122,0.35);
}

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(44,31,30,0.72) 0%,rgba(168,89,79,0.45) 60%,rgba(201,169,110,0.25) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 1.5rem; }
.hero-label {
  display: inline-block;
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(232,213,192,0.5);
  padding: 0.4rem 1.2rem; border-radius: 30px;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s 0.2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 300; color: white; line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s 0.4s both;
}
.hero-title em { font-style: italic; color: var(--champagne); }
.hero-subtitle {
  font-size: 1.02rem; font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 460px; margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s 0.6s both;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.8s both;
}
.hero-stats {
  position: absolute; bottom: 3rem; right: 4rem; z-index: 2;
  display: flex; gap: 2.5rem;
  animation: fadeSlideUp 0.8s 1s both;
}
.stat-item { text-align: center; color: white; }
.stat-item .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--champagne); display: block; line-height: 1; }
.stat-item .lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.3rem; display: block; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: fadeIn 1s 1.2s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom,rgba(255,255,255,0.5),transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── BUTTONS ── */
.btn-primary-jolim {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--rose); color: white;
  font-family: var(--font-body); font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 30px;
  border: none; text-decoration: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-primary-jolim:hover {
  background: var(--rose-deep); color: white;
  box-shadow: 0 8px 24px rgba(168,89,79,0.4); transform: translateY(-2px);
}
.btn-outline-jolim {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: white;
  font-family: var(--font-body); font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.5);
  text-decoration: none; cursor: pointer; transition: all var(--transition);
}
.btn-outline-jolim:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; }

/* ── ABOUT ── */
.about-section {
  padding: 100px 0; background: white;
  position: relative; overflow: hidden;
}
.about-section::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: var(--rose-pale); border-radius: 50%; opacity: 0.5;
}
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1rem;
}
.about-section h2 { font-size: clamp(2.2rem,4vw,3.5rem); margin-bottom: 1.5rem; }
.about-section p { color: var(--smoke); font-size: 1rem; line-height: 1.8; margin-bottom: 1.2rem; }
.about-metrics { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.metric .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--rose); line-height: 1; display: block; }
.metric .lbl { font-size: 0.77rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--smoke); margin-top: 0.3rem; display: block; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-img-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 1rem; z-index: 2;
}
.about-img-badge .ic {
  width: 44px; height: 44px; background: var(--rose-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--rose-deep); font-size: 1.2rem;
}
.about-img-badge .tx strong { display: block; font-size: 0.9rem; color: var(--ink); }
.about-img-badge .tx span { font-size: 0.75rem; color: var(--smoke); }

/* ── FILTER BAR ── */
.filter-section {
  background: white; border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
  position: sticky; top: 72px; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.filter-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-input { flex: 1; min-width: 220px; position: relative; }
.filter-input i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--smoke); font-size: 0.88rem; }
.filter-input input {
  width: 100%; padding: 0.72rem 1rem 0.72rem 2.4rem;
  border: 1.5px solid var(--border); border-radius: 30px;
  font-family: var(--font-body); font-size: 0.87rem; color: var(--ink);
  background: var(--cream); outline: none;
  transition: border-color var(--transition);
}
.filter-input input:focus { border-color: var(--rose); background: white; }
.filter-select { position: relative; }
.filter-select select {
  appearance: none;
  padding: 0.72rem 2.5rem 0.72rem 1rem;
  border: 1.5px solid var(--border); border-radius: 30px;
  font-family: var(--font-body); font-size: 0.87rem; color: var(--ink);
  background: var(--cream); outline: none; cursor: pointer;
  transition: border-color var(--transition); min-width: 155px;
}
.filter-select select:focus { border-color: var(--rose); background: white; }
.filter-select::after { content:'\F282'; font-family:'Bootstrap-icons'; position:absolute; right:1rem; top:50%; transform:translateY(-50%); color:var(--smoke); pointer-events:none; }
.btn-filter {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--rose); color: white;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.06em; padding: 0.72rem 1.5rem;
  border-radius: 30px; border: none; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.btn-filter:hover { background: var(--rose-deep); box-shadow: 0 4px 16px rgba(201,132,122,0.35); }

/* ── CATALOG ── */
.catalog-section { padding: 60px 0 100px; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 0.75rem; }
.section-header p { color: var(--smoke); font-size: 0.97rem; max-width: 500px; margin: 0 auto; }
.section-divider { width: 50px; height: 2px; background: linear-gradient(to right,var(--rose),var(--gold)); margin: 1rem auto 0; border-radius: 1px; }

/* ── DRESS CARD ── */
.dress-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); height: 100%;
  display: flex; flex-direction: column;
  border: 1px solid transparent;
}
.dress-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--rose-light); }
.dress-img-wrap { position: relative; height: 320px; overflow: hidden; cursor: pointer; background: var(--rose-pale); }
.dress-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.dress-card:hover .dress-img { transform: scale(1.08); }
.dress-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(44,31,30,0.6) 0%,transparent 50%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1.5rem;
}
.dress-card:hover .dress-img-overlay { opacity: 1; }
.btn-view-gallery {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.92); color: var(--rose-deep);
  font-size: 0.77rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border-radius: 20px; border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-view-gallery:hover { background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.dress-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: white; color: var(--rose-deep);
  font-size: 0.71rem; font-weight: 600; letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem; border-radius: 20px;
  border: 1px solid var(--rose-light); box-shadow: var(--shadow-sm);
}
.dress-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.dress-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.dress-color { display: flex; align-items: center; gap: 0.4rem; font-size: 0.77rem; color: var(--smoke); }
.dress-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.3; }
.dress-desc { font-size: 0.84rem; color: var(--smoke); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.dress-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.dress-price { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; color: var(--rose-deep); line-height: 1; }
.dress-price small { font-family: var(--font-body); font-size: 0.66rem; color: var(--smoke); display: block; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.2rem; }
.btn-book {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--rose); color: white;
  font-size: 0.77rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.58rem 1.1rem; border-radius: 20px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all var(--transition); flex-shrink: 0;
}
.btn-book:hover { background: var(--rose-deep); color: white; box-shadow: 0 4px 14px rgba(168,89,79,0.35); transform: translateY(-1px); }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state .eico { font-size: 4rem; color: var(--rose-light); margin-bottom: 1rem; display: block; }
.empty-state h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink-soft); margin-bottom: 0.5rem; }
.empty-state p { color: var(--smoke); font-size: 0.9rem; }

/* ── GALLERY MODAL ── */
.modal-gallery .modal-content { background: #0d0907; border: none; border-radius: var(--radius); overflow: hidden; }
.modal-gallery .modal-body { padding: 0; position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.gallery-img { max-width: 100%; max-height: 80vh; object-fit: contain; transition: transform 0.3s ease; user-select: none; }
.gallery-close { position:absolute; top:1rem; right:1rem; width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); color:white; display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:10; transition:all var(--transition); font-size:1rem; }
.gallery-close:hover { background: rgba(255,255,255,.25); }
.gallery-nav { position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:white; display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:10; transition:all var(--transition); font-size:1.2rem; }
.gallery-nav:hover { background: rgba(201,132,122,.7); }
.gallery-nav-prev { left: 1.5rem; }
.gallery-nav-next { right: 1.5rem; }
.gallery-dots { position:absolute; bottom:1.2rem; left:50%; transform:translateX(-50%); display:flex; gap:6px; z-index:10; }
.gallery-dot { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.3); cursor:pointer; transition:all var(--transition); }
.gallery-dot.active { background: var(--champagne); transform: scale(1.4); }
.gallery-counter { position:absolute; top:1rem; left:50%; transform:translateX(-50%); background:rgba(0,0,0,.5); color:rgba(255,255,255,.7); font-size:.72rem; letter-spacing:.1em; padding:.3rem .8rem; border-radius:20px; }
.gallery-zoom-controls { position:absolute; bottom:1rem; right:1rem; display:flex; gap:.4rem; z-index:10; }
.zoom-btn { width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); color:white; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:.85rem; transition:all var(--transition); }
.zoom-btn:hover { background: rgba(201,132,122,.6); }

/* ── WHATSAPP ── */
.wa-float { position:fixed; bottom:2rem; left:2rem; z-index:999; }
.wa-btn { display:flex; align-items:center; gap:.6rem; background:#25D366; color:white; border-radius:50px; width:58px; height:58px; overflow:hidden; box-shadow:0 4px 20px rgba(37,211,102,.4); text-decoration:none; transition:all var(--transition); animation:waPulse 3s infinite; }
.wa-btn:hover { width:auto; padding:0 1.5rem; color:white; box-shadow:0 6px 28px rgba(37,211,102,.55); animation:none; }
.wa-btn i { font-size:1.6rem; flex-shrink:0; margin-left:1rem; }
.wa-btn:hover i { margin-left:0; }
.wa-label { font-size:.82rem; font-weight:500; white-space:nowrap; overflow:hidden; max-width:0; transition:max-width .4s ease; opacity:0; }
.wa-btn:hover .wa-label { max-width:200px; opacity:1; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 28px rgba(37,211,102,.65)} }

/* ── FOOTER ── */
.footer-jolim { background: var(--ink); color: rgba(255,255,255,.7); }
.footer-main { padding: 70px 0 50px; }
.footer-brand img { height:46px; width:auto; opacity:0.9; margin-bottom:1rem; }
.footer-brand p { font-size:.87rem; line-height:1.7; max-width:260px; color:rgba(255,255,255,.5); }
.footer-col h6 { font-family:var(--font-body); font-size:.71rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--champagne); margin-bottom:1.2rem; }
.footer-list { list-style:none; padding:0; }
.footer-list li { display:flex; align-items:flex-start; gap:.6rem; margin-bottom:.7rem; font-size:.85rem; color:rgba(255,255,255,.6); }
.footer-list li i { color:var(--rose); margin-top:.15rem; flex-shrink:0; font-size:.88rem; }
.footer-social { display:flex; gap:.75rem; margin-top:.5rem; }
.footer-social a { width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.6); font-size:.95rem; text-decoration:none; transition:all var(--transition); }
.footer-social a:hover { background:var(--rose); border-color:var(--rose); color:white; transform:translateY(-2px); }
.footer-bottom { padding:1.2rem 0; border-top:1px solid rgba(255,255,255,.07); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:.5rem; }
.footer-bottom p { font-size:.77rem; color:rgba(255,255,255,.35); margin:0; }

/* ── RESERVE PAGE ── */
.reserve-hero { background:linear-gradient(135deg,var(--rose-pale),var(--cream)); padding:50px 0 40px; border-bottom:1px solid var(--border); }
.reserve-hero h1 { font-size:clamp(1.8rem,4vw,2.8rem); }
.reserve-card { background:white; border-radius:var(--radius); box-shadow:var(--shadow-md); overflow:hidden; margin-bottom:2rem; }
.reserve-card-header { padding:1.5rem 2rem; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:.75rem; }
.reserve-card-header .step-icon { width:36px; height:36px; border-radius:50%; background:var(--rose-pale); color:var(--rose-deep); display:flex; align-items:center; justify-content:center; font-size:.95rem; }
.reserve-card-header h4 { font-size:1.1rem; margin:0; }
.reserve-card-body { padding:2rem; }
.dress-preview { display:flex; gap:1.5rem; align-items:center; padding:1.2rem; background:var(--rose-pale); border-radius:var(--radius-sm); border:1px solid var(--rose-light); }
.dress-preview img { width:90px; height:110px; object-fit:cover; border-radius:var(--radius-sm); flex-shrink:0; }
.dress-preview-info h5 { font-size:1.15rem; margin-bottom:.4rem; }
.dress-preview-info .price { font-family:var(--font-display); font-size:1.5rem; color:var(--rose-deep); }
.form-group-jolim { margin-bottom:1.2rem; }
.form-group-jolim label { display:block; font-size:.79rem; font-weight:500; letter-spacing:.07em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:.4rem; }
.form-group-jolim label .req { color:var(--rose); margin-left:2px; }
.form-control-jolim { width:100%; padding:.75rem 1rem; border:1.5px solid var(--border); border-radius:var(--radius-sm); font-family:var(--font-body); font-size:.9rem; color:var(--ink); background:var(--cream); outline:none; transition:all var(--transition); }
.form-control-jolim:focus { border-color:var(--rose); background:white; box-shadow:0 0 0 3px rgba(201,132,122,.12); }
textarea.form-control-jolim { resize:vertical; min-height:90px; }
select.form-control-jolim { cursor:pointer; appearance:none; }
.form-section-title { font-size:.72rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--rose); padding-bottom:.75rem; border-bottom:1px solid var(--border); margin-bottom:1.2rem; margin-top:.5rem; }
.btn-rose-submit { display:inline-flex; align-items:center; justify-content:center; gap:.5rem; background:var(--rose); color:white; font-family:var(--font-body); font-size:.88rem; font-weight:500; letter-spacing:.08em; text-transform:uppercase; padding:.9rem 2.5rem; border-radius:30px; border:none; cursor:pointer; transition:all var(--transition); }
.btn-rose-submit:hover { background:var(--rose-deep); box-shadow:0 8px 24px rgba(168,89,79,.4); transform:translateY(-2px); }
.success-box { text-align:center; padding:3rem 2rem; }
.success-box .check-icon { width:72px; height:72px; background:linear-gradient(135deg,var(--rose),var(--rose-deep)); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; color:white; font-size:2rem; }
.success-box h2 { font-size:2rem; margin-bottom:.75rem; }
.success-box p { color:var(--smoke); max-width:400px; margin:0 auto 1.5rem; }
.reservation-code { display:inline-block; background:var(--rose-pale); border:1px solid var(--rose-light); color:var(--rose-deep); font-size:1rem; font-weight:600; letter-spacing:.15em; padding:.6rem 1.5rem; border-radius:8px; margin-bottom:1.5rem; }
.alert-jolim { padding:.85rem 1rem; border-radius:var(--radius-sm); font-size:.88rem; display:flex; align-items:center; gap:.6rem; margin-bottom:1.2rem; }
.alert-danger-jolim { background:#fff2f2; color:#c0392b; border:1px solid #fccaca; }
.alert-success-jolim { background:#edfaf3; color:#2e7d52; border:1px solid #c3f0d8; }

/* ── LOGIN ── */
.login-page { min-height:100vh; display:flex; background:var(--ink); }
.login-visual { flex:1; position:relative; display:none; }
@media (min-width:768px) { .login-visual{display:block;} }
.login-visual-bg { position:absolute; inset:0; background:url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?ixlib=rb-4.0.3&auto=format&fit=crop&w=900&q=85') center center/cover; }
.login-visual-overlay { position:absolute; inset:0; background:linear-gradient(to right,rgba(44,31,30,.9),rgba(168,89,79,.4)); }
.login-visual-content { position:relative; z-index:2; padding:3rem; height:100%; display:flex; flex-direction:column; justify-content:center; }
.login-visual-content img { height:46px; opacity:1; margin-bottom:3rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.login-visual-content h2 { font-family:var(--font-display); font-size:2.8rem; color:white; font-weight:300; line-height:1.2; margin-bottom:1rem; }
.login-visual-content h2 em { font-style:italic; color:var(--champagne); }
.login-visual-content p { color:rgba(255,255,255,.6); font-size:.95rem; }
.login-form-side { width:100%; max-width:460px; background:white; display:flex; flex-direction:column; justify-content:center; padding:3rem; }
.login-form-side .logo-mobile { height:38px; margin-bottom:2.5rem; display:block; }
@media (min-width:768px) { .login-form-side .logo-mobile{display:none;} }
.login-form-side h3 { font-size:1.7rem; margin-bottom:.4rem; }
.login-form-side .subtitle { font-size:.87rem; color:var(--smoke); margin-bottom:2rem; }

/* ── ADMIN ── */
.admin-wrapper { display:flex; min-height:100vh; background:#f4f1ef; }
.admin-sidebar { width:260px; background:var(--ink); color:white; position:fixed; left:0; top:0; bottom:0; display:flex; flex-direction:column; z-index:200; transition:transform var(--transition); overflow-y:auto; }
.admin-sidebar-header { padding:1.8rem 1.5rem; border-bottom:1px solid rgba(255,255,255,.08); display:flex; align-items:center; gap:.75rem; }
.admin-sidebar-header img { height:34px; opacity:0.85; }
.admin-sidebar-nav { flex:1; padding:1rem 0; }
.admin-nav-group { padding:.5rem 1rem .25rem; font-size:.64rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.3); }
.admin-nav-link { display:flex; align-items:center; gap:.75rem; padding:.68rem 1.5rem; color:rgba(255,255,255,.65); text-decoration:none; font-size:.87rem; transition:all var(--transition); border-left:2px solid transparent; }
.admin-nav-link:hover { color:white; background:rgba(255,255,255,.05); }
.admin-nav-link.active { color:white; background:rgba(201,132,122,.15); border-left-color:var(--rose); }
.admin-nav-link i { font-size:1rem; width:1.1rem; text-align:center; flex-shrink:0; }
.admin-sidebar-footer { padding:1.2rem 1.5rem; border-top:1px solid rgba(255,255,255,.08); font-size:.81rem; color:rgba(255,255,255,.4); }
.admin-main { flex:1; margin-left:260px; display:flex; flex-direction:column; min-height:100vh; }
.admin-topbar { background:white; border-bottom:1px solid #e8e3e1; padding:.88rem 2rem; display:flex; align-items:center; justify-content:space-between; position:sticky; top:0; z-index:100; }
.admin-topbar h5 { font-size:1.02rem; font-weight:500; margin:0; color:var(--ink); }
.admin-topbar .user-info { display:flex; align-items:center; gap:.75rem; font-size:.84rem; color:var(--smoke); }
.admin-topbar .user-avatar { width:34px; height:34px; background:var(--rose-pale); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--rose-deep); font-size:.9rem; }
.admin-content { flex:1; padding:2rem; }
.stat-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.25rem; margin-bottom:2rem; }
.stat-card { background:white; border-radius:var(--radius); padding:1.5rem; display:flex; align-items:center; gap:1rem; box-shadow:var(--shadow-sm); border:1px solid #ede8e6; transition:box-shadow var(--transition); }
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card .sico { width:48px; height:48px; border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.sico.rose { background:var(--rose-pale); color:var(--rose-deep); }
.sico.green { background:#edfaf3; color:#2e7d52; }
.sico.amber { background:#fff8ec; color:#b06000; }
.sico.blue { background:#eef4ff; color:#2850a6; }
.stat-card .sinfo .val { font-family:var(--font-display); font-size:1.8rem; font-weight:400; color:var(--ink); line-height:1; display:block; }
.stat-card .sinfo .slabel { font-size:.77rem; letter-spacing:.06em; text-transform:uppercase; color:var(--smoke); margin-top:.3rem; display:block; }
.admin-table-card { background:white; border-radius:var(--radius); box-shadow:var(--shadow-sm); overflow:hidden; border:1px solid #ede8e6; margin-bottom:1.5rem; }
.admin-table-header { padding:1.2rem 1.5rem; border-bottom:1px solid #ede8e6; display:flex; align-items:center; justify-content:space-between; }
.admin-table-header h5 { font-size:1rem; font-weight:500; margin:0; }
.admin-table { width:100%; border-collapse:collapse; }
.admin-table th { padding:.75rem 1rem; font-size:.71rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--smoke); background:#faf8f7; border-bottom:1px solid #ede8e6; text-align:left; white-space:nowrap; }
.admin-table td { padding:1rem; font-size:.87rem; color:var(--ink); border-bottom:1px solid #f2edeb; vertical-align:middle; }
.admin-table tr:last-child td { border-bottom:none; }
.admin-table tr:hover td { background:#fdf9f8; }
.badge-jolim { display:inline-flex; align-items:center; gap:.3rem; font-size:.71rem; font-weight:500; letter-spacing:.05em; padding:.3rem .7rem; border-radius:20px; }
.badge-pendente { background:#fff8ec; color:#b06000; }
.badge-confirmado,.badge-confirmada { background:#edfaf3; color:#2e7d52; }
.badge-cancelado,.badge-cancelada { background:#fff2f2; color:#c0392b; }
.badge-concluido,.badge-concluída { background:#eef4ff; color:#2850a6; }
.badge-retirada { background:#f3eeff; color:#6d3699; }
.badge-devolvida { background:#f0f0f0; color:#555555; }
.badge-disponivel { background:#edfaf3; color:#2e7d52; }
.badge-indisponivel { background:#fff2f2; color:#c0392b; }
.btn-admin { display:inline-flex; align-items:center; gap:.4rem; font-size:.77rem; font-weight:500; padding:.42rem .9rem; border-radius:20px; border:none; cursor:pointer; text-decoration:none; transition:all var(--transition); }
.btn-admin-rose { background:var(--rose-pale); color:var(--rose-deep); }
.btn-admin-rose:hover { background:var(--rose); color:white; }
.btn-admin-primary { background:var(--rose); color:white; }
.btn-admin-primary:hover { background:var(--rose-deep); color:white; box-shadow:0 4px 12px rgba(168,89,79,.3); }
.btn-admin-ghost { background:transparent; color:var(--smoke); border:1px solid #ddd; }
.btn-admin-ghost:hover { background:#f5f0ee; color:var(--ink); }
/* Admin form */
.admin-form-card { background:white; border-radius:var(--radius); box-shadow:var(--shadow-sm); border:1px solid #ede8e6; overflow:hidden; }
.admin-form-header { padding:1.2rem 1.5rem; border-bottom:1px solid #ede8e6; }
.admin-form-header h5 { font-size:1rem; font-weight:500; margin:0; }
.admin-form-body { padding:1.5rem; }
.admin-form-group { margin-bottom:1.2rem; }
.admin-form-group label { display:block; font-size:.78rem; font-weight:500; letter-spacing:.07em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:.4rem; }
.admin-form-control { width:100%; padding:.7rem 1rem; border:1.5px solid #ddd5d3; border-radius:var(--radius-sm); font-family:var(--font-body); font-size:.9rem; color:var(--ink); background:#fafaf9; outline:none; transition:all var(--transition); }
.admin-form-control:focus { border-color:var(--rose); background:white; box-shadow:0 0 0 3px rgba(201,132,122,.1); }
textarea.admin-form-control { resize:vertical; min-height:80px; }
select.admin-form-control { cursor:pointer; appearance:none; }
/* Image grid admin */
.admin-img-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:.75rem; }
.admin-img-item { position:relative; aspect-ratio:3/4; border-radius:8px; overflow:hidden; background:#f0ebe9; }
.admin-img-item img { width:100%; height:100%; object-fit:cover; }
.admin-img-item .remove-img { position:absolute; top:.4rem; right:.4rem; width:28px; height:28px; background:rgba(192,57,43,.85); border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; color:white; font-size:.8rem; transition:all var(--transition); }
.admin-img-item .remove-img:hover { background:#c0392b; transform:scale(1.1); }
.admin-img-placeholder { aspect-ratio:3/4; border-radius:8px; border:2px dashed #ddd5d3; display:flex; flex-direction:column; align-items:center; justify-content:center; cursor:pointer; color:var(--smoke); font-size:.8rem; transition:all var(--transition); background:#fdf8f6; }
.admin-img-placeholder:hover { border-color:var(--rose); color:var(--rose); background:var(--rose-pale); }

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── RESPONSIVE ── */
@media (max-width:991px) {
  .hero-stats { display:none; }
  .admin-sidebar { transform:translateX(-100%); }
  .admin-sidebar.open { transform:translateX(0); }
  .admin-main { margin-left:0; }
  .admin-topbar { padding:.8rem 1rem; }
}
@media (max-width:767px) {
  .dress-img-wrap { height:260px; }
  .about-img-badge { display:none; }
  .reserve-card-body { padding:1.2rem; }
  .login-form-side { padding:2rem 1.5rem; max-width:100%; }
  .admin-img-grid { grid-template-columns:repeat(2,1fr); }
}

/* ── MOBILE HAMBURGER ── */
.admin-hamburger {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .35rem .6rem;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.admin-hamburger:hover { background: var(--rose-pale); border-color: var(--rose); }
@media (max-width: 991px) {
  .admin-hamburger { display: flex; align-items: center; }
  .admin-sidebar { transform: translateX(-260px); }
  .admin-sidebar.open { transform: translateX(0); box-shadow: 4px 0 24px rgba(44,31,30,.25); }
  .admin-main { margin-left: 0 !important; }
}

/* ── TOAST NOTIFICATIONS ── */
.toast-container-jolim {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.toast-jolim {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: white;
  border-radius: 10px;
  padding: .85rem 1.2rem;
  box-shadow: 0 8px 32px rgba(44,31,30,.18);
  border-left: 3px solid var(--rose);
  font-size: .87rem;
  min-width: 280px;
  animation: slideInRight .3s ease;
}
.toast-jolim.success { border-left-color: #2e7d52; }
.toast-jolim.error { border-left-color: #c0392b; }
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
