/* ============================================================
   AuthenticSamosa.com — Main Stylesheet
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --orange: #e8721c;
  --orange-dark: #c45c10;
  --orange-light: #fff0e4;
  --dark: #1a1a1a;
  --charcoal: #2d2d2d;
  --body-bg: #fafaf8;
  --card-bg: #ffffff;
  --text: #333333;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --success: #16a34a;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--orange-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Bootstrap overrides ──────────────────────────────────── */
.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.55rem 1.5rem;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}
.btn-outline-primary {
  color: var(--orange);
  border-color: var(--orange);
  border-radius: 50px;
  font-weight: 600;
}
.btn-outline-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.btn-light {
  border-radius: 50px;
  font-weight: 600;
}
.btn-outline-light {
  border-radius: 50px;
  font-weight: 600;
}

/* ── Top Bar ──────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  padding: 0.45rem 0;
}
.topbar a {
  color: rgba(255, 255, 255, 0.75);
}
.topbar a:hover {
  color: var(--orange);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar-right {
  display: flex;
  gap: 1.25rem;
}
.topbar i {
  margin-right: 0.3rem;
  color: var(--orange);
}

/* ── Navigation ───────────────────────────────────────────── */
.main-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.main-nav.scrolled {
  box-shadow: var(--shadow-md);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}
.brand-name span {
  color: var(--orange);
}
.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Nav links */
.main-nav .nav-link {
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--orange);
  background: var(--orange-light);
}
.nav-cta {
  padding: 0.5rem 1.4rem !important;
}

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
}
.dropdown-item {
  border-radius: var(--radius-sm);
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  color: var(--text);
  transition: all var(--transition);
}
.dropdown-item:hover {
  background: var(--orange-light);
  color: var(--orange);
}

/* Mobile toggler */
.navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ── Section Styles ───────────────────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.section-label {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
section {
  padding: 4.5rem 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding: 5rem 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1600&fit=crop");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}
.hero-label i {
  color: var(--orange);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero h1 span {
  color: var(--orange);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  font-size: 1rem;
  padding: 0.75rem 2rem;
}
.hero-actions .btn-outline-light {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}
.hero-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-stack {
  position: relative;
  z-index: 2;
}
.hero-img-main {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.hero-badge-fresh {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-badge-fresh i {
  color: var(--orange);
  font-size: 1.4rem;
}
.hero-badge-fresh strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}
.hero-badge-fresh small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ── Features Strip ──────────────────────────────────────── */
.features-strip {
  background: var(--orange);
  padding: 0;
}
.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.feature-item:last-child {
  border-right: none;
}
.feature-item i {
  font-size: 1.8rem;
  opacity: 0.9;
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}
.feature-item span {
  font-size: 0.82rem;
  opacity: 0.85;
}

/* ── Category Cards ──────────────────────────────────────── */
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover img {
  transform: scale(1.06);
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, transparent 55%);
}
.category-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  color: #fff;
}
.category-card-body h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.15rem;
}
.category-card-body small {
  font-size: 0.8rem;
  opacity: 0.8;
}
.category-card-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
  transition: background var(--transition);
}
.category-card:hover .category-card-arrow {
  background: var(--orange);
}

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.badge-diet {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-diet.veg {
  background: #d1fae5;
  color: #065f46;
}
.badge-diet.vegan {
  background: #a7f3d0;
  color: #064e3b;
}
.badge-diet.halal {
  background: #dbeafe;
  color: #1e40af;
}

.product-card-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-cat {
  font-size: 0.75rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: auto;
  padding-bottom: 0.75rem;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--orange);
  font-weight: 700;
}
.btn-view {
  background: var(--orange-light);
  color: var(--orange);
  border: none;
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-view:hover {
  background: var(--orange);
  color: #fff;
}

/* ── About Teaser ────────────────────────────────────────── */
.about-teaser-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-teaser-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-teaser-img .img-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
}
.img-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-family: var(--font-heading);
}
.img-badge span {
  font-size: 0.78rem;
  opacity: 0.9;
}

.about-teaser-content {
  padding: 1rem 0 1rem 1.5rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.check-list li:last-child {
  border-bottom: none;
}
.check-list li i {
  color: var(--orange);
  font-size: 1.1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.check-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.check-content strong {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.3;
}
.check-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section {
  background: var(--orange-light);
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.testimonial-text {
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}
.author-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  padding: 3.5rem 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 0.35rem;
}
.cta-strip-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}
.footer-brand {
  padding-right: 2rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo i {
  color: var(--orange);
}
.footer-logo span {
  color: var(--orange);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.55rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--orange);
}

.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-contact a:hover {
  color: var(--orange);
}

.opening-hours {
  margin-top: 1.25rem;
}
.opening-hours h6 {
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
}
.opening-hours i {
  color: var(--orange);
  margin-right: 0.4rem;
}
.opening-hours table {
  font-size: 0.83rem;
}
.opening-hours td {
  padding: 0.15rem 0.6rem 0.15rem 0;
  color: rgba(255, 255, 255, 0.65);
}
.opening-hours td:last-child {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}
.footer-bottom a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a:hover {
  color: var(--orange);
}

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  padding: 3.5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=1200&fit=crop") center/cover;
  opacity: 0.08;
}
.page-hero-content {
  position: relative;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  font-size: 1rem;
}
.breadcrumb-item a {
  color: var(--orange);
}
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ── Products Page Filter ─────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.product-count-badge {
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50px;
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 0.3rem;
}
.filter-btn.active .product-count-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* ── Single Product ──────────────────────────────────────── */
.product-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-detail-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-detail-price {
  font-size: 2.2rem;
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 700;
}
.diet-info {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.product-divider {
  border-color: var(--border);
  margin: 1.25rem 0;
}

/* ── About Page ──────────────────────────────────────────── */
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: var(--orange);
}
.value-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.team-card-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-body {
  padding: 1.25rem;
}
.team-card-body h5 {
  margin-bottom: 0.15rem;
}
.team-card-body small {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2rem;
  color: #fff;
  height: 100%;
}
.contact-info-card h3 {
  color: #fff;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-detail:last-of-type {
  border-bottom: none;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 114, 28, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.1rem;
}
.contact-detail-value a {
  color: rgba(255, 255, 255, 0.88);
}
.contact-detail-value a:hover {
  color: var(--orange);
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 114, 28, 0.12);
  outline: none;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── Alert messages ──────────────────────────────────────── */
.alert-success {
  background: #d1fae5;
  border-color: #a7f3d0;
  color: #065f46;
  border-radius: var(--radius-sm);
}
.alert-danger {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
  border-radius: var(--radius-sm);
}

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-content h2,
.legal-content h3 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}
.legal-content h2 {
  font-size: 1.6rem;
}
.legal-content h3 {
  font-size: 1.15rem;
}
.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.8;
}
.legal-content ul {
  padding-left: 1.5rem;
}

/* ── Utility ─────────────────────────────────────────────── */
.bg-orange-light {
  background: var(--orange-light);
}
.text-orange {
  color: var(--orange) !important;
}
.fw-600 {
  font-weight: 600;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .features-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item:nth-child(2) {
    border-right: none;
  }
  .about-teaser-content {
    padding: 1.5rem 0 0;
  }
  .topbar-right {
    display: none;
  }
}

@media (max-width: 767px) {
  .features-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 70vh;
  }
  .hero-stats {
    gap: 1.25rem;
  }
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-strip-actions {
    justify-content: center;
  }
  .hero-image-stack {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 575px) {
  .features-strip-inner {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .feature-item:last-child {
    border-bottom: none;
  }
  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Site notice banner ─────────────────────── */
/* Deliberately not dismissible: the notice must stay visible to every visitor
   on every page. Switch it off in Admin → Site Settings when the site is done. */
.site-notice {
  background: #fffaf5;
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid rgba(232, 114, 28, 0.14);
  color: var(--charcoal);
}
.site-notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 0;
  min-height: 46px;
}
.site-notice-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(232, 114, 28, 0.16);
}
.site-notice-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5a4a3f;
  text-align: center;
}
.site-notice-link {
  color: var(--orange-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 92, 16, 0.35);
  white-space: nowrap;
  margin-left: 0.15rem;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}
.site-notice-link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

@media (max-width: 767.98px) {
  .site-notice-inner {
    padding: 0.7rem 0;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .site-notice-text {
    font-size: 0.825rem;
    text-align: left;
  }
  .site-notice-dot {
    margin-top: 0.45rem;
  }
}

/* ── Footer legal / trading disclosure ───────────────── */
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0 0.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
.footer-legal p {
  margin: 0 0 0.3rem;
}
.footer-legal .footer-legal-name {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

