/* ================================================================
   A&W Menu Magic — WordPress Plugin Stylesheet
   Converts all Tailwind classes to vanilla CSS
   Brand: orange=#FF6B00  brown=#5C2E0A  cream=#FFF5E6
   ================================================================ */

/* ── Reset & Base ────────────────────────────────────────────── */
.aw-menu-page *,
.aw-menu-page *::before,
.aw-menu-page *::after {
  box-sizing: border-box;
}

/* Plugin wrapper resets */
.aw-wrap {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  background: #fff;
}

/* ── CSS Custom Properties ───────────────────────────────────── */
:root {
  --aw-orange:  #FF6B00;
  --aw-brown:   #5C2E0A;
  --aw-cream:   #FFF5E6;
  --aw-white:   #FFFFFF;
  --aw-gray:    #6B7280;
  --aw-gray-50: #F9FAFB;
  --aw-shadow:  0 4px 16px rgba(0,0,0,0.08);
  --aw-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --aw-radius:  0.5rem;
  --aw-radius-lg: 1rem;
  --aw-transition: all 0.3s ease;
}

/* ── Container ───────────────────────────────────────────────── */
.aw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .aw-container { padding: 0 1.5rem; }
}

/* ── Header ──────────────────────────────────────────────────── */
.aw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.aw-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.aw-header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.aw-logo-circle {
  width: 3rem;
  height: 3rem;
  background: var(--aw-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aw-logo-circle span {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.aw-logo-circle--sm {
  width: 2.5rem;
  height: 2.5rem;
}
.aw-logo-circle--sm span { font-size: 1rem; }
.aw-header__brand {
  color: var(--aw-brown);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: none;
}
@media (min-width: 576px) { .aw-header__brand { display: block; } }

/* Nav */
.aw-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .aw-nav { display: flex; } }
.aw-nav__link {
  font-weight: 500;
  color: var(--aw-brown);
  text-decoration: none;
  transition: var(--aw-transition);
}
.aw-nav__link:hover { color: var(--aw-orange); }

/* Mobile toggle */
.aw-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) { .aw-mobile-toggle { display: none; } }
.aw-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--aw-brown);
  border-radius: 2px;
  transition: var(--aw-transition);
}

/* Mobile Nav (shown via JS) */
.aw-nav--mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}
.aw-nav--mobile .aw-nav__link {
  display: block;
  padding: 0.5rem 0;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.aw-btn-primary {
  display: inline-block;
  background: var(--aw-orange);
  color: #fff !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--aw-radius);
  text-decoration: none;
  transition: var(--aw-transition);
  border: none;
  cursor: pointer;
}
.aw-btn-primary:hover {
  background: var(--aw-brown);
  color: #fff !important;
  transform: translateY(-1px);
}
.aw-btn-secondary {
  display: inline-block;
  border: 2px solid var(--aw-brown);
  color: var(--aw-brown) !important;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--aw-radius);
  text-decoration: none;
  transition: var(--aw-transition);
}
.aw-btn-secondary:hover {
  background: var(--aw-brown);
  color: #fff !important;
}

/* ── Hero / Banners ──────────────────────────────────────────── */
.aw-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.aw-hero--sm { height: 300px; }
.aw-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.aw-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 46, 10, 0.60);
  z-index: 1;
}
.aw-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.aw-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}
@media (min-width: 768px) { .aw-hero h1 { font-size: 3.25rem; } }
.aw-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* ── Section Layouts ─────────────────────────────────────────── */
.aw-section { padding: 4rem 0; }
.aw-section--cream  { background: var(--aw-cream); }
.aw-section--white  { background: #fff; }
.aw-section--brown  { background: var(--aw-brown); }
.aw-section--orange { background: var(--aw-orange); }

.aw-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--aw-brown);
  text-align: center;
  margin: 0 0 0.5rem;
}
.aw-section__subtitle {
  text-align: center;
  color: var(--aw-gray);
  margin: 0 0 2.5rem;
}

/* ── Grid Utilities ──────────────────────────────────────────── */
.aw-grid-2 { display: grid; gap: 1.5rem; }
.aw-grid-3 { display: grid; gap: 1.5rem; }
.aw-grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) {
  .aw-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .aw-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .aw-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .aw-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .aw-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flex row */
.aw-flex-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .aw-flex-row { flex-direction: row; }
  .aw-flex-row > * { flex: 1; }
}

/* ── Cards ───────────────────────────────────────────────────── */
.aw-card {
  background: #fff;
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow);
  overflow: hidden;
  transition: var(--aw-transition);
}
.aw-card:hover { box-shadow: var(--aw-shadow-lg); transform: translateY(-2px); }
.aw-card__image { height: 12rem; overflow: hidden; }
.aw-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.aw-card:hover .aw-card__image img { transform: scale(1.05); }
.aw-card__body { padding: 1.25rem; }
.aw-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--aw-brown);
  margin: 0 0 0.5rem;
}
.aw-card__desc { color: var(--aw-gray); font-size: 0.875rem; margin: 0 0 1rem; }
.aw-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Menu Card (same as card but full) */
.aw-menu-card {
  background: #fff;
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow);
  overflow: hidden;
  transition: var(--aw-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.aw-menu-card:hover { box-shadow: var(--aw-shadow-lg); transform: translateY(-2px); }
.aw-menu-card__image { height: 12rem; overflow: hidden; }
.aw-menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.aw-menu-card:hover .aw-menu-card__image img { transform: scale(1.05); }
.aw-menu-card__body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.aw-menu-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--aw-brown);
  margin: 0 0 0.5rem;
}
.aw-menu-card__desc { color: var(--aw-gray); font-size: 0.875rem; margin: 0 0 0.75rem; flex: 1; }
.aw-menu-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

/* Category card (menus listing) */
.aw-cat-card {
  display: flex;
  background: var(--aw-cream);
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow);
  overflow: hidden;
  height: 16rem;
  text-decoration: none;
  transition: var(--aw-transition);
}
.aw-cat-card:hover { box-shadow: var(--aw-shadow-lg); transform: translateY(-2px); }
.aw-cat-card__image {
  width: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.aw-cat-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.aw-cat-card:hover .aw-cat-card__image img { transform: scale(1.05); }
.aw-cat-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
.aw-cat-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--aw-brown);
  margin: 0 0 0.5rem;
}
.aw-cat-card__desc { color: var(--aw-gray); font-size: 0.875rem; margin: 0 0 1rem; }
.aw-cat-card__cta { color: var(--aw-orange); font-weight: 600; transition: var(--aw-transition); }
.aw-cat-card:hover .aw-cat-card__cta { color: var(--aw-brown); }

/* ── Price Tag ───────────────────────────────────────────────── */
.aw-price-tag {
  background: var(--aw-orange);
  color: #fff;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

/* ── Link Orange ─────────────────────────────────────────────── */
.aw-link-orange {
  color: var(--aw-orange);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--aw-transition);
}
.aw-link-orange:hover { color: var(--aw-brown); }

/* ── Carousel ────────────────────────────────────────────────── */
.aw-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.aw-carousel__track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 1rem;
}
.aw-carousel__slide {
  flex: 0 0 calc(100% - 1rem);
  min-width: 0;
}
@media (min-width: 640px) {
  .aw-carousel__slide { flex: 0 0 calc(50% - 0.75rem); }
}
@media (min-width: 1024px) {
  .aw-carousel__slide { flex: 0 0 calc(33.333% - 0.75rem); }
}
.aw-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--aw-shadow);
  z-index: 10;
  font-size: 1.25rem;
  color: var(--aw-brown);
  transition: var(--aw-transition);
}
.aw-carousel__btn:hover { background: var(--aw-orange); color: #fff; }
.aw-carousel__prev { left: -1.25rem; }
.aw-carousel__next { right: -1.25rem; }
@media (max-width: 640px) {
  .aw-carousel__btn { display: none; }
}

/* ── Tables ──────────────────────────────────────────────────── */
.aw-table-wrap {
  overflow-x: auto;
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow);
}
.aw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.aw-table thead { background: var(--aw-brown); }
.aw-table thead th {
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 0.875rem 1rem;
}
.aw-table tbody tr:nth-child(even) { background: var(--aw-gray-50); }
.aw-table tbody tr { transition: background 0.2s ease; }
.aw-table tbody tr:hover { background: rgba(255, 107, 0, 0.12); }
.aw-table td { padding: 0.75rem 1rem; color: #374151; }
.aw-table--striped-orange thead { background: rgba(255,107,0,0.15); }
.aw-table--striped-orange thead th { color: var(--aw-brown); }
.aw-table__cat-row td {
  background: rgba(255,107,0,0.2);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--aw-brown);
  padding: 0.625rem 1rem;
}
.aw-table td a {
  color: var(--aw-orange);
  text-decoration: none;
  font-weight: 500;
}
.aw-table td a:hover { color: var(--aw-brown); }

/* ── Hours section ───────────────────────────────────────────── */
.aw-hours-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .aw-hours-grid { grid-template-columns: 1fr 1fr; }
}
.aw-hours__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--aw-brown);
  margin-bottom: 1rem;
}
.aw-hours__icon { color: var(--aw-orange); font-size: 1.5rem; }

/* ── Review Cards ────────────────────────────────────────────── */
.aw-review {
  background: #fff;
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow);
  padding: 1.5rem;
}
.aw-review__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.aw-review__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.aw-review__avatar {
  width: 2rem;
  height: 2rem;
  background: var(--aw-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}
.aw-review__name { font-weight: 600; }
.aw-review__stars { color: var(--aw-orange); font-size: 1rem; letter-spacing: 1px; }
.aw-review__text { color: var(--aw-gray); font-style: italic; margin: 0 0 0.5rem; }
.aw-review__date { color: #9CA3AF; font-size: 0.8125rem; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.aw-faq {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.aw-faq__item {
  background: #fff;
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow);
  padding: 1.5rem;
}
.aw-faq__q {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--aw-brown);
  margin: 0 0 0.75rem;
}
.aw-faq__a { color: var(--aw-gray); margin: 0; }

/* ── Combo Cards ─────────────────────────────────────────────── */
.aw-combo {
  background: #fff;
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow);
  padding: 1.5rem;
  transition: var(--aw-transition);
}
.aw-combo:hover { box-shadow: var(--aw-shadow-lg); }
.aw-combo__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--aw-brown);
  margin: 0 0 0.5rem;
}
.aw-combo__includes { color: var(--aw-gray); font-size: 0.875rem; margin: 0 0 1rem; }
.aw-combo__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aw-combo__price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--aw-orange);
}
.aw-combo__order {
  background: var(--aw-brown);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: var(--aw-transition);
}
.aw-combo__order:hover { background: var(--aw-orange); color: #fff; }

/* ── Rewards Section ─────────────────────────────────────────── */
.aw-rewards-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.aw-rewards-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.aw-step-num {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--aw-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Image Frame ─────────────────────────────────────────────── */
.aw-img-frame {
  padding: 4px;
  background: linear-gradient(135deg, var(--aw-brown), var(--aw-orange));
  border-radius: var(--aw-radius-lg);
  box-shadow: var(--aw-shadow-lg);
}
.aw-img-frame__inner {
  background: #fff;
  border-radius: calc(var(--aw-radius-lg) - 3px);
  padding: 4px;
  border-radius: inherit;
}
.aw-img-frame img {
  width: 100%;
  border-radius: calc(var(--aw-radius-lg) - 5px);
  display: block;
}

/* ── Badge ───────────────────────────────────────────────────── */
.aw-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--aw-orange);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--aw-radius);
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  box-shadow: var(--aw-shadow);
  transform: rotate(12deg);
}

/* ── Nutrition Boxes ─────────────────────────────────────────── */
.aw-info-box {
  background: var(--aw-cream);
  border-radius: var(--aw-radius);
  padding: 1.5rem;
}
.aw-info-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--aw-brown);
  margin: 0 0 0.75rem;
}
.aw-info-box p { color: var(--aw-gray); margin: 0 0 1rem; }
.aw-info-box a { color: var(--aw-orange); font-weight: 600; text-decoration: none; }
.aw-info-box a:hover { color: var(--aw-brown); }

/* ── Customer Service Cards ──────────────────────────────────── */
.aw-service-card {
  background: #fff;
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.aw-service-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.aw-service-card__icon { color: var(--aw-orange); font-size: 1.25rem; }
.aw-service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--aw-brown);
  margin: 0;
}
.aw-service-card__subtitle { color: var(--aw-gray); font-size: 0.875rem; margin-bottom: 1rem; }
.aw-service-card__body { color: var(--aw-gray); flex: 1; }
.aw-service-card__body strong { color: var(--aw-brown); }
.aw-service-card__body ul { padding-left: 1.25rem; margin: 0.5rem 0; }
.aw-service-card__footer { margin-top: 1rem; text-align: center; }

/* ── Social Links ────────────────────────────────────────────── */
.aw-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.aw-social-link {
  background: #fff;
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--aw-orange);
  transition: var(--aw-transition);
}
.aw-social-link:hover { box-shadow: var(--aw-shadow-lg); transform: translateY(-2px); color: var(--aw-brown); }

/* ── Hero Banners (detail page) ──────────────────────────────── */
.aw-item-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .aw-item-detail { flex-direction: row; }
  .aw-item-detail > * { flex: 1; }
}
.aw-item-detail__image {
  background: #fff;
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow-lg);
  overflow: hidden;
}
.aw-item-detail__image img { width: 100%; display: block; }
.aw-item-detail__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--aw-brown);
  margin: 0 0 0.75rem;
}
.aw-item-detail__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.aw-item-detail__cal { color: var(--aw-gray); }
.aw-item-detail__desc { color: #374151; margin-bottom: 1.5rem; }
.aw-allergen-box {
  background: var(--aw-cream);
  border-radius: var(--aw-radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.aw-allergen-box h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--aw-brown);
  margin: 0 0 0.5rem;
}
.aw-allergen-box p { color: var(--aw-gray); margin: 0; }
.aw-item-detail__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.aw-breadcrumb {
  background: var(--aw-cream);
  padding: 1rem 0;
}
.aw-breadcrumb a { color: #374151; text-decoration: none; font-size: 0.875rem; }
.aw-breadcrumb a:hover { color: var(--aw-orange); }
.aw-breadcrumb span { color: var(--aw-orange); font-size: 0.875rem; }

/* ── Inline text highlight ───────────────────────────────────── */
.aw-highlight { color: var(--aw-orange); font-weight: 600; }
.aw-highlight--brown { color: var(--aw-brown); }

/* ── CTA Section ─────────────────────────────────────────────── */
.aw-cta {
  text-align: center;
}
.aw-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin: 0 0 1rem;
}
.aw-cta p { color: rgba(255,255,255,0.9); max-width: 42rem; margin: 0 auto 1.5rem; }
.aw-cta__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────── */
.aw-footer {
  background: var(--aw-brown);
  color: #fff;
  padding: 3rem 0 1.5rem;
}
.aw-footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .aw-footer__grid { grid-template-columns: repeat(3, 1fr); }
}
.aw-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.aw-footer__brand { font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.aw-footer__desc { color: rgba(255,245,230,0.8); margin-bottom: 0.75rem; font-size: 0.9rem; }
.aw-footer__disclaimer { color: rgba(255,245,230,0.6); font-size: 0.8125rem; }
.aw-footer__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  margin: 0 0 1rem;
}
.aw-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.aw-footer__list a {
  color: rgba(255,245,230,0.8);
  text-decoration: none;
  transition: var(--aw-transition);
  font-size: 0.9375rem;
}
.aw-footer__list a:hover { color: #fff; }
.aw-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .aw-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.aw-footer__bottom p { color: rgba(255,245,230,0.65); font-size: 0.875rem; margin: 0; }
.aw-footer__bottom a {
  color: rgba(255,245,230,0.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--aw-transition);
}
.aw-footer__bottom a:hover { color: #fff; }

/* ── Mockup section ──────────────────────────────────────────── */
.aw-mockups {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .aw-mockups { flex-direction: row; }
}
.aw-mockup-web  { max-width: 480px; width: 100%; }
.aw-mockup-app  { max-width: 220px; width: 100%; }

/* ── Profile section ─────────────────────────────────────────── */
.aw-profile-box {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--aw-cream);
  border-radius: var(--aw-radius-lg);
  box-shadow: var(--aw-shadow);
  padding: 2rem;
}
.aw-profile-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .aw-profile-inner { flex-direction: row; align-items: flex-start; }
}
.aw-profile-avatar {
  padding: 3px;
  background: var(--aw-orange);
  border-radius: 50%;
  width: 7rem;
  height: 7rem;
  flex-shrink: 0;
}
.aw-profile-avatar__inner {
  background: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--aw-brown);
}
.aw-profile-features { flex: 1; }
.aw-profile-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.aw-profile-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #374151;
}
.aw-feat-icon {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--aw-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ── Utility ─────────────────────────────────────────────────── */
.aw-text-center { text-align: center; }
.aw-mt-2  { margin-top: 0.5rem; }
.aw-mt-4  { margin-top: 1rem; }
.aw-mt-6  { margin-top: 1.5rem; }
.aw-mt-8  { margin-top: 2rem; }
.aw-mb-4  { margin-bottom: 1rem; }
.aw-mb-6  { margin-bottom: 1.5rem; }
.aw-mb-8  { margin-bottom: 2rem; }
.aw-max-3xl { max-width: 48rem; margin: 0 auto; }
.aw-max-4xl { max-width: 56rem; margin: 0 auto; }
.aw-italic  { font-style: italic; }
.aw-text-sm { font-size: 0.875rem; }
.aw-text-xs { font-size: 0.8125rem; }
.aw-text-gray { color: var(--aw-gray); }
.aw-text-orange { color: var(--aw-orange); }
.aw-text-brown  { color: var(--aw-brown); }
.aw-text-white  { color: #fff; }

.aw-relative { position: relative; }
.aw-inline-block { display: inline-block; }
.aw-list-disc { padding-left: 1.25rem; }
.aw-list-disc li { margin-bottom: 0.375rem; color: var(--aw-gray); }

.aw-gift-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--aw-radius);
  padding: 0.75rem;
  margin-top: 0.75rem;
}
.aw-gift-box p { margin: 0; }

/* ── Note link ───────────────────────────────────────────────── */
.aw-note {
  font-size: 0.8125rem;
  color: #9CA3AF;
  font-style: italic;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Privacy page ────────────────────────────────────────────── */
.aw-prose p { margin-bottom: 1rem; }
.aw-prose a { color: var(--aw-orange); }
.aw-prose a:hover { color: var(--aw-brown); }

/* ── WP theme override overrides ─────────────────────────────── */
.aw-wrap h1,
.aw-wrap h2,
.aw-wrap h3 {
  line-height: 1.2;
}
.aw-wrap img { max-width: 100%; height: auto; }
.aw-wrap a { text-decoration: none; }

/* ── Burger table section title ──────────────────────────────── */
.aw-section-title-bar {
  background: var(--aw-brown);
  color: var(--aw-orange);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--aw-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--aw-shadow);
}

/* ── Sponsor link ────────────────────────────────────────────── */
.aw-sponsor-section {
  background: var(--aw-cream);
  padding: 3rem 0;
}
.aw-sponsor-text {
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}
.aw-sponsor-text a { color: var(--aw-orange); text-decoration: underline; }
.aw-sponsor-text a:hover { color: var(--aw-brown); }
