@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --terra: #C4622D;
  --gold: #E8A94B;
  --dark: #1A1209;
  --cream: #FAF4EC;
  --brown: #6B3F1F;
  --text: #2C1A0E;
  --muted: #9C7B5E;
  --border: #E2D5C3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff7ed;
  min-height: 100vh;
}

/* ── Language switcher ── */

.lang-switcher{
display:flex;
gap:4px;
background:white;
border:2px solid var(--border);
border-radius:12px;
padding:5px;
box-shadow:0 4px 20px rgba(0,0,0,.1);

position:relative;
top:auto;
right:auto;
z-index:1;

flex-shrink:0;
margin-left:20px;
}
.topbar-right{
display:flex;
align-items:center;
gap:22px;
margin-left:auto;
}

.nav-links{
display:flex;
align-items:center;
gap:24px;
}

.lang-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: all 0.2s;
  letter-spacing: 1px;
}

.lang-btn.active {
  background: var(--dark);
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ── Left panel ── */
.left-panel {
  min-height: 50vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 48px;
}

.left-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(196,98,45,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(232,169,75,0.15) 0%, transparent 50%);
}

.left-tagline { position: relative; z-index: 1; }

.left-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
}

.left-logo-icon{
  width:auto;
  height:auto;
  background:none;
  border:none;
  box-shadow:none;
  border-radius:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.left-logo-icon img{
  width:120px;
  height:auto;
  display:block;
  object-fit:contain;
}
.auth-highlight div{
  color:white !important;
}
.left-desc{
  color:rgba(255,255,255,.85) !important;
}

.left-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: white;
}

.left-logo-text span { color: var(--gold); }

.left-headline {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.left-headline span { color: var(--gold); }

.left-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 360px;
}

.left-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* ── Right panel ── */
.right-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  background: white;
}

.form-container {
  width: 100%;
  max-width: 460px;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.1;
}

.form-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.5;
}

/* ── Type toggle ── */
.type-toggle {
  display: flex;
  background: #F0E8DC;
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 32px;
  gap: 5px;
}

.type-btn {
  flex: 1;
  padding: 13px;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--muted);
}

.type-btn.active {
  background: var(--dark);
  color: white;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* ── Social buttons ── */
.social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 2px solid var(--border);
  background: white;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  margin-bottom: 12px;
}

.social-btn:hover {
  border-color: var(--terra);
  background: #FFFAF5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196,98,45,0.12);
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
}

.divider-line { flex: 1; height: 1px; background: var(--border); }

.divider-text {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── Inputs ── */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-input {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid var(--border);
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: white;
  outline: none;
  transition: all 0.2s;
}

.form-input:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(196,98,45,0.08);
}

.form-input::placeholder { color: #C5B5A5; }

/* ── Main button ── */
.btn-main {
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--terra), #A8501F);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(196,98,45,0.35);
}

.btn-main.loading { opacity: 0.7; pointer-events: none; }

/* ── Switch mode ── */
.switch-mode {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

.switch-mode a {
  color: var(--terra);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.switch-mode a:hover { text-decoration: underline; }

.register-fields { display: none; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { background: #C0392B; }

/* ── Mobile ── */
@media (max-width: 768px) {
  body { display: flex; flex-direction: column; }
  .left-panel { min-height: 240px; padding: 32px; justify-content: flex-end; }
  .left-headline { font-size: 30px; }
  .left-logo { margin-bottom: 28px; }
  .left-stats { display: none; }
  .left-desc { font-size: 14px; }
  .right-panel { padding: 36px 24px; }
  .form-title { font-size: 30px; }
  .lang-switcher { top: 14px; right: 14px; }
}
.search-page {
  display: block;
  overflow: auto;
  background: #FAF4EC;
}

.topbar {
  height: 76px;
  padding: 0 48px;
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon{
  width:auto;
  height:auto;
  background:none;
  border-radius:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-icon img{
  height:200px;
  width:auto;
  display:block;
  object-fit:contain;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--dark);
}

.brand-name span {
  color: var(--terra);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a,
.logout-btn {
  font-size: 14px;
  color: var(--text);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.search-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 32px;
}

.search-hero {
  max-width: 680px;
  margin-bottom: 36px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terra);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}

.search-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 16px;
}

.search-hero p {
  font-size: 18px;
  color: var(--muted);
}

.filters-card,
.proximity-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(44, 26, 14, 0.06);
  margin-bottom: 28px;
}

.filters-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.filter-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.filter-group select {
  width: 100%;
  height: 52px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  background: white;
}

.search-btn {
  height: 52px;
  padding: 0 26px;
  margin-top: 0;
}

.proximity-card h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.proximity-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--terra);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.results-section {
  margin-top: 40px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
}

.results-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--dark);
}

.results-header p {
  color: var(--muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.braider-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(44, 26, 14, 0.06);
}

.braider-image {
  height: 190px;
  background:
    linear-gradient(135deg, rgba(196,98,45,.25), rgba(232,169,75,.25)),
    #EBD8C5;
}

.braider-info {
  padding: 20px;
}

.braider-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.braider-top h3 {
  color: var(--dark);
}

.braider-top span {
  color: var(--terra);
  font-weight: 800;
}

.braider-info p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.braider-bottom {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
}

.card-btn {
  width: 100%;
}

@media(max-width: 900px) {
  .topbar {
    padding: 0 20px;
  }

  .nav-links {
    gap: 12px;
  }

  .search-layout {
    padding: 40px 20px;
  }

  .search-hero h1 {
    font-size: 38px;
  }

  .filters-card {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}
/* FOOTER */

.site-footer{
margin-top:100px;
background:#140d08;
color:white;
padding-top:60px;
}

.footer-container{
max-width:1200px;
margin:auto;
padding:0 30px;
display:flex;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

.footer-brand{
display:flex;
gap:16px;
max-width:320px;
}

.footer-logo{
width:56px;
height:56px;
border-radius:16px;
background:linear-gradient(
135deg,
var(--terra),
var(--gold)
);

display:flex;
align-items:center;
justify-content:center;

font-size:24px;
}

.footer-brand h3{
font-size:32px;
font-family:'Playfair Display';
margin-bottom:10px;
}

.footer-brand span{
color:var(--gold);
}

.footer-brand p{
color:rgba(255,255,255,.6);
line-height:1.7;
font-size:14px;
}

.footer-links{
display:flex;
gap:80px;
flex-wrap:wrap;
}

.footer-column{
display:flex;
flex-direction:column;
gap:12px;
}

.footer-column h4{
margin-bottom:8px;
font-size:15px;
color:white;
}

.footer-column a{
text-decoration:none;
color:rgba(255,255,255,.6);
font-size:14px;
transition:.3s;
}

.footer-column a:hover{
color:var(--gold);
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.08);
margin-top:50px;
padding:25px;
text-align:center;
font-size:13px;
color:rgba(255,255,255,.4);
}

@media(max-width:900px){

.footer-container{
flex-direction:column;
}

.footer-links{
gap:40px;
}

}
.dashboard-page {
  min-height: 100vh;
  background: #fff7ed;
  padding: 32px;
  color: #2b1208;
}

.dashboard-header {
  margin-bottom: 28px;
}

.dashboard-header h1 {
  font-size: 34px;
  margin-bottom: 6px;
}

.dashboard-header p {
  color: #7a4a35;
}

.slot-form-card,
.calendar-section {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(69, 31, 11, 0.08);
  margin-bottom: 28px;
}

.slot-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.slot-form label {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  gap: 8px;
  color: #3a1a0d;
}

.slot-form input,
.slot-form select {
  padding: 13px 14px;
  border: 1px solid #e6c7b2;
  border-radius: 14px;
  font-size: 15px;
  background: #fffaf5;
}

.slot-form button {
  align-self: end;
  border: 0;
  border-radius: 16px;
  padding: 14px 20px;
  background: #7c2d12;
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(160px, 1fr));
  gap: 12px;
  overflow-x: auto;
}

.day-column {
  min-height: 420px;
  background: #fffaf5;
  border: 1px solid #f0d5c2;
  border-radius: 18px;
  padding: 12px;
}

.day-column h3 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #7c2d12;
}

.slot-card {
  background: #f4c7d9;
  border-left: 6px solid #7c2d12;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  font-size: 13px;
}

.slot-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.slot-card small {
  display: block;
  margin-top: 4px;
  color: #4b2413;
}

.slot-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.slot-actions button {
  border: 0;
  border-radius: 10px;
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 700;
}

.delete-slot {
  background: #fee2e2;
  color: #991b1b;
}

.booked-slot {
  background: #dcfce7;
  color: #166534;
}

@media (max-width: 900px) {
  .slot-form {
    grid-template-columns: 1fr;
  }

  .slots-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}
.dashboard-page {
  min-height: 100vh;
  background: #fff7ed;
  padding: 32px;
  color: #2b1208;
}

.dashboard-header {
  margin-bottom: 28px;
}

.dashboard-header h1 {
  font-size: 34px;
  margin-bottom: 6px;
}

.dashboard-header p {
  color: #7a4a35;
}

.slot-form-card,
.calendar-section,
.confirmation-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(69, 31, 11, 0.08);
  margin-bottom: 28px;
}

.slot-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.slot-form label {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  gap: 8px;
  color: #3a1a0d;
}

.slot-form input,
.slot-form select {
  padding: 13px 14px;
  border: 1px solid #e6c7b2;
  border-radius: 14px;
  font-size: 15px;
  background: #fffaf5;
}

.slot-form button,
.client-slot-card button {
  align-self: end;
  border: 0;
  border-radius: 16px;
  padding: 14px 20px;
  background: #7c2d12;
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(160px, 1fr));
  gap: 12px;
  overflow-x: auto;
}

.day-column {
  min-height: 420px;
  background: #fffaf5;
  border: 1px solid #f0d5c2;
  border-radius: 18px;
  padding: 12px;
}

.day-column h3 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #7c2d12;
}

.slot-card {
  background: #f4c7d9;
  border-left: 6px solid #7c2d12;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  font-size: 13px;
}

.slot-booked {
  background: #e5e7eb;
  opacity: 0.75;
}

.slot-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.slot-card small {
  display: block;
  margin-top: 4px;
  color: #4b2413;
}

.slot-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.slot-actions button {
  border: 0;
  border-radius: 10px;
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 700;
  background: #dcfce7;
  color: #166534;
}

.delete-slot {
  background: #fee2e2 !important;
  color: #991b1b !important;
}

.client-slots-grid,
.booking-history {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.client-slot-card,
.booking-card,
.empty-state {
  background: #fffaf5;
  border: 1px solid #f0d5c2;
  border-radius: 18px;
  padding: 20px;
}

.client-slot-card h3,
.booking-card h3 {
  color: #7c2d12;
  margin-bottom: 12px;
}

.confirmation-card {
  max-width: 620px;
  margin: 60px auto;
  text-align: center;
}

.confirmation-details {
  text-align: left;
  background: #fffaf5;
  border-radius: 18px;
  padding: 20px;
  margin: 24px 0;
}

.primary-link,
.secondary-link {
  display: inline-block;
  margin: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
}

.primary-link {
  background: #7c2d12;
  color: white;
}

.secondary-link {
  background: #f3e3d6;
  color: #7c2d12;
}

.empty-day {
  color: #9a6b55;
  font-size: 13px;
}

@media (max-width: 900px) {
  .slot-form,
  .client-slots-grid,
  .booking-history {
    grid-template-columns: 1fr;
  }

  .slots-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}
html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
}

.dashboard-page {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  background: #fff7ed;
  padding: 32px;
}

.slot-form-card,
.calendar-section,
.confirmation-card {
  width: 100%;
  max-width: 1180px;
  box-sizing: border-box;
}

.slot-form {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.slot-form input,
.slot-form select {
  width: 100%;
  box-sizing: border-box;
}

.slots-grid {
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(7, minmax(170px, 1fr));
  overflow-x: auto;
  padding-bottom: 12px;
}

.day-column {
  min-width: 170px;
}

@media (max-width: 900px) {
  .dashboard-page {
    padding: 20px;
  }

  .slots-grid {
    grid-template-columns: repeat(7, minmax(170px, 1fr));
  }
}
.not-found-page {
  min-height: 100vh;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.not-found-card {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(69, 31, 11, 0.1);
}

.not-found-icon {
  font-size: 42px;
  margin-bottom: 16px;
}

.not-found-card h2 {
  color: #7c2d12;
  font-size: 20px;
  margin-bottom: 8px;
}

.not-found-card h1 {
  font-size: 32px;
  color: #2b1208;
  margin-bottom: 12px;
}

.not-found-card p {
  color: #7a4a35;
  margin-bottom: 24px;
}
.earnings-cards{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-bottom:30px;
}

.earning-card{
background:white;
padding:24px;
border-radius:20px;
box-shadow:
0 8px 30px rgba(0,0,0,.08);
}

.earning-card span{
display:block;
margin-bottom:12px;
color:#777;
}

.earning-card h2{
font-size:32px;
margin:0;
}
.dashboard-actions{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(170px,1fr));

gap:20px;
margin-top:20px;
}

.action-card{

background:white;

padding:25px;

border-radius:20px;

text-decoration:none;

color:black;

display:flex;

flex-direction:column;

align-items:center;

gap:12px;

font-size:28px;

box-shadow:
0 8px 25px rgba(0,0,0,.08);

transition:.3s;
}

.action-card:hover{

transform:
translateY(-5px);

}
.profile-top{
display:flex;
gap:20px;
align-items:center;
margin-bottom:25px;
}

.avatar{
width:90px;
height:90px;
border-radius:50%;
background:#f4ede7;

display:flex;
align-items:center;
justify-content:center;

font-size:45px;
}

.section-row{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.portfolio-preview,
.portfolio-grid{

display:grid;

grid-template-columns:
repeat(auto-fill,minmax(120px,1fr));

gap:15px;
}

.portfolio-item,
.portfolio-card{

height:120px;

border-radius:18px;

background:#f5f5f5;

display:flex;

align-items:center;

justify-content:center;

font-size:45px;
}
.lang-switcher {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #ead2c2;
  padding: 6px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  width: auto !important;
  height: auto !important;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #7c2d12;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.active {
  background: #7c2d12;
  color: #ffffff;
}

.dashboard-page {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 32px;
  box-sizing: border-box;
}

.profile-card,
.calendar-section,
.slot-form-card {
  width: 100%;
  box-sizing: border-box;
}

.slot-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.slot-form input,
.slot-form textarea,
.slot-form select {
  width: 100%;
  box-sizing: border-box;
}

.portfolio-preview,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}

@media (max-width: 768px) {
  .lang-switcher {
    top: 12px;
    right: 12px;
  }

  .dashboard-page {
    padding: 76px 16px 24px;
  }

  .dashboard-header h1 {
    font-size: 28px;
  }

  .profile-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .slot-form {
    grid-template-columns: 1fr;
  }

  .section-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .portfolio-preview,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item,
  .portfolio-card {
    height: 120px;
  }
}

@media (max-width: 420px) {
  .dashboard-header h1 {
    font-size: 24px;
  }

  .portfolio-preview,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
/* APP TOPBAR */

.app-topbar{
  height:72px;
  padding:0 32px;
  background:#fffaf5;
  border-bottom:1px solid #ead2c2;
  display:flex;
  align-items:center;
  gap:18px;
  position:sticky;
  top:0;
  z-index:1000;
}

.hamburger-btn{
  width:42px;
  height:42px;
  border:1px solid #ead2c2;
  border-radius:12px;
  background:white;
  color:#7c2d12;
  font-size:22px;
  cursor:pointer;
}

.app-brand{
  font-family:'Playfair Display', serif;
  font-size:26px;
  font-weight:900;
  color:#1A1209;
  text-decoration:none;
}

.app-brand span{
  color:#C4622D;
}

.app-topbar-right{
  margin-left:auto;
  display:flex;
  align-items:center;
}

/* SIDEBAR */

.app-sidebar{
  position:fixed;
  top:72px;
  left:0;
  width:260px;
  height:calc(100vh - 72px);
  background:#1A1209;
  padding:28px 18px;
  transform:translateX(-100%);
  transition:.25s ease;
  z-index:999;
}

.app-sidebar.open{
  transform:translateX(0);
}

.app-sidebar a{
  display:block;
  color:white;
  text-decoration:none;
  padding:14px 16px;
  border-radius:14px;
  font-weight:700;
  margin-bottom:8px;
}

.app-sidebar a:hover{
  background:#7c2d12;
}

/* BOOKING PAGE */

body.app-page .dashboard-page{
  max-width:1120px !important;
  margin:0 auto !important;
  padding:48px 24px 60px !important;
}

.dashboard-header{
  margin-bottom:32px;
}

.dashboard-header h1{
  font-size:42px;
  line-height:1.1;
  color:#1A1209;
}

.dashboard-header p{
  margin-top:10px;
  font-size:17px;
  color:#7a4a35;
}

.calendar-section{
  background:white;
  border-radius:28px;
  padding:32px;
  box-shadow:0 18px 45px rgba(69,31,11,.08);
}

.calendar-section h2{
  font-size:28px;
  margin-bottom:24px;
  color:#1A1209;
}

.client-slots-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}

/* MOBILE */

@media(max-width:768px){
  .app-topbar{
    height:64px;
    padding:0 16px;
  }

  .app-brand{
    font-size:22px;
  }

  .app-sidebar{
    top:64px;
    height:calc(100vh - 64px);
  }

  body.app-page .dashboard-page{
    padding:32px 16px 48px !important;
  }

  .dashboard-header h1{
    font-size:32px;
  }

  .calendar-section{
    padding:22px;
    border-radius:22px;
  }
}
.profile-card{
  background:white;
  padding:40px;
  border-radius:32px;
  box-shadow:0 18px 45px rgba(69,31,11,.08);
  margin-bottom:32px;
}

.profile-top{
  display:flex;
  align-items:center;
  gap:28px;
  margin-bottom:36px;
}

.avatar{
  width:124px;
  height:124px;
  border-radius:50%;
  background:#f4ede7;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:62px;
  overflow:hidden;
  flex-shrink:0;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.profile-info h2,
.public-profile-page h1{
  font-size:42px;
  color:#1A1209;
  margin-bottom:8px;
}

.profile-info p,
#publicLocation,
#publicRating{
  color:#7a4a35;
  font-size:17px;
}

.avatar-actions{
  display:flex;
  gap:10px;
  margin-top:16px;
  flex-wrap:wrap;
}

.upload-btn,
.emoji-btn{
  border:1px solid #ead2c2;
  background:#fffaf5;
  color:#7c2d12;
  padding:10px 16px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  font-family:'DM Sans',sans-serif;
}

.upload-btn:hover,
.emoji-btn:hover{
  background:#f3e3d6;
}

.emoji-panel{
  display:none;
  margin-top:18px;
  max-width:360px;
}

.emoji-panel.show{
  display:block;
}

emoji-picker{
  width:100%;
  height:360px;
}

.profile-form{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.profile-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-weight:800;
  color:#3a1a0d;
}

.profile-form input,
.profile-form textarea{
  width:100%;
  padding:15px 16px;
  border:1px solid #e6c7b2;
  border-radius:16px;
  font-family:'DM Sans',sans-serif;
  font-size:15px;
  background:#fffaf5;
}

.full-row{
  grid-column:1 / -1;
}

.save-row{
  display:flex;
  gap:14px;
  align-items:center;
  flex-direction:row !important;
}

.profile-form button{
  border:0;
  border-radius:16px;
  padding:15px 24px;
  background:#7c2d12;
  color:white;
  font-weight:900;
  cursor:pointer;
}

.public-profile-info{
  display:grid;
  gap:10px;
  color:#4b2413;
}

.public-profile-info h3{
  margin-top:14px;
  color:#7c2d12;
}

.rating-stars{
  display:flex;
  gap:12px;
  margin-top:18px;
}

.rating-stars button{
  border:0;
  background:#fff3df;
  color:#c4622d;
  font-size:36px;
  width:64px;
  height:64px;
  border-radius:18px;
  cursor:pointer;
}

.rating-stars button:hover{
  background:#7c2d12;
  color:white;
}

.rating-note{
  margin-top:16px;
  color:#7a4a35;
}

@media(max-width:768px){
  .profile-card{
    padding:24px;
  }

  .profile-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .profile-form{
    grid-template-columns:1fr;
  }

  .profile-info h2,
  .public-profile-page h1{
    font-size:32px;
  }

  .save-row{
    flex-direction:column !important;
    align-items:flex-start;
  }
}
.emoji-panel{
  display:none;
  margin-top:18px;
  max-width:360px;
}

.emoji-panel.show{
  display:block;
}

emoji-picker{
  width:100%;
  height:360px;
}
/* PUBLIC PROFILE */

.public-profile-page{
max-width:1100px;
margin:auto;
padding:90px 24px 50px;
}

.public-profile-page .profile-card{
background:white;
padding:45px;
border-radius:30px;
box-shadow:
0 15px 45px rgba(0,0,0,.08);

margin-bottom:30px;
}

.public-profile-page .profile-top{
display:flex;
align-items:center;
gap:30px;
margin-bottom:35px;
}

.public-profile-page .avatar{
width:140px;
height:140px;

border-radius:50%;

background:#f4ede7;

display:flex;
align-items:center;
justify-content:center;

font-size:70px;

overflow:hidden;

flex-shrink:0;
}

.public-profile-page .avatar img{
width:100%;
height:100%;
object-fit:cover;
}

.public-profile-page h1{
font-size:52px;
font-family:'Playfair Display';
margin-bottom:8px;
color:#1A1209;
}

#publicLocation{

color:#8b5a40;
font-size:18px;

margin-bottom:8px;
}

#publicRating{

display:inline-block;

background:#fff2dd;

padding:8px 14px;

border-radius:999px;

font-weight:700;

color:#c4622d;
}

.public-profile-info{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:25px;

margin-top:30px;
}

.public-profile-info div{

background:#fffaf5;

padding:25px;

border-radius:20px;

border:1px solid #f2dfd1;

}

.public-profile-info h3{

font-size:18px;

margin-bottom:12px;

color:#7c2d12;
}

.public-profile-info p{

color:#555;
line-height:1.7;
}

.rating-section{

background:white;

padding:35px;

border-radius:30px;

box-shadow:
0 15px 45px rgba(0,0,0,.08);
}

.rating-section h2{

font-size:32px;

margin-bottom:20px;
}

.rating-stars{

display:flex;

gap:15px;

margin-top:20px;
}

.rating-stars button{

width:65px;
height:65px;

border:none;

border-radius:18px;

background:#fff3df;

font-size:34px;

cursor:pointer;

transition:.3s;
}

.rating-stars button:hover{

transform:translateY(-5px);

background:#c4622d;

color:white;
}

.rating-note{

margin-top:25px;

color:#777;
line-height:1.7;
}

@media(max-width:768px){

.public-profile-page .profile-top{

flex-direction:column;
align-items:flex-start;

}

.public-profile-info{

grid-template-columns:1fr;

}

.public-profile-page h1{

font-size:35px;

}

.rating-stars{

flex-wrap:wrap;

}
}
/* APP LAYOUT */

.dashboard-app-page{
    margin:0;
    background:#f6f3ef;
    min-height:100vh;
}


/* TOP BAR */

.app-topbar{
    position:sticky;
    top:0;
    z-index:1000;

    height:72px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 24px;

    background:white;

    border-bottom:1px solid #ead5c8;
}


.app-brand{
    text-decoration:none;
    color:#2e1408;

    font-size:24px;
    font-weight:700;
}

.app-brand span{
    color:#8d2d09;
}


.app-topbar-right{
    display:flex;
    align-items:center;
    gap:20px;
}


/* HAMBURGER */

.hamburger-btn{
    border:none;
    background:transparent;

    font-size:28px;

    cursor:pointer;

    color:#8d2d09;
}


/* SIDEBAR */

.app-sidebar{
    position:fixed;

    top:72px;
    left:-280px;

    width:260px;
    height:100vh;

    background:white;

    border-right:1px solid #ead5c8;

    padding:30px 0;

    display:flex;
    flex-direction:column;

    gap:8px;

    transition:.3s;

    z-index:999;
}


.app-sidebar.open{
    left:0;
}


.app-sidebar a{
    text-decoration:none;

    color:#32160c;

    font-size:16px;

    font-weight:600;

    padding:16px 30px;

    transition:.3s;
}


.app-sidebar a:hover{
    background:#f8f2ec;

    color:#8d2d09;
}


/* PAGE */

.dashboard-page{
    max-width:1200px;

    margin:auto;

    padding:100px 30px 60px;
}


/* LANGUAGE */

.lang-switcher{
    display:flex;

    background:white;

    border:1px solid #ead5c8;

    border-radius:999px;

    overflow:hidden;
}


.lang-btn{
    border:none;

    background:transparent;

    padding:10px 16px;

    cursor:pointer;

    font-weight:700;

    color:#8d2d09;
}


.lang-btn.active{
    background:#8d2d09;

    color:white;
}


/* MOBILE */

@media(max-width:768px){

.dashboard-page{
padding:95px 18px;
}

.app-topbar{
padding:0 16px;
}

.app-brand{
font-size:20px;
}

.app-sidebar{
width:220px;
}

}
.site-footer{
  background:#2b1408;
  color:#f7efe8;
  margin-top:80px;
  padding:60px 24px 24px;
}

.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
}

.footer-brand{
  display:flex;
  gap:18px;
  align-items:center;
  max-width:320px;
}

.footer-logo{
  width:auto;
  height:auto;
  background:none;
  border-radius:0;
  display:block;
}

.footer-brand h3{
  font-size:1.6rem;
  margin-bottom:10px;
}

.footer-brand span{
  color:#d8874d;
}

.footer-brand p{
  color:#dbc5b5;
  line-height:1.6;
}

.footer-links{
  display:flex;
  gap:60px;
  flex-wrap:wrap;
}

.footer-column{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-column h4{
  color:white;
  margin-bottom:8px;
  font-size:1rem;
}

.footer-column a{
  color:#dbc5b5;
  text-decoration:none;
  transition:0.2s;
}

.footer-column a:hover{
  color:white;
}

.footer-bottom{
  max-width:1200px;
  margin:40px auto 0;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.12);
  text-align:center;
  color:#c8b1a1;
  font-size:0.95rem;
}

@media(max-width:768px){

  .footer-container{
    flex-direction:column;
  }

  .footer-links{
    gap:36px;
  }

}
.auth-bottom-links {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 20px 40px;
  font-size: 0.95rem;
}

.auth-bottom-links a {
  color: #9a5a33;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}

.auth-bottom-links a:hover {
  color: #c96a2b;
}
.left-logo-icon img,
.footer-logo img {
  width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.footer-logo{
  width:auto;
  height:auto;
  background:none;
  border-radius:0;
}

.footer-logo img{
  width:170px;
  height:auto;
  display:block;
}
.app-brand{
  display:flex;
  align-items:center;
  gap: 100px;
}

.app-logo{
  height:78px;
  width:auto;
  display:block;
  object-fit:contain;
  transform:scale(2.5);
  transform-origin:left center;
}

.app-topbar{
  height:92px;
  overflow:visible;
}
.app-brand-text{
    margin-left:25px;
}
.brand-icon,
.footer-logo,
.app-brand-icon,
.logo-box {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
/* FINAL APP DESKTOP/MOBILE MENU */

@media (min-width: 901px) {
  .hamburger-btn {
    display: none !important;
  }

  .app-topbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    height: 92px !important;
    z-index: 1000;
  }

  .app-sidebar {
    position: fixed !important;
    top: 92px !important;
    left: 0 !important;
    width: 250px !important;
    height: calc(100vh - 92px) !important;
    transform: none !important;
    overflow-y: auto;
    background: #fff !important;
    border-right: 1px solid #e8d5c8;
    padding: 28px 18px;
    z-index: 999;
  }

  .dashboard-page {
    margin-left: 250px !important;
    width: calc(100% - 250px) !important;
    max-width: none !important;
    padding: 130px 32px 60px !important;
  }
}

@media (max-width: 900px) {
  .hamburger-btn {
    display: block !important;
  }

  .app-sidebar {
    position: fixed !important;
    top: 92px !important;
    left: 0 !important;
    width: 260px !important;
    height: calc(100vh - 92px) !important;
    transform: translateX(-100%) !important;
    background: #fff !important;
    z-index: 999;
  }

  .app-sidebar.open {
    transform: translateX(0) !important;
  }

  .dashboard-page {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 110px 18px 40px !important;
  }
}
/* PUBLIC MENU — DESKTOP E MOBILE FECHADO POR DEFEITO */

body.app-page .app-sidebar,
body.search-page .app-sidebar {
  transform: translateX(-100%) !important;
}

body.app-page .app-sidebar.open,
body.search-page .app-sidebar.open {
  transform: translateX(0) !important;
}

body.app-page .hamburger-btn,
body.search-page .hamburger-btn {
  display: block !important;
}

body.app-page .dashboard-page,
body.search-page .search-layout {
  margin-left: 0 !important;
  width: 100% !important;
  max-width: 1180px !important;
}
.public-page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}
body.app-page .search-hero {
  max-width: 900px !important;
  margin: 0 auto 70px !important;
  text-align: center !important;
}

body.app-page .search-hero h1 {
  font-size: 64px !important;
}
/* CENTER SEARCH PAGE CONTENT */

body.search-page .search-layout {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 130px 32px 70px !important;
}

body.search-page .search-hero {
  max-width: 850px !important;
  margin: 0 auto 42px !important;
  text-align: center !important;
}

body.search-page .search-hero h1,
body.search-page .search-hero p,
body.search-page .search-hero .eyebrow {
  text-align: center !important;
}

body.search-page .filters-card,
body.search-page .proximity-card,
body.search-page .results-section {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* ALL DASHBOARDS: HAMBURGER ON DESKTOP TOO */

@media (min-width: 901px) {
  body.dashboard-app-page .hamburger-btn {
    display: block !important;
  }

  body.dashboard-app-page .app-sidebar {
    position: fixed !important;
    top: 92px !important;
    left: 0 !important;
    width: 260px !important;
    height: calc(100vh - 92px) !important;
    transform: translateX(-100%) !important;
    background: #fff !important;
    border-right: 1px solid #ead5c8;
    padding: 28px 18px !important;
    z-index: 999;
  }

  body.dashboard-app-page .app-sidebar.open {
    transform: translateX(0) !important;
  }

  body.dashboard-app-page .dashboard-page {
    margin-left: auto !important;
    width: 100% !important;
    max-width: 1180px !important;
    padding: 130px 32px 60px !important;
  }
}
