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

:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --accent2: #0f3460;
  --light: #f5f5f5;
  --white: #ffffff;
  --gray: #6b7280;
  --card-bg: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 12px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--light);
  color: var(--primary);
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.nav-logo-img:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--accent);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px) {
  nav {
    height: 64px;
    padding: 0 1.25rem;
  }

  .nav-logo-img {
    height: 80px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem 2rem;
    gap: 0.25rem;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: block;
  }

  .nav-links .nav-book-btn {
    margin-top: 0.5rem;
    text-align: center;
    background: var(--accent);
    color: var(--white);
  }

  .page {
    padding-top: 64px;
  }
}

/* ===== PAGE WRAPPER ===== */
.page {
  display: none;
  padding-top: 70px;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(to bottom, rgba(10,10,20,0.72) 0%, rgba(10,10,20,0.55) 50%, rgba(10,10,20,0.80) 100%),
    url('insperation/salvatore-tonnara-vvmIhgAlBk0-unsplash.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(233,69,96,0.10) 0%, transparent 70%);
  pointer-events: none;
}

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


.hero-badge {
  display: inline-block;
  background: rgba(233,69,96,0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  position: relative;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: #b0b8cc;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233,69,96,0.4);
}

.btn-primary:hover {
  background: #c73652;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,69,96,0.5);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.stat-item {
  text-align: center;
  padding: 1.8rem 3rem;
  border-right: 1px solid #eee;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SECTIONS ===== */
section {
  padding: 5rem 2rem;
}

.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

/* Services section with tyre background */
.services-bg-section {
  background:
    linear-gradient(to bottom, rgba(245,245,245,0.93) 0%, rgba(245,245,245,0.93) 100%),
    url('insperation/nazim-zafri-4dNGik9Itfg-unsplash.jpg') center/cover no-repeat fixed;
  padding: 5rem 2rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 36px rgba(233,69,96,0.15);
}

.service-card-link {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card-link:hover .service-card-cta {
  color: var(--accent);
  gap: 0.5rem;
}

.service-card-cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray);
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.service-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ===== WHY US ===== */
.why-us {
  background:
    linear-gradient(to bottom, rgba(10,10,20,0.80) 0%, rgba(10,10,20,0.70) 100%),
    url('insperation/halil-ibrahim-cetinkaya-_0eOyLYXIto-unsplash.jpg') center/cover no-repeat;
  color: var(--white);
}

.why-us .section-title {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.why-item .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.why-item p {
  font-size: 0.9rem;
  color: #9aa0b4;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background:
    linear-gradient(to bottom, rgba(10,10,20,0.75) 0%, rgba(10,10,20,0.65) 100%),
    url('insperation/pablo-gomez-t7OnjsAlzGM-unsplash.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-hero h1 span { color: var(--accent); }

.about-hero p {
  color: #b0b8cc;
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-block.reverse {
  direction: rtl;
}

.about-block.reverse > * {
  direction: ltr;
}

.about-img-placeholder {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-text h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-text h2 span { color: var(--accent); }

.about-text p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.team-section {
  background: var(--primary);
  padding: 4rem 2rem;
}

.team-section .section-title { color: var(--white); }
.team-section .section-sub { color: #9aa0b4; }

.team-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 220px;
  transition: var(--transition);
}

.team-card:hover {
  background: rgba(233,69,96,0.1);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0f3460);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.team-card h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.team-card p {
  color: #9aa0b4;
  font-size: 0.88rem;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-hero h1 span { color: var(--accent); }

.contact-hero p {
  color: #b0b8cc;
  max-width: 500px;
  margin: 0 auto;
}

.contact-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), #c73652);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail .text strong {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.contact-detail .text span {
  color: var(--gray);
  font-size: 0.93rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--primary);
  background: #fafafa;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success .check {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--gray);
}

/* ===== MAP EMBED ===== */
.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== WEBBSHOP ===== */
.shop-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 60%, #16213e 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.shop-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0.75rem 0 1rem;
}

.shop-hero h1 span { color: var(--accent); }

.shop-hero p {
  color: #b0b8cc;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.shop-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.shop-filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 2px solid #ddd;
  background: var(--white);
  color: var(--gray);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 12px 36px rgba(233,69,96,0.15);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-emoji {
  font-size: 3rem;
  line-height: 1;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.product-brand {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.product-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.product-scent {
  font-size: 0.88rem;
  color: var(--gray);
}

.product-type-tag {
  display: inline-block;
  background: var(--light);
  color: var(--gray);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-top: 0.25rem;
  width: fit-content;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.add-to-cart-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background: #c73652;
  transform: scale(1.04);
}

.product-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.qty-num {
  font-weight: 800;
  font-size: 1rem;
  min-width: 1.2rem;
  text-align: center;
}

/* Cart bar */
.cart-bar {
  position: sticky;
  bottom: 0;
  z-index: 500;
  background: var(--primary);
  padding: 0.9rem 2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  justify-content: center;
}

.cart-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.cart-bar-icon { font-size: 1.4rem; }

#cart-bar-text {
  color: var(--white);
  font-weight: 600;
  flex: 1;
}

.cart-bar-btn {
  white-space: nowrap;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
}

/* Cart modal */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 900;
  display: none;
}

.cart-modal {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: min(440px, 100vw);
  background: var(--white);
  z-index: 1000;
  display: none;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.cart-modal.open {
  display: flex;
  transform: translateX(0);
}

#checkout-modal {
  justify-content: center;
  align-items: stretch;
}

.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eee;
  background: var(--primary);
  color: var(--white);
}

.cart-modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.cart-close:hover { opacity: 1; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #eee;
}

.cart-item-emoji { font-size: 1.8rem; }

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-info strong { font-size: 0.95rem; color: var(--primary); }
.cart-item-info span  { font-size: 0.82rem; color: var(--gray); }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-item-sum {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 55px;
  text-align: right;
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-total {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.cart-note {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: #9aa0b4;
  text-align: center;
  padding: 2rem;
}

footer strong {
  color: var(--accent);
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews-section {
  background: var(--white);
  padding: 5rem 2rem;
  overflow: hidden;
}

.reviews-carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-viewport {
  flex: 1;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 0.75rem;
  box-sizing: border-box;
}


.review-card-inner {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(233,69,96,0.15);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }

.review-source {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.review-source-google {
  background: #f1f3f4;
  color: #444;
  border: 1px solid #ddd;
}

.review-source-autobutler {
  background: rgba(233,69,96,0.1);
  color: var(--accent);
  border: 1px solid rgba(233,69,96,0.25);
}

.review-text {
  font-style: italic;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

.review-author {
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--primary);
}

/* Arrows */
.reviews-arrow {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.reviews-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #dde;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.reviews-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 960px) {
  .review-card { flex: 0 0 50%; }
}
@media (max-width: 640px) {
  .review-card { flex: 0 0 100%; }
  .reviews-arrow { display: none; }
}

/* ===== HOME AI SECTION ===== */
.home-ai-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  padding: 4rem 2rem;
}

.home-ai-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.home-ai-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.home-ai-text p {
  color: #9aa0b4;
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-ai-input-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.home-ai-input-row input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.home-ai-input-row input::placeholder {
  color: rgba(255,255,255,0.32);
  font-size: 0.83rem;
}

.home-ai-input-row input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

.home-diagnos-btn {
  padding: 0.85rem 1.4rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.home-diagnos-btn:hover {
  background: #c73652;
  transform: translateY(-1px);
}

.home-diagnos-result {
  animation: fadeSlideIn 0.25s ease;
}

.home-diagnos-no-match {
  font-size: 0.85rem;
  color: #9aa0b4;
  padding: 0.6rem 0;
}

.home-diagnos-no-match a {
  color: var(--accent);
  text-decoration: none;
}

.home-diagnos-match {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(233,69,96,0.4);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-diagnos-match-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.home-diagnos-match-info span {
  font-size: 0.78rem;
  color: #9aa0b4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-diagnos-match-info strong {
  font-size: 1rem;
  color: var(--white);
}

.home-diagnos-accept {
  padding: 0.6rem 1.3rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.home-diagnos-accept:hover {
  background: #c73652;
  transform: translateY(-1px);
}

/* ===== PENDING BANNER ===== */
.pending-banner {
  background: rgba(233,69,96,0.1);
  border: 1px solid rgba(233,69,96,0.3);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.87rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.pending-banner strong { color: var(--accent); }

.pending-banner button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

/* ===== MESSAGE PAGE ===== */
.message-outer {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.msg-ai-widget {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(233,69,96,0.3);
}

.message-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.message-form-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.message-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.message-success h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.message-success p {
  color: var(--gray);
  line-height: 1.7;
}

/* ===== NAV: BOOK BUTTON ===== */
.nav-book-btn {
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.45rem 1.1rem !important;
  font-weight: 700 !important;
}

.nav-book-btn:hover {
  background: #c73652 !important;
  transform: translateY(-1px);
}

/* ===== BOOKING STEP 1: MULTI-SERVICE ===== */
.booking-step { display: block; }

.step1-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
  align-items: start;
}

.step1-picker {
  padding-right: 2.5rem;
  border-right: 1px solid #e5e7eb;
}

/* Add service button */
/* Bilstorlek selector */
.bilstorlek-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.bilstorlek-opt { cursor: pointer; }
.bilstorlek-opt input { display: none; }

.bilstorlek-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: var(--white);
  transition: var(--transition);
  text-align: center;
  gap: 0.2rem;
}

.bilstorlek-card strong { font-size: 0.88rem; color: var(--primary); display: block; }
.bilstorlek-card small  { font-size: 0.72rem; color: var(--gray); }

.bilstorlek-opt input:checked + .bilstorlek-card {
  border-color: var(--accent);
  background: rgba(233,69,96,0.06);
}

.bilstorlek-opt:hover .bilstorlek-card {
  border-color: var(--accent);
}

.add-service-btn {
  margin-top: 1.25rem;
  width: 100%;
  border-radius: 8px;
  font-size: 1rem;
}

.add-service-error {
  margin-top: 0.6rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ===== Kampanjstrip ===== */
.promo-strip {
  background: #0f1724;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  overflow: hidden;
  position: relative;
}

.promo-strip .promo-slide {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.6rem 1.5rem;
  animation: promoFadeIn 0.4s ease;
  flex-wrap: wrap;
  text-align: center;
}

.promo-strip .promo-slide.active { display: flex; }

@keyframes promoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.promo-strip-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(218,56,51,0.12);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.promo-strip-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.promo-strip-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

.promo-strip-price {
  font-size: 0.88rem;
  color: #9aa0b4;
  white-space: nowrap;
}

.promo-strip-price strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
}

.promo-strip-cta {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.promo-strip .promo-slide:hover .promo-strip-cta { opacity: 0.85; }

@media (max-width: 500px) {
  .promo-strip-sep { display: none; }
}

/* Service price box */
.service-price-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  flex-wrap: wrap;
}

.spb-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.spb-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 600;
}

.spb-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.spb-offert-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.spb-offert-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #555;
}

.spb-offert-sub {
  font-size: 0.78rem;
  color: #888;
  font-style: italic;
}

.spb-note {
  font-size: 0.8rem;
  color: #555;
  font-style: italic;
  line-height: 1.4;
  border-left: 2px solid var(--accent);
  padding-left: 0.7rem;
  max-width: 240px;
}

/* Cart (right side) */
.step1-cart {
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 80px;
}

.step1-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.step1-cart-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.cart-count-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Empty state */
.cart-empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 2px dashed #dde;
  border-radius: var(--radius);
  color: var(--gray);
}

.cart-empty-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.cart-empty-state p { font-size: 0.9rem; line-height: 1.6; }

/* Cart service items */
.cart-svc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.cart-svc-item:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(233,69,96,0.10);
}

.csvc-icon { font-size: 1.5rem; flex-shrink: 0; }

.csvc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.csvc-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
}

.csvc-name {
  font-size: 0.93rem;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.csvc-extras { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.15rem; }

.csvc-extra {
  font-size: 0.75rem;
  background: var(--light);
  color: var(--gray);
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
}

.csvc-actions { display: flex; gap: 0.35rem; flex-shrink: 0; }

.csvc-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.csvc-edit:hover { background: #fef3cd; border-color: #f59e0b; }
.csvc-del:hover  { background: #fee2e2; border-color: var(--accent); color: var(--accent); }

/* Cart footer */
.step1-cart-footer {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.step1-proceed-btn {
  width: 100%;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.9rem;
}

.step1-proceed-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

.step1-proceed-hint {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}

/* Services summary on step 2 */
.booking-services-summary {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  border: 1px solid #e5e7eb;
}

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

.bss-header h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
}

.bss-change-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

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

.bss-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.bss-icon { font-size: 1.2rem; }

.bss-info { display: flex; flex-direction: column; }
.bss-info strong { font-size: 0.9rem; color: var(--primary); }
.bss-info span   { font-size: 0.78rem; color: var(--gray); }

/* Step 2 action buttons */
.step2-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 50px;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 768px) {
  .step1-layout {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 3rem;
  }
  .step1-picker { padding-right: 0; border-right: none; border-bottom: 1px solid #e5e7eb; padding-bottom: 2rem; margin-bottom: 2rem; }
  .step1-cart   { padding-left: 0; position: static; }
  .step2-actions { flex-direction: column; }
  .step2-actions .btn-outline-dark { text-align: center; }
}

/* ===== BOOKING HERO ===== */
.booking-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 60%, #16213e 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.booking-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(233,69,96,0.10) 0%, transparent 60%);
}

.booking-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.booking-hero h1 span { color: var(--accent); }

.booking-hero p {
  color: #b0b8cc;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  position: relative;
}

/* ===== BOOKING OUTER LAYOUT ===== */
.booking-outer {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  max-width: 1050px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  align-items: start;
}

/* ===== LEFT INFO PANEL ===== */
.booking-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 90px;
}

.bip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.bip-icon {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.bip-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.bip-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

/* ===== RIGHT FORM PANEL ===== */
.booking-form-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

/* ===== AI DIAGNOS WIDGET ===== */
.diagnos-widget {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(233,69,96,0.3);
}

.diagnos-header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.diagnos-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.diagnos-header strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.diagnos-header p {
  color: #9aa0b4;
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

.diagnos-input-row {
  display: flex;
  gap: 0.6rem;
}

.diagnos-input-row input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.diagnos-input-row input::placeholder {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

.diagnos-input-row input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

.diagnos-btn {
  padding: 0.7rem 1.3rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.diagnos-btn:hover {
  background: #c73652;
}

.diagnos-result {
  margin-top: 0.9rem;
  animation: fadeSlideIn 0.25s ease;
}

.diagnos-no-match {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #b0b8cc;
}

.diagnos-no-match strong {
  color: var(--white);
}

.diagnos-match {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(233,69,96,0.4);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.diagnos-match-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.diagnos-match-cat,
.diagnos-match-svc {
  font-size: 0.85rem;
  color: #b0b8cc;
}

.diagnos-match-cat strong,
.diagnos-match-svc strong {
  color: var(--white);
}

.diagnos-match-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.diagnos-accept {
  padding: 0.45rem 1rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.diagnos-accept:hover {
  background: #c73652;
}

.diagnos-dismiss {
  padding: 0.45rem 0.9rem;
  background: transparent;
  color: #9aa0b4;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.83rem;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.diagnos-dismiss:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

/* ===== CATEGORY TABS ===== */
.cat-tabs-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.6rem;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.cat-btn {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 2px solid #e5e7eb;
  background: #fafafa;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cat-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(233,69,96,0.05);
}

.cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(233,69,96,0.35);
}

/* ===== BOOKING FORM ===== */
.booking-form {
  display: block;
}

/* ===== EXTRA (DYNAMIC) FIELDS ===== */
.extra-field {
  animation: fadeSlideIn 0.25s ease both;
}

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

.field-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* ===== TILLFÄLLE CARDS ===== */
.tillfalle-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tillfalle-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fafafa;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  transition: var(--transition);
}

.tillfalle-card:focus-within {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.08);
}

.tillfalle-optional {
  opacity: 0.75;
}

.tillfalle-optional:focus-within {
  opacity: 1;
}

.tillfalle-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1.65rem;
}

.tillfalle-badge.opt {
  background: #d1d5db;
  color: var(--primary);
}

.tillfalle-fields {
  flex: 1;
}

.opt-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
  margin-left: 0.3rem;
  text-transform: lowercase;
  letter-spacing: 0;
}

/* ===== PAYMENT NOTICE ===== */
.payment-notice {
  background: #f0f9f4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: #166534;
  margin-bottom: 1.2rem;
}

/* ===== REQ ASTERISK ===== */
.req {
  color: var(--accent);
  font-weight: 700;
}

/* ===== FIELD ERROR STATE ===== */
.field-error {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(233,69,96,0.15) !important;
  background: #fff5f6 !important;
}

/* ===== SUBMIT BUTTON ===== */
.booking-submit-btn {
  width: 100%;
  border-radius: 8px;
  font-size: 1rem;
  padding: 1rem;
  margin-top: 0.5rem;
}

/* ===== BOOKING DISCLAIMER ===== */
.booking-disclaimer {
  text-align: center;
  color: var(--gray);
  font-size: 0.82rem;
  margin-top: 0.75rem;
}

/* ===== BOOKING SUCCESS ===== */
.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.bs-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.booking-success h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.booking-success p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

.booking-success strong {
  color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .stat-item {
    padding: 1.2rem 1.5rem;
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-block.reverse {
    direction: ltr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .nav-links a {
    padding: 0.4rem 0.65rem;
    font-size: 0.88rem;
  }

  .home-ai-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-ai-input-row {
    flex-direction: column;
  }

  .message-outer {
    padding: 2rem 1.2rem 3rem;
  }

  .message-form-card {
    padding: 1.5rem;
  }

  .booking-outer {
    grid-template-columns: 1fr;
    padding: 2rem 1.2rem 3rem;
    gap: 1.5rem;
  }

  .booking-info-panel {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .bip-card {
    flex: 1 1 140px;
  }

  .booking-form-panel {
    padding: 1.5rem;
  }

  .category-tabs {
    gap: 0.4rem;
  }

  .cat-btn {
    font-size: 0.82rem;
    padding: 0.45rem 0.8rem;
  }
}

/* ===== SÄLJ DIN BIL ===== */
.sell-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a2540 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 3.5rem;
}

.sell-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.5rem 0 1rem; }
.sell-hero h1 span { color: var(--accent); }
.sell-hero p { color: #9aa0b4; max-width: 560px; margin: 0 auto; }

.sell-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.sell-form-wrap { width: 100%; }

.sell-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.sell-file-input {
  display: block;
  width: 100%;
  padding: 0.6rem;
  border: 1.5px dashed #ccc;
  border-radius: 8px;
  background: #fafafa;
  cursor: pointer;
  font-size: 0.88rem;
  color: #555;
}

.sell-file-input:hover { border-color: var(--accent); }

.sell-submit-btn {
  width: 100%;
  border-radius: 8px;
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .sell-section { padding: 2rem 1rem 3rem; }
}
