html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem rgba(31, 107, 63, .35);
}

/* ===== Native form control theming (checkboxes, radios, select, close button) ===== */
.form-check-input:checked {
  background-color: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
}
.form-check-input:focus {
  border-color: var(--brand-green);
}
.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-select:focus { box-shadow: none; }
.btn-close:focus { box-shadow: 0 0 0 0.25rem rgba(31, 107, 63, .35); }
input[type="checkbox"], input[type="radio"], input[type="range"] { accent-color: var(--brand-green-dark); }

.pagination .page-link {
  color: var(--brand-green-dark);
}
.pagination .page-link:hover, .pagination .page-link:focus {
  color: var(--brand-green-dark);
  background-color: var(--brand-green-light);
  box-shadow: none;
}
.pagination .page-item.active .page-link {
  background-color: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  color: #fff;
}
.pagination .page-item.disabled .page-link { color: #b7c2bb; }

.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--brand-green-light);
  color: var(--brand-green-dark);
}
.dropdown-item.active, .dropdown-item:active {
  background-color: var(--brand-green-dark);
  color: #fff;
}

a {
  color: var(--brand-green-dark);
}
a:hover {
  color: var(--brand-gold);
}

/* ===== Brand tokens ===== */
:root {
  --brand-green-dark: #16472e;
  --brand-green: #1f6b3f;
  --brand-green-light: #e8f3ea;
  --brand-gold: #c8a24d;
  --brand-ink: #1f2a24;
  --brand-radius: 0.9rem;
  --brand-shadow: 0 6px 24px rgba(22, 71, 46, 0.08);
}

.text-brand { color: var(--brand-green-dark); }
.bg-brand { background-color: var(--brand-green-dark); }
.btn-brand {
  background-color: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  color: #fff;
}
.btn-brand:hover {
  background-color: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
}
.btn-outline-brand {
  color: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
}
.btn-outline-brand:hover {
  background-color: var(--brand-green-dark);
  color: #fff;
}

/* ===== Product card ===== */
.product-card {
  position: relative;
  border: 1px solid #eef1ee;
  border-radius: var(--brand-radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
  height: 100%;
}
.product-card:hover {
  box-shadow: var(--brand-shadow);
  transform: translateY(-3px);
}
.product-card .product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--brand-green-light);
  overflow: hidden;
}
.product-card .product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform .35s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.06);
}
.product-card .product-badges {
  position: absolute;
  top: .6rem;
  left: .6rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  z-index: 2;
}
.product-card .badge-pill {
  font-size: .7rem;
  font-weight: 600;
  padding: .3rem .55rem;
  border-radius: 50px;
  color: #fff;
}
.badge-new { background: var(--brand-green); }
.badge-bestseller { background: var(--brand-gold); color: #2b2100; }
.badge-offer { background: #d1483f; }

.product-card .product-actions {
  position: absolute;
  top: .6rem;
  right: .6rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 2;
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-card .icon-btn {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eef1ee;
  color: var(--brand-green-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.product-card .icon-btn:hover { background: var(--brand-green-dark); color: #fff; }

.product-card .product-body { padding: 1rem; }
.product-card .product-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--brand-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}
.product-card .rating-stars { color: var(--brand-gold); font-size: .8rem; }
.product-card .price-old { text-decoration: line-through; color: #9aa39d; font-size: .85rem; }
.product-card .price-current { font-weight: 700; color: var(--brand-green-dark); font-size: 1.05rem; }
.product-card .stock-status { font-size: .75rem; }

/* ===== Shop layout ===== */
.shop-sidebar .card { border-radius: var(--brand-radius); border-color: #eef1ee; }
.shop-toolbar { border-radius: var(--brand-radius); background: var(--brand-green-light); }
.category-pill {
  border-radius: 50px;
  border: 1px solid #eef1ee;
  padding: .4rem .9rem;
  font-size: .85rem;
  color: var(--brand-ink);
  text-decoration: none;
}
.category-pill.active, .category-pill:hover {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  color: #fff;
}

/* ===== Product details ===== */
.pd-gallery-main {
  border-radius: var(--brand-radius);
  background: var(--brand-green-light);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pd-gallery-main img { max-width: 90%; max-height: 90%; object-fit: contain; transition: transform .3s ease; }
.pd-zoom { overflow: hidden; cursor: zoom-in; }
.pd-zoom:hover img { transform: scale(1.35); }

.star-rating-input { font-size: 1.4rem; color: var(--brand-gold); }
.star-rating-input .js-star { cursor: pointer; margin-right: .2rem; }
.pd-thumb {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: .6rem;
  border: 1px solid #eef1ee;
  overflow: hidden;
  cursor: pointer;
  background: var(--brand-green-light);
}
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; padding: .3rem; }
.pd-thumb.active { border-color: var(--brand-green-dark); }
.variant-pill {
  border: 1px solid #dfe6e1;
  border-radius: .6rem;
  padding: .5rem .9rem;
  font-size: .85rem;
  cursor: pointer;
  background: #fff;
}
.variant-pill.active {
  border-color: var(--brand-green-dark);
  background: var(--brand-green-light);
  font-weight: 600;
}

/* ===== Top bar ===== */
.topbar {
  background: var(--brand-green-dark);
  color: #e8f3ea;
  font-size: .8rem;
}
.topbar a { color: #e8f3ea; text-decoration: none; }
.topbar a:hover { color: var(--brand-gold); }

/* ===== Site header ===== */
.site-header { background: #fff; }
.brand-logo-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22);
}
.header-account .navbar-nav {
  flex-direction: row;
  align-items: center;
  gap: .75rem;
}
.header-search .form-control { border-color: #dfe6e1; }
.header-search .btn { z-index: 0; }

.header-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  color: var(--brand-ink);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.header-icon-link:hover { color: var(--brand-green-dark); }
.header-icon-wrap { position: relative; font-size: 1.3rem; line-height: 1; }
.header-icon-wrap .badge {
  position: absolute;
  top: -.5rem;
  right: -.75rem;
  font-size: .6rem;
}
@media (max-width: 575px) {
  .header-account {
    flex-basis: 100%;
    justify-content: flex-end !important;
    margin-left: 0 !important;
    gap: 1.1rem !important;
  }
  .header-icon-label { display: none; }
  .header-icon-wrap { font-size: 1.2rem; }
  .brand-logo-badge { width: 2.3rem; height: 2.3rem; font-size: 1.1rem; }
  .site-header .brand-logo-badge + span .fs-4 { font-size: 1.05rem !important; }
  .site-header .brand-logo-badge + span .small { display: none !important; }
}

.mega-nav-wrap { background: var(--brand-green-dark); }
.mega-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding: .75rem 0;
  font-size: .82rem;
}
.mega-nav > a, .mega-nav-trigger {
  color: #e8f3ea;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  padding-bottom: .35rem;
  border-bottom: 2px solid transparent;
}
.mega-nav > a:hover, .mega-nav > a.active, .mega-nav-trigger:hover {
  color: var(--brand-gold);
  border-bottom-color: var(--brand-gold);
}

.mega-nav-item { position: relative; flex-shrink: 0; }
.mega-nav-trigger { display: inline-flex; align-items: center; gap: .35rem; }
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid #eef1ee;
  border-radius: .6rem;
  box-shadow: var(--brand-shadow);
  padding: .6rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 50;
  white-space: normal;
}
.mega-nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 2px);
}
.mega-dropdown a {
  padding: .4rem .6rem;
  border-radius: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--brand-ink);
  text-decoration: none;
}
.mega-dropdown a:hover { background: var(--brand-green-light); }

/* ===== Search suggestions ===== */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: .3rem;
  background: #fff;
  border: 1px solid #eef1ee;
  border-radius: .6rem;
  box-shadow: var(--brand-shadow);
  padding: .4rem;
  z-index: 60;
  max-height: 340px;
  overflow-y: auto;
}
.search-suggestions-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--brand-gold);
  padding: .3rem .5rem;
}
.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem .5rem;
  border-radius: .4rem;
  text-decoration: none;
  color: var(--brand-ink);
}
.search-suggestion-item:hover { background: var(--brand-green-light); }
.search-suggestion-item img { width: 32px; height: 32px; object-fit: contain; background: var(--brand-green-light); border-radius: .3rem; }

/* ===== Price range slider ===== */
.price-slider {
  position: relative;
  height: 1.4rem;
  margin: .5rem 0 .25rem;
}
.price-slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #e2e6e3;
  border-radius: 4px;
  transform: translateY(-50%);
}
.price-slider-range {
  position: absolute;
  height: 4px;
  background: var(--brand-green-dark);
  border-radius: 4px;
}
.price-slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.price-slider-input::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-green-dark);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  cursor: pointer;
  margin-top: 6px;
}
.price-slider-input::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-green-dark);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  cursor: pointer;
}
.price-slider-input::-webkit-slider-runnable-track { background: transparent; }
.price-slider-input::-moz-range-track { background: transparent; }

/* ===== Grid / List view toggle ===== */
.view-toggle .btn.active { background: var(--brand-green-dark); color: #fff; }

/* ===== List view product grid ===== */
.product-grid.list-view { row-gap: .75rem; }
.product-grid.list-view .product-grid-item { flex: 0 0 100%; max-width: 100%; }
.product-grid.list-view .product-card { flex-direction: row; align-items: stretch; }
.product-grid.list-view .product-card > a { flex: 0 0 160px; }
.product-grid.list-view .product-media { aspect-ratio: 1/1; height: 100%; }
.product-grid.list-view .product-body { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; }
.product-grid.list-view .product-title { -webkit-line-clamp: 1; min-height: auto; }
.product-grid.list-view .product-body .btn { max-width: 220px; }

/* ===== Checkout stepper ===== */
.checkout-stepper {
  border-bottom: 1px solid var(--line, #e2e0d2);
  padding-bottom: 1rem;
}
.stepper-item {
  flex: 1;
  text-align: center;
  color: #9aa39d;
  font-size: .85rem;
  font-weight: 600;
  position: relative;
}
.stepper-item .stepper-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: #eef1ee;
  color: #9aa39d;
  margin-right: .4rem;
  font-size: .8rem;
}
.stepper-item.active { color: var(--brand-green-dark); }
.stepper-item.active .stepper-num { background: var(--brand-green-dark); color: #fff; }
.stepper-item.done { color: var(--brand-green); }
.stepper-item.done .stepper-num { background: var(--brand-green); color: #fff; }

/* ===== Offer cards ===== */
.offer-card {
  border-radius: var(--brand-radius);
  overflow: hidden;
  border: 1px solid #eef1ee;
  background: #fff;
  color: var(--brand-ink);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--brand-shadow); color: var(--brand-ink); }
.offer-card img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.offer-card-body { padding: 1rem; }
.offer-card.flash-offer { border-color: #f3c9c4; }
.offer-countdown { color: #b1503f; font-variant-numeric: tabular-nums; }

/* ===== Page transition ===== */
.page-fade-in main { animation: udPageFadeIn .35s ease; }
@keyframes udPageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal-visible { opacity: 1; transform: translateY(0); }

/* ===== Button ripple ===== */
.btn { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transform: scale(0);
  animation: udRipple .5s ease-out;
  pointer-events: none;
}
@keyframes udRipple {
  to { transform: scale(2.2); opacity: 0; }
}

/* ===== Skeleton loader ===== */
.skeleton-card {
  border-radius: var(--brand-radius);
  overflow: hidden;
  border: 1px solid #eef1ee;
  background: #fff;
}
.skeleton-card .skeleton-media { aspect-ratio: 1/1; }
.skeleton-shimmer {
  background: linear-gradient(90deg, #eef1ee 25%, #f6f8f6 37%, #eef1ee 63%);
  background-size: 400% 100%;
  animation: udShimmer 1.4s ease infinite;
}
@keyframes udShimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .page-fade-in main, .reveal, .btn-ripple, .skeleton-shimmer { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ===== Hero ===== */
.hero-slide { position: relative; }
.hero-carousel img {
  width: 100%;
  border-radius: var(--brand-radius);
  aspect-ratio: 8 / 3;
  object-fit: cover;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--brand-gold);
}
.hero-shop-btn {
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
  z-index: 3;
}
.hero-badge {
  position: absolute;
  top: 1.75rem;
  right: 2.5rem;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: var(--brand-shadow);
  z-index: 3;
}
@media (max-width: 767px) {
  .hero-shop-btn { left: 1rem; bottom: 1rem; padding: .35rem .75rem; font-size: .8rem; }
  .hero-badge { width: 72px; height: 72px; font-size: .58rem; top: .75rem; right: .75rem; }
}

/* ===== Quality bar ===== */
.quality-bar {
  background: var(--brand-green-dark);
  border-radius: var(--brand-radius);
  color: #e8f3ea;
}
.quality-bar .quality-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.quality-bar .col-md-3:last-child .quality-item { border-right: none; }
@media (max-width: 767px) {
  .quality-bar .quality-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: .75rem; justify-content: center; }
  .quality-bar .col-md-3:last-child .quality-item { border-bottom: none; }
}
.quality-bar .quality-item .small { color: #cfe3d6; }
.quality-bar .quality-icon { font-size: 1.6rem; }

/* ===== Section heading ===== */
.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.section-heading h2 {
  color: var(--brand-green-dark);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.section-heading .leaf { color: var(--brand-gold); }

/* ===== Category circle ===== */
.category-circle {
  text-align: center;
  text-decoration: none;
  color: var(--brand-ink);
  display: block;
}
.category-circle .circle-media {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .6rem auto;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.category-circle:hover .circle-media {
  transform: translateY(-4px);
  box-shadow: var(--brand-shadow);
}
.category-circle img { width: 60%; height: 60%; object-fit: contain; }
.category-circle .cat-name { font-size: .85rem; font-weight: 600; }
.circle-media-viewall {
  background: var(--brand-green-dark) !important;
  color: #fff;
  font-size: 1.6rem;
}

/* ===== Brand strip ===== */
.brand-strip-item {
  border: 1px solid #eef1ee;
  border-radius: 50px;
  padding: .6rem 1.25rem;
  font-weight: 600;
  color: var(--brand-green-dark);
  background: #fff;
}

/* ===== Testimonials ===== */
.testimonial-card {
  border-radius: var(--brand-radius);
  border: 1px solid #eef1ee;
  padding: 1.5rem;
  height: 100%;
  background: #fff;
}
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brand-green-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ===== Instagram gallery ===== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
@media (min-width: 768px) {
  .insta-grid { grid-template-columns: repeat(6, 1fr); }
}
.insta-grid .insta-item {
  aspect-ratio: 1/1;
  border-radius: .6rem;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
  position: relative;
}

/* ===== Newsletter ===== */
.newsletter-box {
  background: var(--brand-green-dark);
  border-radius: var(--brand-radius);
  color: #fff;
}
.newsletter-box .form-control { border-radius: 50px 0 0 50px; border: none; }
.newsletter-box .btn {
  border-radius: 0 50px 50px 0;
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-ink);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.newsletter-box .btn:hover,
.newsletter-box .btn:focus {
  background-color: #b8923f;
  border-color: #b8923f;
  color: var(--brand-ink);
}

/* ===== FAQ ===== */
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }

/* ===== Footer ===== */
.site-footer {
  background: var(--brand-green-dark);
  color: #dfe9e2;
}
.site-footer a { color: #dfe9e2; text-decoration: none; }
.site-footer a:hover { color: var(--brand-gold); }
.site-footer h6 { color: #fff; font-weight: 700; margin-bottom: 1rem; }
.site-footer .social-icons a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
}
.site-footer .app-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .7rem;
  border-radius: .4rem;
  background: rgba(255,255,255,.08);
  font-size: .72rem;
  font-weight: 600;
  color: #dfe9e2;
  cursor: default;
}

/* ===== Auth pages (Login / Register / Forgot Password / Lockout) ===== */
.auth-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 0 3rem;
}
.auth-card {
  width: 100%;
  max-width: 920px;
  background: #fff;
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow);
  overflow: hidden;
  display: flex;
  min-height: 520px;
}
.auth-side {
  flex: 0 0 40%;
  background: linear-gradient(160deg, var(--brand-green-dark), var(--brand-green));
  color: #f2f7f3;
  padding: 3rem 2.25rem;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.auth-side::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -80px;
  right: -80px;
}
.auth-side::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  bottom: -60px;
  left: -60px;
}
.auth-logo {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.auth-side h2 { font-weight: 800; margin-bottom: .75rem; position: relative; z-index: 1; }
.auth-side p { color: #d9ead9; margin-bottom: 0; position: relative; z-index: 1; }
.auth-side ul { position: relative; z-index: 1; padding-left: 1.1rem; margin-top: 1.25rem; margin-bottom: 0; color: #d9ead9; }
.auth-side ul li { margin-bottom: .5rem; }
.auth-form-panel {
  flex: 1 1 60%;
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-form-panel h1 { font-size: 1.75rem; color: var(--brand-green-dark); }
.auth-form-panel .form-floating > label { color: #7a8a80; }
.auth-form-panel .form-control:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 .2rem rgba(31, 107, 63, .15);
}
.auth-form-panel a { color: var(--brand-green-dark); font-weight: 600; text-decoration: none; }
.auth-form-panel a:hover { color: var(--brand-gold); }
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #9aa79f;
  font-size: .8rem;
  margin: 1.5rem 0 1rem;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #eef1ee;
}
.auth-divider span { padding: 0 .85rem; }
@media (max-width: 767px) {
  .auth-card { flex-direction: column; min-height: 0; }
  .auth-side { flex: none; padding: 2rem; }
  .auth-form-panel { padding: 2rem; }
}

/* ===== Admin sidebar ===== */
.admin-nav-link {
  display: block;
  color: #e8f3ea;
  text-decoration: none;
  border-radius: .5rem;
  padding: .55rem .8rem;
  transition: background-color .15s ease, color .15s ease;
}
.admin-nav-link:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.admin-nav-link.active {
  background: var(--brand-gold);
  color: var(--brand-ink);
  font-weight: 600;
}
.site-footer .app-badge i { font-size: 1.1rem; }
