/* ================================
   STUDIO VANESSA — MAIN STYLESHEET
================================ */

:root {
  --sv-blue: #436b95;
  --sv-blue-dark: #365677;
  --sv-blue-button: #1a73b8;
  --sv-blue-button-hover: #155f9e;
  --sv-gold: #d4af37;

  --sv-announcement-bg: #ffffff;

  --sv-bg: #f8fbfd;
  --sv-white: #ffffff;
  --sv-light: #f9f9f9;
  --sv-border: #dddddd;
  --sv-text: #37474f;
  --sv-muted: #666666;

  --sv-radius: 10px;
  --sv-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --sv-max-width: 920px;
}

/* =========================
   Base
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--sv-bg);
  color: var(--sv-text);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  text-align: center;
  color: #000;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

h2 {
  font-size: 1.35rem;
  color: #000;
  font-weight: 600;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--sv-blue);
  text-decoration: none;
}

a:hover {
  color: var(--sv-blue-dark);
  text-decoration: underline;
}

ul {
  margin-top: 0;
  padding-left: 1.25rem;
}


.lesson-benefits-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 30px;
}

.lesson-benefits-hero {
  text-align: center;
  margin-bottom: 26px;
}

.lesson-benefits-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--sv-text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.lesson-benefits-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
}

.lesson-benefits-card,
.lesson-benefits-list-card {
  background: #fff;
  border: 1px solid #e6ecef;
  border-radius: var(--sv-radius);
  padding: 24px;
}

.lesson-benefits-card {
  text-align: left;
}

.lesson-benefits-card p {
  margin-bottom: 16px;
  line-height: 1.75;
}

.lesson-benefits-list-card {
  background: #f7f9fb;
}

.lesson-benefits-list-card h2 {
  color: var(--sv-blue-dark);
  font-size: 1.2rem;
  margin-bottom: 16px;
  text-align: center;
}

.lesson-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.lesson-benefits-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.55;
}

.lesson-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4f8f55;
  font-weight: 700;
}

.lesson-benefits-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.lesson-benefits-actions .start-button {
  margin: 0;
  padding: 13px 22px;
  font-size: 0.88rem;
}

.lesson-benefits-actions .lesson-secondary-button {
  background: #e6ecef;
  border-color: #d3dbe0;
  color: #2f3e46 !important;
}

.lesson-benefits-actions .lesson-secondary-button:hover {
  background: #dce3e7;
  color: #2f3e46 !important;
}

@media (max-width: 800px) {
  .lesson-benefits-page {
    padding: 24px 18px;
  }

  .lesson-benefits-grid {
    grid-template-columns: 1fr;
  }

  .lesson-benefits-hero {
    text-align: left;
  }

  .lesson-benefits-actions {
    flex-direction: column;
  }

  .lesson-benefits-actions .start-button {
    width: 100%;
    text-align: center;
  }
}

.offer-page-intro {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.offer-page-intro p {
  color: var(--sv-text);
  line-height: 1.7;
}

.offer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px auto 0;
  max-width: 820px;
}

.offer-action-card {
  padding: 22px;
  border: 1px solid #e6ecef;
  border-radius: var(--sv-radius);
  background: #f7f9fb;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* 🔥 align to TOP instead of center */
}

.offer-action-card.shop-card {
  background: #fffaf0;
  border-color: #eadca3;
}

.offer-action-card h2 {
  color: var(--sv-blue-dark);
  margin-bottom: 10px;
}

.offer-action-card p {
  margin-bottom: 12px;
}

.offer-section {
  margin-top: 34px;
}

.offer-section-heading {
  max-width: 680px;
  margin: 0 auto 20px;
  text-align: center;
}

.offer-section-heading h2 {
  color: var(--sv-blue-dark);
  margin-bottom: 8px;
}

.offer-section-heading p {
  color: var(--sv-text);
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e6ecef;
  border-radius: var(--sv-radius);
  text-align: center;
}

.offer-badge {
  align-self: center;
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef3f6;
  color: var(--sv-blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.offer-card h3 {
  color: var(--sv-blue-dark);
  margin-bottom: 10px;
}

.offer-card p {
  color: var(--sv-text);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.offer-card-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
  align-items: center;
}

.offer-button {
  display: inline-block;
  min-width: 165px;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--sv-blue);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.15s ease;
}

.offer-button:hover {
  background: var(--sv-blue-dark);
  transform: translateY(-1px);
}

.offer-card-secondary-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  font-size: 0.88rem;
}

.offer-card-secondary-links a {
  color: var(--sv-blue-dark);
  font-weight: 500;
  text-decoration: none;
}

.offer-card-secondary-links a:hover {
  text-decoration: underline;
}

.shop-button {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--sv-gold);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
}

.shop-button:hover {
  background: #c79f2f;
  color: #000 !important;
}

.shop-subtext,
.lesson-note {
  font-size: 0.9rem;
  color: var(--sv-muted);
}

@media (max-width: 800px) {
  .offer-actions {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-button {
    width: 100%;
  }
}


.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.payment-option-card {
  padding: 22px;
  border: 1px solid #e6ecef;
  border-radius: var(--sv-radius);
  background: #f7f9fb;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.payment-option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.payment-option-card h2 {
  color: var(--sv-blue-dark);
  margin-bottom: 14px;
}

.payment-option-card p {
  margin-bottom: 14px;
}

.payment-email {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #d9e2e8;
  border-radius: 8px;
  font-weight: 600;
  color: var(--sv-blue-dark);
  margin: 0 auto 14px;
  display: inline-block;
}

.payment-option-card .start-button {
  display: inline-block;
  margin-top: 14px;
}

.payment-option-card img {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 18px auto 0;
}

@media (max-width: 800px) {
  .payment-options {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Announcement Bar
========================= */

.sv-announcement-container {
  background: #ffffff;
  border-bottom: 1px solid var(--sv-border);
  color: var(--sv-blue-dark);
  text-align: center;
  cursor: pointer;
  width: 100%;
  position: relative;
  z-index: 9999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.sv-bar-summary {
  padding: 14px 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sv-news-badge {
  display: inline-block;
  background: var(--sv-blue);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-right: 8px;
  letter-spacing: 0.03em;
}

.sv-chevron {
  display: none;
}

.sv-bar-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: #fff;
  color: var(--sv-text);
  border-top: 1px solid var(--sv-border);
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.sv-announcement-container.is-open .sv-bar-details {
  max-height: 1000px;
  opacity: 1;
  padding: 28px 15px;
}

.sv-bar-inner {
  max-width: 850px;
  margin: 0 auto;
}

.sv-bar-title {
  color: var(--sv-blue-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.sv-bar-actions {
  margin-top: 18px;
}

/* =========================
   Shared Buttons
========================= */

.sv-cta-link {
  display: inline-block;
  padding: 10px 18px;
  background: #e6ecef;
  color: #2f3e46 !important;
  border-radius: 6px;
  margin: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid #d3dbe0;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.sv-cta-link:hover {
  background: #dce3e7;
  border-color: #c6d0d6;
  color: #2f3e46 !important;
  transform: none;
  box-shadow: none;
  text-decoration: none;
}

.sv-cta-secondary {
  background: var(--sv-gold) !important;
  color: #111 !important;
  border: none;
}

.start-button {
  display: inline-block;
  padding: 16px 30px;
  background: var(--sv-blue);
  color: #fff !important;
  border-radius: 10px;
  margin: 14px 0;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--sv-blue-dark);
  transition: all 0.2s ease;
}

.start-button:hover {
  background: var(--sv-blue-dark);
  color: #fff !important;
  border-color: var(--sv-blue-dark);
  transform: translateY(-1px);
  text-decoration: none;
}

.start-button:active {
  transform: translateY(0);
}

/* =========================
   Header
========================= */

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #fff;
}

.logo {
  max-width: 300px;
  width: 100%;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   Navigation
========================= */

.nav-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.menu-button {
  display: none;
  width: 100%;
  padding: 12px 18px;
  background: var(--sv-blue);
  color: #fff;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  text-align: left;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: var(--sv-blue);
  gap: 10px;
  padding: 12px;
}

.navbar-item,
.navbar a {
  color: #fff;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.navbar-item:hover,
.navbar a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.navbar-active {
  background: rgba(255, 255, 255, 0.18);
}

.navbar-shop-item {
  background: var(--sv-gold) !important;
  color: #000 !important;
  font-weight: 600 !important;
  border-radius: 999px;
}

.navbar-lang-item {
  font-weight: 600 !important;
  border-radius: 999px;
  cursor: pointer;
}

/* =========================
   Main Layout
========================= */

.main-wrapper {
  max-width: var(--sv-max-width);
  margin: 0 auto;
  padding: 20px 0;
}

.general-wrapper {
  background: #fff;
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius);
  overflow: hidden;
}

/* =========================
   Confirmation Pages
========================= */

.confirmation-box {
  text-align: center;
  padding: 30px 20px;
}

.confirmation-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sv-blue-dark);
  margin-bottom: 12px;
}

.confirmation-text {
  font-size: 0.95rem;
  color: var(--sv-text);
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.confirmation-button {
  margin-top: 10px;
}

/* =========================
   Forms
========================= */

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 18px;
  text-align: left;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--sv-blue-dark);
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d9e2e8;
  border-radius: 10px;
  background: #fdfefe;
  color: var(--sv-text);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #7fa6c4;
  background: #fff;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.required-mark {
  color: #b94a48;
  margin-left: 2px;
}

.optional-text {
  color: var(--sv-muted);
  font-size: 0.85rem;
}

.contact-submit-row {
  margin-top: 10px;
}

.contact-submit-row .start-button {
  width: 100%;
}

.error-message {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fdeeee;
  border: 1px solid #efc0c0;
  color: #b94a48;
  text-align: center;
  font-size: 0.95rem;
}

.form-error-message {
  display: none;
  color: #b94a48;
  font-size: 0.85rem;
  margin-top: 6px;
  text-align: left;
}

/* =========================
   Register Page
========================= */

.registration-flow {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.registration-summary-card,
.contact-form.registration-form {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0 0 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6ecef;
  border-radius: var(--sv-radius);
}
.registration-summary-card {
  background: #f7f9fb;
  border: 1px solid #d9e2e8;
  box-shadow: var(--sv-shadow);
}

.registration-summary-card h2 {
  color: var(--sv-blue-dark);
}


.registration-summary-intro {
  max-width: 640px;
  margin: 18px auto 22px;
  text-align: center;
}

.registration-summary-card h2,
.registration-form-section h2 {
  text-align: center;
  margin-bottom: 18px;
  color: var(--sv-blue-dark);
}

.registration-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.registration-summary-item {
  text-align: left;
}

.registration-summary-item.full {
  grid-column: 1 / -1;
}

.registration-summary-label {
  display: block;
  color: var(--sv-blue-dark);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.registration-summary-value {
  color: var(--sv-text);
}

.registration-form-section {
  margin-top: 26px;
}

.form-field .register-agreement-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}

.form-field .register-agreement-label input[type="checkbox"] {
  width: auto !important;
  min-width: 16px;
  height: 16px;
  margin: 4px 0 0;
  padding: 0;
  flex: 0 0 auto;
}

.form-field .register-agreement-label span {
  display: inline-block;
  flex: 1;
  line-height: 1.45;
}

.register-note {
  margin: 18px 0 22px;
  padding: 14px 16px;
  background: #f4f7fa;
  border-left: 3px solid #7fa6c4;
  border-radius: 8px;
  color: #4a5f6e;
  font-size: 0.95rem;
}

/* =========================
   Benefits Page
========================= */

.benefits-intro {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-description {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: left;
}

.benefits-description p {
  margin-bottom: 16px;
}

.benefits-list {
  max-width: 560px;
  margin: 0 auto;
  padding-left: 22px;
  text-align: left;
}

.benefits-list li {
  margin-bottom: 10px;
}

.benefits-actions {
  margin-top: 22px;
}

/* =========================
   Policy / Agreement Pages
========================= */

.policy-content {
  padding: 30px;
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--sv-blue-dark);
}

.policy-content h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--sv-text);
  font-size: 1.05rem;
}

.policy-content p {
  margin-bottom: 16px;
}

.policy-content ul {
  margin-bottom: 18px;
  padding-left: 22px;
}

.policy-content li {
  margin-bottom: 8px;
}

/* =========================
   Availability Page
========================= */

.availability-results {
  max-width: var(--sv-max-width);
  width: 100%;
  margin: 0 auto;
}

.capacity-container,
.filter-content,
.availability-course-card {
  background: #fff;
  border: 1px solid #e6ecef;
  border-radius: var(--sv-radius);
  overflow: hidden;
}

.capacity-container {
  padding: 22px;
  margin-bottom: 22px;
  text-align: center;
}

.capacity-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.capacity-circles {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.circle {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  text-align: center;
  background: #5f82a3;
  color: #fff;
}

.circle-openings {
  background: #73b778;
}

.circle-number {
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
}

.circle-label {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 6px;
  opacity: 0.95;
}

.capacity-progress {
  width: 100%;
  max-width: 620px;
}

.progress-text {
  font-weight: 500;
  color: #4a647d;
  margin-bottom: 8px;
}

.progress-track {
  height: 20px;
  background: #eef3f6;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #6f93b6;
  border-radius: 999px;
  transition: width 800ms ease;
}

.capacity-instruction {
  margin-top: 16px;
  padding: 14px 16px;
  background: #f4f7fa;
  border-left: 3px solid #7fa6c4;
  border-radius: 8px;
  color: #4a5f6e;
  font-size: 0.95rem;
}

.controls-wrapper {
  max-width: var(--sv-max-width);
  margin: 0 auto 16px;
}

.controls-container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.action-pill,
.blue-button,
.share-button,
.join-waitlist-btn,
.filter-toggle-btn,
#resetFilters {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #5f82a3;
  background: #5f82a3;
  color: #fff !important;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.action-pill:hover,
.blue-button:hover,
.share-button:hover,
.join-waitlist-btn:hover,
.filter-toggle-btn:hover {
  background: #4f708e;
  color: #fff !important;
  transform: translateY(-1px);
  text-decoration: none;
}

#resetFilters {
  grid-column: 1 / -1;
  width: 100%;
  background: #e6ecef;
  color: #2f3e46 !important;
  border-color: #d3dbe0;
}

#resetFilters:hover {
  background: #dce3e7;
  color: #2f3e46 !important;
}

.filter-content {
  display: none;
  padding: 18px;
  margin-bottom: 22px;
}

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

.availability-filter-section-availability {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
}

.availability-filter-group {
  text-align: center;
}

.availability-filter-group label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  color: #4a5f6e;
  margin-bottom: 8px;
}

.availability-step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #7fa6c4;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-weight: 600;
}

.availability-filter-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #fff;
  color: #3e5563;
  font-size: 1rem;
}

.availability-course-card {
  margin-bottom: 18px;
}

.course-header,
.course-footer {
  background: #f7f9fb;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.course-header {
  border-bottom: 1px solid #e6ecef;
}

.course-footer {
  border-top: 1px solid #e6ecef;
}

.course-body {
  padding: 18px;
}

.availability-instructor-section a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #3e5563;
  text-decoration: none;
}

.availability-instructor-section a:hover {
  color: var(--sv-blue);
  text-decoration: none;
}

.availability-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-fallback {
  background: #5f82a3;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.skills-list {
  margin-bottom: 12px;
}

.skills-list span {
  display: inline-block;
  background: #eef3f6;
  color: #4a5f6e;
  padding: 4px 10px;
  margin: 0 4px 8px 0;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 400;
}

.description {
  text-align: center;
  line-height: 1.7;
  color: #4a5f6e;
}

.schedule {
  margin-top: 12px;
  text-align: center;
  color: #6a7f8d;
  font-weight: 400;
}

.price {
  color: #4f8f55;
  font-weight: 500;
}

.full-notice {
  color: #b94a48;
  font-weight: 500;
}

.button-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-options {
  display: none;
  position: absolute;
  right: 0;
  bottom: 110%;
  min-width: 150px;
  background: #fff;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  overflow: hidden;
  z-index: 20;
}

.share-options.show {
  display: flex;
  flex-direction: column;
}

.share-option-link {
  padding: 9px 12px;
  color: var(--sv-text);
  background: #fff;
  border: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.share-option-link:hover {
  background: var(--sv-light);
  text-decoration: none;
}

.availability-options-message-positive,
.availability-options-message-zero {
  padding: 16px;
  margin: 0 0 18px;
  border-radius: var(--sv-radius);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

.availability-options-message-positive {
  background: #eef8f0;
  border: 1px solid #b8dfbd;
  color: #4f8f55;
}

.availability-options-message-zero {
  background: #fdeeee;
  border: 1px solid #efc0c0;
  color: #b94a48;
}

.hidden,
#optionsMessage.hidden {
  display: none !important;
}

/* =========================
   Homepage
========================= */

.index-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  padding: 20px;
}

.index-left img,
.home-image {
  width: 100%;
  display: block;
  height: auto;
  border-radius: var(--sv-radius);
  margin-bottom: 18px;
}

.index-right {
  padding-right: 2rem;
}

.home-action-box {
  padding: 18px;
  background: var(--sv-light);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow);
}

.home-action-box h2 {
  margin-bottom: 8px;
}

.home-action-box p {
  margin-bottom: 12px;
}

.shop-links {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.shop-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--sv-blue-dark);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--sv-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-links a:hover {
  background: var(--sv-blue);
  color: #fff;
  border-color: var(--sv-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 107, 149, 0.25);
  text-decoration: none;
}

.highlight-box {
  background: linear-gradient(135deg, #e3f2fd, #fff);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--sv-border);
}

.highlight-box h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
}

.reviews-box {
  margin: 35px 20px 20px;
  padding: 22px;
  background: var(--sv-light);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow);
}

.reviews-rating {
  font-weight: 600;
  margin-bottom: 12px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.review {
  padding: 16px;
  background: #fff;
  border-radius: var(--sv-radius);
  border: 1px solid #e5e5e5;
}

.review p {
  margin-bottom: 10px;
}

.review-source {
  display: block;
  font-size: 0.9em;
  color: var(--sv-muted);
}

.reviews-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
}

/* =========================
   Instructor Cards
========================= */

.instructor {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  margin: 0;
}

.instructor-avatar-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin: 20px;
  border: 3px solid #f1f4f6;
}

.instructor-details {
  flex: 1;
  padding: 20px;
  padding-bottom: 0;
  box-sizing: border-box;
}

.instructor-details h2 {
  margin-bottom: 4px;
  padding-top: 0;
}

.instructor-title {
  font-weight: 600;
  color: var(--sv-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.instructor-skills {
  background-color: #f5f5f5;
  padding: 8px 12px;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 16px;
  border-left: 4px solid var(--sv-blue);
  color: var(--sv-text);
}

.instructor-details p {
  margin-bottom: 16px;
}

.instructor-details ul {
  margin-bottom: 18px;
}

.instructor-details b {
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 6px;
}

/* =========================
   Footer
========================= */

.footer-container {
  background: #f5f5f5;
  border-top: 1px solid var(--sv-border);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-section {
  flex: 1 1 160px;
}

.footer-section h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section a {
  color: var(--sv-text);
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--sv-muted);
}

.footer-address {
  margin: 0 0 12px;
  line-height: 1.6;
}

.footer-hours-toggle {
  font-size: 0.95em;
}

.footer-hours-toggle summary {
  cursor: pointer;
  list-style: none;
}

.footer-hours-toggle summary::-webkit-details-marker {
  display: none;
}

.footer-hours-toggle .toggle-label::before {
  content: "+ ";
}

.footer-hours-toggle[open] .toggle-label::before {
  content: "− ";
}

.footer-hours-content {
  margin-top: 12px;
}

.footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

.footer-hours-note {
  font-size: 0.75em;
  font-style: italic;
  margin-top: 10px;
  color: #666;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons img {
  width: 32px;
  height: 32px;
}

/* =========================
   Google Translate Hide
========================= */

#google_translate_element,
.skiptranslate,
.goog-te-banner-frame,
.goog-te-gadget span {
  display: none !important;
}

body {
  top: 0 !important;
}
/* =========================
   Mobile
========================= */

@media (max-width: 800px) {
  body {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .nav-container {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  }

  .menu-button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    background: var(--sv-blue);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
  }

  .menu-icon {
    font-size: 1.4rem;
    line-height: 1;
  }

  .menu-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    width: auto;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--sv-border);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .navbar.show {
    display: flex;
  }

  .navbar-item,
  .navbar a {
    width: 100%;
    margin: 0;
    padding: 13px 16px;
    background: #eaf2f8;
    color: var(--sv-blue-dark);
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .navbar-item:hover,
  .navbar a:hover {
    background: var(--sv-blue);
    color: #fff;
    transform: none;
  }

  .navbar-active {
    background: var(--sv-blue);
    color: #fff;
  }

  .navbar-shop-item {
    background: var(--sv-gold) !important;
    color: #000 !important;
  }

  .main-wrapper {
    padding: 20px 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  .policy-content {
    padding: 22px 18px;
  }

  .registration-flow {
    padding: 0 15px;
  }

  .registration-summary-grid {
    grid-template-columns: 1fr;
  }

  .registration-summary-intro {
    text-align: center;
    padding: 0 14px;
    margin: 18px auto 22px;
  }

  .contact-submit-row .start-button {
    width: 100%;
    text-align: center;
  }

  .capacity-container {
    padding: 18px;
  }

  .circle {
    width: 96px;
    height: 96px;
  }

  .circle-number {
    font-size: 1.45rem;
  }

  .controls-container,
  .course-header,
  .course-footer,
  .button-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

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

  .action-pill,
  .blue-button,
  .share-button,
  .join-waitlist-btn,
  .filter-toggle-btn,
  #resetFilters {
    width: 100%;
  }

  .description,
  .schedule {
    text-align: left;
  }

  .share-options {
    position: static;
    margin-top: 8px;
  }

  .index-split {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px;
  }

  .index-right {
    padding: 18px;
    background: var(--sv-light);
    border-radius: var(--sv-radius);
    box-shadow: var(--sv-shadow);
    margin-top: 20px;
  }

  .instructor {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0 15px;
  }

  .instructor-avatar-image {
    width: 140px;
    height: 140px;
    margin: 20px 0 10px 0;
  }

  .instructor-details {
    width: 100%;
    padding: 20px;
    text-align: left;
  }

  .instructor-skills {
    margin-top: 20px;
    margin-bottom: 20px;
    border-left-width: 3px;
  }

  .highlight-box {
    padding: 2rem 1.25rem;
  }

  .highlight-box h2 {
    font-size: 1.5rem;
  }

  .start-button {
    width: 100%;
    text-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-box {
    margin: 25px 0 20px;
  }

  .footer-container {
    padding: 20px;
    flex-direction: column;
  }

  .footer-section {
    width: 100%;
  }

  .footer-section h2 {
    text-align: left;
  }
}