/* =========================================================
   VelnoraWellness — style.css
   Shared stylesheet for the whole site (index.html, shop.html, …).
   Each page's section is fenced with PAGE: START/END comments —
   add new pages by appending a new fenced block, don't create
   a separate CSS file per page.
   ========================================================= */

:root {
  --forest-green: #44712a;
  --forest-green-dark: #44712A;
  --forest-green-light: #3f6b45;
  --pink-tint: #fbeaea;
  --pink-tint-strong: #f2c9d4;
  --blue-tint: #eaf3fa;
  --blue-tint-strong: #cfe3f0;
  --cream: #fffaf5;
  --gold: #f0a500;
  --text-dark: #2b2b2b;
  --text-muted: #6b6b6b;
  --light-green: #f8f8f6;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Mont', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Mont', sans-serif;
  color: var(--forest-green);
}

a {
  text-decoration: none;
}

/* =========================================================
   SITE-WIDE: START
   Used on every page — utility bar, navbar, buttons, footer,
   cart toast, shared card/rating/price styles.
   ========================================================= */

/* ---- Buttons ---- */
.btn-brand-solid {
  background-color: var(--forest-green);
  border: 2px solid var(--forest-green);
  color: #fff;
  border-radius: 10px;
  padding: 10px 28px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-brand-solid:hover {
  background-color: var(--forest-green-dark);
  border-color: var(--forest-green-dark);
  color: #fff;
}

.btn-brand-solid i {
  margin-left: 4px;
  font-size: 0.9em;
}

.btn-brand-outline {
  background-color: #fff;
  border: 2px solid #d5d5d5;
  color: #000;
  border-radius: 10px;
  padding: 10px 28px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-brand-outline:hover {
  background-color: var(--forest-green);
  color: #fff;
}

/* ---- Top utility bar ---- */
.utility-bar {
  background-color: var(--forest-green-dark);
  color: #f2f2f2;
  font-size: 0.8rem;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

.utility-bar a {
  color: #f2f2f2;
  opacity: 0.9;
}

.utility-bar a:hover {
  opacity: 1;
  text-decoration: underline;
}

.utility-bar .divider {
  margin: 0 8px;
  opacity: 0.5;
}

.utility-item i {
  margin-right: 4px;
}

/* ---- Navbar ---- */
.main-navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 14px 0;
  position: relative;
}

.main-navbar .container {
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 35px;
  width: auto;
}

.main-nav-links .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 12px;
  position: relative;
}

.main-nav-links .nav-link.active,
.main-nav-links .nav-link:hover {
  color: var(--forest-green);
}

.nav-icons {
  gap: 18px;
  height: 42px;
}

.icon-link {
  color: var(--forest-green);
  font-size: 1.2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.icon-link:hover {
  color: var(--forest-green-dark);
}

.navbar-search-form {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  display: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px;
  z-index: 1050;
}

.navbar-search-form.show {
  display: flex;
  gap: 6px;
}

.navbar-search-input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.9rem;
}

.navbar-search-input:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: none;
}

.navbar-search-submit {
  border: none;
  background: var(--forest-green);
  color: #fff;
  border-radius: 6px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-search-submit:hover {
  background: var(--forest-green-dark);
}

.navbar-toggler {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: none;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--forest-green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.cart-badge.bump {
  transform: scale(1.4);
}

/* ---- Shared section heading style ---- */
.section-heading-wrap {
  margin-bottom: 45px;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subheading {
  color: var(--text-muted);
  font-size: 1rem;
}

.section-heading-row {
  margin-bottom: 20px;
}

.section-heading-row .section-heading-wrap {
  margin-bottom: 0;
}

.why-underline {
  display: inline-block;
  width: 40px;
  height: 3px;
  margin-top: 8px;
  background-color: var(--forest-green);
  border-radius: 2px;
}

/* ---- Shared product card bits (star rating / price) ---- */
.star-rating {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.star-rating .review-count {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-left: 6px;
  font-family: 'Mont', sans-serif;
}

.product-price {
  margin-bottom: 16px;
}

.price-current {
  font-weight: 600;
  color: var(--forest-green);
  font-size: 1.1rem;
  margin-right: 8px;
}

.price-original {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

/* ---- Newsletter band ---- */
.newsletter-section {
  background-color: #eef1ea;
  color: var(--text-dark);
  padding: 60px 0 70px;
}

.newsletter-section h2 {
  color: var(--forest-green);
  font-size: 2rem;
  margin-bottom: 14px;
}

.newsletter-section p {
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 460px;
}

.newsletter-input {
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  min-width: 280px;
}

.newsletter-input:focus {
  box-shadow: 0 0 0 3px rgba(47, 82, 51, 0.2);
  border-color: var(--forest-green);
}

.newsletter-btn {
  white-space: nowrap;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.newsletter-message {
  font-size: 0.9rem;
  font-weight: 500;
}

.newsletter-message.success {
  color: var(--forest-green);
}

.newsletter-message.error {
  color: #c0392b;
}

.newsletter-image {
  max-height: 260px;
}

/* ---- Footer ---- */
.site-footer {
  background-color: #fff;
  color: var(--text-muted);
  padding: 0;
}

.footer-top {
  padding: 50px 0 30px;
}

.footer-brand-img {
  height: 38px;
  width: auto;
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social a {
  color: var(--forest-green);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--forest-green-dark);
}

.footer-heading {
  color: var(--text-dark);
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--forest-green);
}

.footer-payments {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 26px 0 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  background-color: #fff;
}

.payment-badge-mc {
  gap: 0;
}

.payment-badge-mc i {
  font-size: 1rem;
}

.payment-badge-mc i:first-child {
  color: #eb001b;
  margin-right: -6px;
}

.payment-badge-mc i:last-child {
  color: #f79e1b;
  opacity: 0.85;
}

.footer-bottom {
  background-color: var(--forest-green-dark);
  padding: 16px 0;
  font-size: 0.82rem;
  color: #e6ece7;
}

.footer-bottom-links a {
  color: #e6ece7;
  margin-left: 20px;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer-bottom-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---- Cart toast ---- */
.cart-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--forest-green);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Site-wide responsive ---- */
@media (max-width: 991.98px) {
  .main-nav-links {
    margin-top: 16px;
  }

  .main-nav-links .nav-link {
    margin: 6px 0;
  }

  /* .nav-icons {
    margin-top: 16px;
  } */
}

@media (max-width: 575.98px) {
  .section-heading {
    font-size: 1.7rem;
  }

  .section-heading-row {
    justify-content: center !important;
    text-align: center;
  }
}
/* ---- SITE-WIDE: END ---- */


/* =========================================================
   PAGE: index.html (Home) — START
   Hero, trust bar, collections, best sellers, why choose,
   testimonials. Only these selectors are used on the homepage.
   ========================================================= */

/* ---- Hero section ---- */
.hero-section {
  background: linear-gradient(120deg, var(--light-green) 0%, var(--blue-tint) 100%);
  padding: 70px 0 40px;
}

.hero-eyebrow {
  color: var(--forest-green);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1c2a22;
}

.hero-heading span {
  font-family: 'Alex Brush', cursive;
  font-weight: 400;
  font-size: 1.7em;
  color: var(--forest-green);
  vertical-align: middle;
  line-height: 1;
}

.hero-subtext {
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-image {
  max-height: 480px;
  border-radius: 20px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--forest-green);
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-feature-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-feature-text strong {
  font-family: 'Mont', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.hero-feature-text small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- Trust bar ---- */
.trust-bar {
  background-color: #fff;
  padding: 28px 0px;
  border-radius: 12px;
  box-shadow: 0 0 4px rgb(45 45 45 / 14%);
  margin-bottom: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}

@media (min-width: 768px) {
  .trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
}

.trust-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--forest-green);
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.trust-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.trust-text strong {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.trust-text small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- Collections section ---- */
.collections-section {
  padding: 80px 0;
  background-color: #fff;
}

.collection-card {
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
}

.collection-pink {
  background-color: var(--light-green);
}

.collection-blue {
  background-color: var(--blue-tint);
}

.collection-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

.collection-text {
  flex: 1 1 auto;
  min-width: 0;
}

.collection-card h3 {
  font-size: 1.7rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.collection-underline {
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--forest-green);
  margin-bottom: 18px;
}

.collection-pink .collection-underline {
  background-color: #c9788f;
}

.collection-card p {
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 260px;
}

.collection-card .btn-brand-solid {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 12px 26px;
}

.collection-image-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-img {
  border-radius: 16px;
  max-height: 300px;
  object-fit: cover;
}

/* ---- Best sellers carousel ---- */
.bestsellers-section {
  padding: 80px 0;
}

.bestsellers-viewport,
.testimonials-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.bestsellers-viewport.dragging,
.testimonials-viewport.dragging {
  cursor: grabbing;
}

.bestsellers-track,
.testimonials-track {
  transition: transform 0.4s ease;
}

.bestsellers-track img,
.testimonials-track img,
.bestsellers-track a,
.testimonials-track a {
  -webkit-user-drag: none;
  user-select: none;
}

.carousel-nav-arrows {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.carousel-arrow-sm {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1.5px solid rgba(47, 82, 51, 0.3);
  background-color: #fff;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.carousel-arrow-sm:hover {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  color: #fff;
}

.product-card {
  background-color: #fff;
  padding: 24px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 4px rgb(45 45 45 / 14%);
  height: 100%;
  transition: transform 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-slide {
  margin: 34px 0px 10px 10px;
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.product-card h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.product-title-link {
  color: var(--forest-green);
  transition: color 0.2s ease;
}

.product-title-link:hover {
  color: var(--forest-green-dark);
}

/* ---- Why choose us ---- */
.why-choose-section {
  padding: 60px 0;
  background-color: #eef1ea;
}

.why-choose-card {
  background-color: #fbfbf9;
  border-radius: 16px;
  padding: 40px 30px;
}

.why-heading-wrap {
  margin-bottom: 40px;
}

.why-heading-wrap .section-heading {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.why-heading-wrap .section-heading span {
  color: var(--forest-green);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-icon-green {
  color: var(--forest-green);
}

.why-icon-blue {
  color: #2f7fb2;
}

.why-icon-gold {
  color: var(--gold);
}

.why-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.why-text strong {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-text small {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- Testimonials ---- */
.testimonials-section {
  padding: 60px 0;
  background-color: #fbfbf9;
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-avatar {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-body {
  min-width: 0;
  text-align: left;
}

.testimonial-body .star-rating {
  margin-bottom: 10px;
}

.testimonial-quote {
  color: var(--text-dark);
  font-style: normal;
  margin: 0 0 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.testimonial-name {
  font-family: 'Mont', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* ---- Home page responsive ---- */
@media (max-width: 991.98px) {
  .hero-feature-item,
  .trust-item,
  .why-item {
    justify-content: center;
  }

  .hero-heading {
    font-size: 2.3rem;
  }
}

@media (max-width: 767.98px) {
  .collection-card-inner {
    flex-direction: column;
    text-align: center;
  }

  .collection-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .collection-card p {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 50px 0 30px;
  }
}
/* ---- PAGE: index.html (Home) — END ---- */


/* =========================================================
   PAGE: shop.html (Shop listing) — START
   Promo banner, breadcrumb, toolbar, product grid/list cards,
   badges, pagination. Only used on shop.html.
   ========================================================= */

/* ---- Light button variant (used on the colored banner) ---- */
.btn-brand-light {
  background-color: #fff;
  border: 2px solid #fff;
  color: var(--forest-green);
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-brand-light:hover {
  background-color: transparent;
  color: #fff;
}

/* ---- Top promo banner ---- */
.shop-banner {
  background: linear-gradient(120deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: #fff;
  padding: 60px 0;
}

.shop-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.shop-banner-text h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.shop-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 26px;
  max-width: 480px;
}

.shop-banner-img {
  max-height: 300px;
  border-radius: 16px;
}

/* ---- Breadcrumb bar ---- */
.shop-breadcrumb-bar {
  background-color: #f5f5f2;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shop-breadcrumb-bar .breadcrumb {
  font-size: 0.88rem;
  margin: 0;
}

.shop-breadcrumb-bar .breadcrumb-item a {
  color: var(--text-muted);
}

.shop-breadcrumb-bar .breadcrumb-item a:hover {
  color: var(--forest-green);
}

.shop-breadcrumb-bar .breadcrumb-item.active {
  color: var(--forest-green);
  font-weight: 500;
}

.shop-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
  content: '/';
}

/* ---- Shop listing section ---- */
.shop-listing {
  padding: 50px 0 70px;
  background-color: #fff;
}

/* ---- Toolbar (sort by / show / view toggle) ---- */
.shop-toolbar {
  padding-bottom: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.shop-toolbar-bottom {
  border-bottom: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
  padding-bottom: 0;
  margin-top: 10px;
  margin-bottom: 0;
}

.toolbar-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.toolbar-select {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
  padding: 8px 32px 8px 12px;
  min-width: 180px;
}

.toolbar-select:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(47, 82, 51, 0.15);
}

.toolbar-select-sm {
  min-width: 80px;
}

.view-toggle {
  display: inline-flex;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.view-toggle-btn {
  border: none;
  background-color: #fff;
  color: var(--text-muted);
  width: 38px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.view-toggle-btn + .view-toggle-btn {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.view-toggle-btn.active,
.view-toggle-btn:hover {
  background-color: var(--forest-green);
  color: #fff;
}

/* ---- Product card (grid view) ---- */
.shop-product-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.shop-product-img-wrap {
  position: relative;
  background-color: #f8f8f6;
}

.shop-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-hot {
  background-color: var(--forest-green);
}

.badge-sale {
  background-color: #c0392b;
}

.badge-new {
  background-color: #2f7fb2;
}

.shop-product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.shop-product-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.shop-product-title {
  font-family: 'Mont', sans-serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
  transition: color 0.2s ease;
}

.shop-product-title:hover {
  color: var(--forest-green);
}

.shop-product-price {
  margin: 10px 0 14px;
}

.shop-product-body .add-to-cart-btn.added {
  background-color: var(--forest-green-dark);
  border-color: var(--forest-green-dark);
}

/* ---- Product grid — list view ---- */
.product-grid-list .product-grid-item {
  flex: 0 0 100%;
  max-width: 100%;
}

.product-grid-list .shop-product-card {
  flex-direction: row;
  align-items: stretch;
}

.product-grid-list .shop-product-img-wrap {
  flex: 0 0 200px;
  max-width: 200px;
}

.product-grid-list .shop-product-img {
  height: 100%;
  aspect-ratio: auto;
}

.product-grid-list .shop-product-body {
  justify-content: center;
}

.product-grid-list .shop-product-body .btn {
  width: auto !important;
  align-self: flex-start;
  padding-left: 26px;
  padding-right: 26px;
}

@media (max-width: 575.98px) {
  .product-grid-list .shop-product-card {
    flex-direction: column;
  }

  .product-grid-list .shop-product-img-wrap {
    flex: 0 0 auto;
    max-width: 100%;
  }
}

/* ---- Pagination ---- */
.shop-pagination-wrap {
  margin-top: 46px;
}

.shop-pagination-wrap .pagination {
  justify-content: center;
}

.shop-pagination .page-item .page-link,
.shop-pagination-wrap .page-item .page-link {
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px !important;
  margin: 0 4px;
  font-size: 0.9rem;
  font-weight: 500;
}

.shop-pagination .page-item .page-link:hover,
.shop-pagination-wrap .page-item .page-link:hover {
  background-color: var(--light-green);
  color: var(--forest-green);
  border-color: var(--forest-green);
}

.shop-pagination .page-item.active .page-link,
.shop-pagination-wrap .page-item.active .page-link {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  color: #fff;
}

.shop-pagination .page-link-next {
  color: var(--forest-green);
}

/* ---- Shop page responsive ---- */
@media (max-width: 767.98px) {
  .shop-banner-text h1 {
    font-size: 1.9rem;
  }

  .shop-toolbar {
    justify-content: center !important;
    text-align: center;
  }

  .shop-toolbar-bottom {
    justify-content: center !important;
  }
}
/* ---- PAGE: shop.html (Shop listing) — END ---- */


/* =========================================================
   PAGE: product_detail.html (Product detail) — START
   Gallery + thumbnails, product details column, variant/qty
   selectors, description tabs, reviews, related products (the
   related-products grid reuses .shop-product-card from the
   shop.html block above, so no extra CSS is needed for it).
   ========================================================= */

/* ---- Product main section ---- */
.product-main {
  padding: 50px 0 70px;
  background-color: #fff;
}

/* ---- Gallery ---- */
.product-gallery-main {
  position: relative;
  background-color: #f8f8f6;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-gallery-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
}

.product-thumb-btn {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  background-color: #f8f8f6;
  transition: border-color 0.2s ease;
}

.product-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb-btn.active,
.product-thumb-btn:hover {
  border-color: var(--forest-green);
}

/* ---- Details column ---- */
.product-title {
  font-size: 2rem;
  margin: 8px 0 14px;
}

.product-details-rating {
  margin-bottom: 16px;
}

.product-details-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.product-details-price .price-current {
  font-size: 1.6rem;
}

.product-save-badge {
  background-color: var(--light-green);
  color: #c0392b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.product-details-desc {
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.6;
}

/* ---- Option groups (flavor / pack size) ---- */
.product-option-group {
  margin-bottom: 22px;
}

.product-option-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-option-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-swatch-btn {
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  background-color: #fff;
  color: var(--text-dark);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.product-swatch-btn.active,
.product-swatch-btn:hover {
  border-color: var(--forest-green);
  background-color: var(--forest-green);
  color: #fff;
}

/* ---- Quantity + add to cart row ---- */
.product-purchase-row {
  margin-bottom: 22px;
}

.product-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.product-qty-btn {
  border: none;
  background-color: #fff;
  color: var(--forest-green);
  width: 40px;
  height: 48px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-qty-btn:hover {
  background-color: var(--light-green);
}

.product-qty-input {
  width: 44px;
  height: 48px;
  border: none;
  border-left: 1.5px solid rgba(0, 0, 0, 0.15);
  border-right: 1.5px solid rgba(0, 0, 0, 0.15);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.product-qty-input:focus {
  outline: none;
}

.product-add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-add-to-cart-btn.added {
  background-color: var(--forest-green-dark);
  border-color: var(--forest-green-dark);
}

/* ---- Trust / meta strip ---- */
.product-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-meta-strip i {
  color: var(--forest-green);
  margin-right: 6px;
}

/* ---- Tabs section ---- */
.product-tabs-section {
  padding: 0 0 70px;
  background-color: #fff;
}

.product-tabs-nav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 8px;
  margin-bottom: 30px;
}

.product-tab-btn {
  border: none;
  background: none;
  padding: 12px 20px;
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.product-tab-btn:hover {
  color: var(--forest-green);
}

.product-tab-btn.active {
  color: var(--forest-green);
  border-bottom-color: var(--forest-green);
}

.product-tabs-content {
  max-width: 800px;
}

.product-tabs-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-desc-list {
  color: var(--text-muted);
  line-height: 1.9;
  padding-left: 20px;
}

.product-desc-note {
  font-size: 0.85rem;
}

/* ---- Reviews tab ---- */
.product-review-score {
  text-align: center;
}

.product-review-score-number {
  display: block;
  font-family: 'Mont', sans-serif;
  font-size: 2.4rem;
  color: var(--forest-green);
  line-height: 1;
  margin-bottom: 6px;
}

.product-review-item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
}

.product-review-item:first-of-type {
  border-top: none;
}

.product-review-name {
  font-family: 'Mont', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin: 8px 0 6px;
}

.product-review-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---- Related products ---- */
.related-products-section {
  padding: 20px 0 80px;
  background-color: #fbfbf9;
}

/* ---- Product page responsive ---- */
@media (max-width: 991.98px) {
  .product-gallery {
    margin-bottom: 10px;
  }
}
/* ---- PAGE: product_detail.html (Product detail) — END ---- */


/* =========================================================
   SITE-WIDE: Mega nav dropdown (Electrolytes / Collagen) — START
   Hover-triggered mega menu on desktop, JS-driven collapse on
   mobile. Used on every page's navbar (index.html, shop.html,
   product_detail.html), so it lives in the site-wide section
   even though it's appended near the end of the file.
   ========================================================= */
.mega-nav-item {
  position: static;
}

.mega-nav-trigger::after {
  content: '\F282';
  font-family: bootstrap-icons;
  font-size: 0.6rem;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.6;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.mega-nav-item.mega-open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 40px;
}

/* ---- Heading + underline (shared by both columns) ---- */
.mega-col-heading {
  display: block;
  font-family: 'Mont', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.mega-underline {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 8px;
  background-color: var(--forest-green);
  border-radius: 2px;
}

.mega-share-heading {
  margin-top: 24px;
}

/* ---- Left column: product carousel ---- */
.mega-col-products {
  padding-right: 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-carousel-viewport {
  overflow: hidden;
  margin: 20px 0 24px;
}

.mega-carousel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: mega-marquee 22s linear infinite;
}

.mega-nav-item:hover .mega-carousel-track,
.mega-nav-item.mega-open .mega-carousel-track {
  animation-play-state: running;
}

@keyframes mega-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mega-product-slide {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
}

.mega-product-img-wrap {
  position: relative;
  margin-bottom: 12px;
}

.mega-product-img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background-color: #f8f8f6;
}

.mega-price-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background-color: var(--forest-green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.mega-product-rating {
  font-size: 0.72rem;
  margin-bottom: 6px;
  justify-content: center;
  display: flex;
}

.mega-product-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 0;
}

.mega-view-all-btn {
  font-size: 0.82rem;
  padding: 9px 22px;
}

/* ---- Right column: promo / social ---- */
.mega-col-promo {
  padding-left: 30px;
  position: relative;
  min-height: 320px;
}

.mega-promo-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 260px;
}

.mega-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background-color: var(--forest-green);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mega-play-btn:hover {
  background-color: var(--forest-green-dark);
  transform: scale(1.06);
}

.mega-social-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.mega-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.mega-social-btn:hover {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  color: #fff;
}

.mega-promo-image {
  position: absolute;
  right: -40px;
  bottom: -36px;
  width: 150px;
  border-radius: 16px 0 0 16px;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
}

@media (min-width: 1200px) {
  .mega-promo-image {
    display: block;
  }
}

/* ---- Mobile: collapse into expandable section instead of hover mega-menu ---- */
@media (max-width: 991.98px) {
  .mega-dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    max-height: 0;
    overflow: hidden;
  }

  .mega-nav-item.mega-open .mega-dropdown {
    max-height: 3000px;
  }

  .mega-dropdown-inner {
    padding: 16px 4px 24px;
  }

  .mega-col-products {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .mega-product-slide {
    width: 42vw;
    max-width: 150px;
  }

  .mega-col-promo {
    padding-left: 0;
    min-height: 0;
  }

  .mega-promo-image {
    display: none;
  }

  .mega-nav-trigger {
    position: relative;
  }

  .mega-nav-trigger::after {
    content: '\F282';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.2s ease;
  }

  .mega-nav-item.mega-open .mega-nav-trigger::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
/* ---- SITE-WIDE: Mega nav dropdown — END ---- */


/* =========================================================
   PAGE: cart.html (Shopping cart) — START
   Cart table (desktop/tablet), stacked cards (mobile), order
   summary card, empty-cart state. Cart item data lives in a
   JS array in assets/script.js's cart.html block; this CSS
   only styles the rendered markup.
   ========================================================= */
.cart-section {
  padding: 50px 0 80px;
  background-color: #fff;
}

/* ---- Table (desktop / tablet) ---- */
.cart-table-wrap {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.cart-table {
  margin-bottom: 0;
}

.cart-table thead th {
  background-color: #f8f8f6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 20px;
  vertical-align: middle;
}

.cart-table tbody td {
  padding: 20px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-table tbody tr:last-child td {
  border-bottom: none;
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-product-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background-color: #f8f8f6;
  flex: 0 0 auto;
}

.cart-product-name {
  font-family: 'Mont', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
  display: block;
}

.cart-product-category {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cart-price-cell,
.cart-subtotal-cell {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.cart-subtotal-cell {
  color: var(--forest-green);
}

/* ---- Quantity stepper (shared by table + mobile cards) ---- */
.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.cart-qty-btn {
  border: none;
  background-color: #fff;
  color: var(--forest-green);
  width: 32px;
  height: 38px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-btn:hover {
  background-color: var(--light-green);
}

.cart-qty-input {
  width: 40px;
  height: 38px;
  border: none;
  border-left: 1.5px solid rgba(0, 0, 0, 0.15);
  border-right: 1.5px solid rgba(0, 0, 0, 0.15);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-qty-input:focus {
  outline: none;
}

.cart-remove-btn {
  border: none;
  background: none;
  color: #c0392b;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.cart-remove-btn:hover {
  background-color: rgba(192, 57, 43, 0.1);
}

.cart-continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---- Mobile stacked cards ---- */
.cart-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.cart-item-card-top {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.cart-item-card-info {
  flex: 1 1 auto;
  min-width: 0;
}

.cart-item-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-item-card-subtotal {
  font-weight: 700;
  color: var(--forest-green);
}

/* ---- Order summary card ---- */
.cart-summary-card {
  background-color: #f8f8f6;
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 90px;
}

.cart-summary-heading {
  margin-bottom: 20px;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.cart-summary-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Mont', sans-serif;
  font-size: 1.3rem;
  color: var(--forest-green);
  font-weight: 700;
  padding-top: 16px;
  margin-top: 6px;
  margin-bottom: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.cart-continue-btn-secondary {
  display: block;
  text-align: center;
}

/* ---- Empty cart state ---- */
.cart-empty-state {
  padding: 60px 20px;
}

.cart-empty-icon {
  font-size: 3.2rem;
  color: var(--forest-green);
  opacity: 0.6;
  margin-bottom: 18px;
  display: block;
}

.cart-empty-state h4 {
  margin-bottom: 10px;
}

.cart-empty-state p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ---- Cart page responsive ---- */
@media (max-width: 991.98px) {
  .cart-summary-card {
    position: static;
    margin-top: 10px;
  }
}
/* ---- PAGE: cart.html (Shopping cart) — END ---- */


/* =========================================================
   PAGE: checkout.html (Checkout) — START
   Minimal two-column checkout: form on the left, sticky order
   summary on the right. Doesn't use the full site navbar —
   just a slim top bar with the logo, matching common checkout
   UX conventions (fewer distractions/exit points).
   ========================================================= */

/* ---- Top bar ---- */
.checkout-topbar {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 0;
}

.checkout-logo .brand-logo-img {
  height: 38px;
}

.checkout-back-link {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-back-link i {
  color: var(--forest-green);
}

/* ---- Section / layout ---- */
.checkout-section {
  background-color: #fbfbf9;
  padding: 50px 0 80px;
}

.checkout-block {
  margin-bottom: 36px;
}

.checkout-block h2 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.checkout-block-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.checkout-block-heading h2 {
  margin-bottom: 0;
}

.checkout-signin-link {
  color: var(--forest-green);
  font-size: 0.88rem;
  font-weight: 500;
}

.checkout-signin-link:hover {
  text-decoration: underline;
}

.checkout-block-subtext {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: -10px;
  margin-bottom: 18px;
}

/* ---- Form fields ---- */
.checkout-field {
  margin-bottom: 14px;
}

.checkout-section .form-control,
.checkout-section .form-select {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  font-size: 0.92rem;
}

.checkout-section .form-control:focus,
.checkout-section .form-select:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(84, 119, 67, 0.18);
}

.checkout-section .form-floating > label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.checkout-phone-field {
  position: relative;
  display: flex;
  align-items: center;
}

.checkout-phone-field .form-floating {
  flex: 1 1 auto;
}

.checkout-info-icon {
  position: absolute;
  right: 16px;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: help;
}

.checkout-check {
  margin-bottom: 10px;
}

.checkout-check .form-check-label {
  font-size: 0.88rem;
  color: var(--text-dark);
}

.checkout-check .form-check-input:checked {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
}

.checkout-check .form-check-input:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(84, 119, 67, 0.18);
}

/* ---- Validation state (visual only) ---- */
.checkout-section .form-control.is-invalid,
.checkout-section .form-select.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

/* ---- Selectable option cards (shipping / payment / billing) ---- */
.checkout-option-card {
  display: block;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
  cursor: pointer;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-option-card.active {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 1px var(--forest-green);
  background-color: #f6f9f4;
}

.checkout-option-card.disabled {
  cursor: not-allowed;
  opacity: 0.55;
  background-color: #f8f8f8;
}

.checkout-option-radio {
  margin-right: 10px;
  accent-color: var(--forest-green);
}

.checkout-option-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-shipping-option .checkout-option-main {
  width: 100%;
}

.checkout-option-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.checkout-option-price {
  font-weight: 600;
  color: var(--forest-green);
  font-size: 0.92rem;
}

/* ---- Payment options ---- */
.checkout-payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.checkout-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.checkout-payment-icons .payment-badge {
  font-size: 0.68rem;
  padding: 4px 8px;
}

.checkout-payment-note {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkout-payment-option.active .checkout-payment-note {
  display: block;
}

/* ---- Billing address ---- */
.checkout-billing-form {
  margin-top: 18px;
  padding-top: 6px;
}

/* ---- Pay now button ---- */
.checkout-pay-btn {
  padding: 14px;
  font-size: 1rem;
  margin-top: 10px;
}

/* ---- Order summary (right column) ---- */
.checkout-summary-wrap {
  position: sticky;
  top: 30px;
}

.checkout-summary-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 28px;
}

.checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.checkout-summary-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.checkout-summary-item-img-wrap {
  position: relative;
  flex: 0 0 auto;
}

.checkout-summary-item-img-wrap img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  background-color: #f8f8f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-summary-qty-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--text-muted);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.checkout-summary-item-name {
  flex: 1 1 auto;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.checkout-summary-item-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.checkout-summary-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-family: 'Mont', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-green);
}

.checkout-total-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.checkout-currency-code {
  font-family: 'Mont', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ---- Checkout page responsive ---- */
@media (max-width: 991.98px) {
  .checkout-summary-wrap {
    position: static;
    order: -1;
  }

  .col-lg-5:has(.checkout-summary-wrap) {
    order: -1;
  }
}
/* ---- PAGE: checkout.html (Checkout) — END ---- */


/* =========================================================
   PAGE: order-confirmation.html (Thank you page) — START
   Centered single-column confirmation screen. Reuses the
   .checkout-summary-card / .checkout-summary-item classes
   from checkout.html for the order recap so both pages look
   consistent.
   ========================================================= */
.confirmation-section {
  background-color: #fbfbf9;
  padding: 70px 0 100px;
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: center;
}

.confirmation-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.confirmation-wrap.confirmation-visible {
  opacity: 1;
  transform: translateY(0);
}

.confirmation-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--forest-green);
  color: #fff;
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 10px 26px rgba(84, 119, 67, 0.28);
}

.confirmation-heading {
  font-size: 2rem;
  margin-bottom: 14px;
}

.confirmation-subtext {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 40px;
}

/* ---- Order summary card ---- */
.confirmation-summary-card {
  text-align: left;
  margin-bottom: 32px;
}

.confirmation-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.confirmation-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.confirmation-meta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.confirmation-meta-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.confirmation-summary-items {
  padding-top: 4px;
}

/* ---- Action buttons ---- */
.confirmation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.confirmation-btn {
  min-width: 200px;
}

/* ---- Responsive ---- */
@media (max-width: 575.98px) {
  .confirmation-meta-row {
    grid-template-columns: 1fr;
  }

  .confirmation-actions {
    flex-direction: column;
  }

  .confirmation-btn {
    min-width: 0;
    width: 100%;
  }
}
/* ---- PAGE: order-confirmation.html (Thank you page) — END ---- */


/* =========================================================
   PAGE: signin.html / signup.html (Auth) — START
   Centered auth card shared by both pages. Reuses the full
   site navbar/footer for consistency; only the card in between
   is page-specific markup.
   ========================================================= */
.auth-section {
  background-color: #fbfbf9;
  padding: 60px 0 90px;
}

.auth-card {
  max-width: 460px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.auth-card-wide {
  max-width: 520px;
}

.auth-card-logo {
  text-align: center;
  margin-bottom: 20px;
}

.auth-card-logo img {
  height: 42px;
}

.auth-heading {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 28px;
}

.auth-field {
  margin-bottom: 16px;
}

.auth-section .form-control {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  font-size: 0.92rem;
}

.auth-section .form-control:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(84, 119, 67, 0.18);
}

.auth-section .form-floating > label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.auth-password-field {
  position: relative;
}

.auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.auth-password-toggle:hover {
  color: var(--forest-green);
}

.auth-check {
  margin-bottom: 14px;
}

.auth-check .form-check-label {
  font-size: 0.88rem;
  color: var(--text-dark);
}

.auth-check .form-check-label a {
  color: var(--forest-green);
}

.auth-check .form-check-label a:hover {
  text-decoration: underline;
}

.auth-check .form-check-input:checked {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
}

.auth-check .form-check-input:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(84, 119, 67, 0.18);
}

.auth-check .form-check-input.is-invalid ~ .form-check-label {
  color: #c0392b;
}

.auth-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.auth-link-sm {
  font-size: 0.85rem;
  color: var(--forest-green);
  font-weight: 500;
}

.auth-link-sm:hover {
  text-decoration: underline;
}

.auth-submit-btn {
  padding: 13px;
  font-size: 0.95rem;
  margin-top: 6px;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 26px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.auth-divider span {
  padding: 0 14px;
}

.auth-switch-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.auth-switch-text a {
  color: var(--forest-green);
  font-weight: 600;
}

.auth-switch-text a:hover {
  text-decoration: underline;
}

/* ---- Validation state ---- */
.auth-section .form-control.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.auth-section .invalid-feedback {
  font-size: 0.78rem;
}

/* ---- Responsive ---- */
@media (max-width: 575.98px) {
  .auth-card {
    padding: 30px 22px;
  }
}
/* ---- PAGE: signin.html / signup.html (Auth) — END ---- */


/* =========================================================
   PAGE: about.html (About Us) — START
   Brand story, stats row, team grid. Reuses .shop-banner,
   .shop-breadcrumb-bar, .why-choose-*, .testimonials-*, and
   .newsletter-section from other pages' blocks above.
   ========================================================= */
.about-story-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-story-img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.about-story-heading {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-story-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---- Stats / highlights ---- */
.about-stats-section {
  padding: 60px 0;
  background-color: var(--forest-green);
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-stat-number {
  font-family: 'Mont', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ---- Team ---- */
.about-team-section {
  padding: 80px 0;
  background-color: #fbfbf9;
}

.about-team-card {
  text-align: center;
}

.about-team-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-team-name {
  margin-bottom: 4px;
}

.about-team-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- Simple fade-in-on-scroll ---- */
.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-section.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- About page responsive ---- */
@media (max-width: 767.98px) {
  .about-stat-number {
    font-size: 2rem;
  }
}
/* ---- PAGE: about.html (About Us) — END ---- */


/* =========================================================
   PAGE: contact.html (Contact Us) — START
   Contact info row, contact form + map, social row. Reuses
   .shop-banner / .shop-breadcrumb-bar from shop.html's block
   and .auth-field / form-floating styles from the auth block.
   ========================================================= */
.contact-info-section {
  padding: 70px 0 20px;
  background-color: #fff;
}

.contact-info-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  height: 100%;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--light-green);
  color: var(--forest-green);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-info-card h5 {
  margin-bottom: 8px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---- Contact form + map ---- */
.contact-form-section {
  padding: 60px 0 80px;
  background-color: #fff;
}

.contact-form-heading {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-form-subtext {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 26px;
}

.contact-message-input {
  height: 140px !important;
  resize: none;
}

.contact-success-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  background-color: #f6f9f4;
  border: 1px solid rgba(84, 119, 67, 0.3);
  color: var(--forest-green);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-success-message i {
  margin-right: 6px;
}

.contact-support-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background-color: #fbfbf9;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 26px;
}

.contact-support-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-support-item .contact-info-icon {
  margin: 0;
  flex: 0 0 auto;
}

.contact-support-item h6 {
  margin-bottom: 4px;
}

.contact-support-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ---- Social row ---- */
.contact-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-social-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-social-icons a {
  margin-right: 0;
}

/* ---- Contact page responsive ---- */
@media (max-width: 767.98px) {
  .contact-social-row {
    flex-direction: column;
    gap: 12px;
  }
}
/* ---- PAGE: contact.html (Contact Us) — END ---- */


/* =========================================================
   PAGE: blog.html (Blog listing) — START
   Blog post grid (rendered from a JS data array — post data
   isn't fixed to shop.html's "static HTML only" rule since this
   page's spec explicitly calls for a JS array), sidebar widgets,
   pagination (reuses .shop-pagination from shop.html's block).
   ========================================================= */
.blog-section {
  padding: 60px 0 80px;
  background-color: #fff;
}

/* ---- Blog cards ---- */
.blog-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card-meta .blog-card-category {
  color: var(--forest-green);
}

.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  display: block;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.blog-card-title:hover {
  color: var(--forest-green);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1 1 auto;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}

.blog-read-more:hover {
  text-decoration: underline;
}

/* ---- Sidebar ---- */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.blog-widget {
  background-color: #fbfbf9;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 24px;
}

.blog-widget-heading {
  font-family: 'Mont', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 18px;
}

/* ---- Search widget ---- */
.blog-search-box {
  display: flex;
  gap: 8px;
}

.blog-search-input {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  font-size: 0.88rem;
}

.blog-search-input:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(84, 119, 67, 0.18);
}

.blog-search-btn {
  flex: 0 0 auto;
  width: 44px;
  border: none;
  border-radius: 10px;
  background-color: var(--forest-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.blog-search-btn:hover {
  background-color: var(--forest-green-dark);
}

/* ---- Categories widget ---- */
.blog-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-category-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-category-list li:last-child {
  border-bottom: none;
}

.blog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.blog-category-list a:hover {
  color: var(--forest-green);
}

.blog-category-list a span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ---- Recent posts widget ---- */
.blog-recent-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-recent-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-recent-item img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
}

.blog-recent-item > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.blog-recent-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.blog-recent-item:hover .blog-recent-title {
  color: var(--forest-green);
}

.blog-recent-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- Tags widget ---- */
.blog-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50px;
  padding: 6px 14px;
  transition: all 0.2s ease;
}

.blog-tag:hover {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  color: #fff;
}

/* ---- Compact newsletter widget ---- */
.blog-newsletter-widget {
  background-color: var(--forest-green);
}

.blog-newsletter-widget .blog-widget-heading {
  color: #fff;
}

.blog-newsletter-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-newsletter-input {
  border-radius: 10px;
  border: none;
  font-size: 0.88rem;
}

.blog-newsletter-btn {
  font-size: 0.85rem;
}

.blog-newsletter-widget .newsletter-message.success {
  color: #cfe9c9;
}

.blog-newsletter-widget .newsletter-message.error {
  color: #f5b8b0;
}

/* ---- Blog page responsive ---- */
@media (max-width: 991.98px) {
  .blog-sidebar {
    margin-top: 10px;
  }
}
/* ---- PAGE: blog.html (Blog listing) — END ---- */


/* =========================================================
   PAGE: blog-post.html (Blog post detail) — START
   Article body, tags/share rows, author bio, comments, related
   posts. Reuses .blog-card / .blog-sidebar / .blog-widget-* /
   .blog-tag / .auth-field / form-floating styles from other
   blocks above — only article-specific pieces are defined here.
   ========================================================= */
.blog-post-featured-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 22px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.blog-post-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-post-body h3 {
  font-size: 1.3rem;
  margin: 32px 0 14px;
}

.blog-post-blockquote {
  border-left: 4px solid var(--forest-green);
  background-color: #f6f9f4;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-family: 'Mont', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 28px 0;
}

.blog-post-tags {
  margin: 30px 0 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ---- Social share row ---- */
.blog-share-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-share-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.blog-share-icons {
  display: flex;
  gap: 10px;
}

.blog-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background-color: #fff;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.blog-share-btn:hover {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  color: #fff;
}

/* ---- Author bio ---- */
.blog-author-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: #fbfbf9;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 50px;
}

.blog-author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.blog-author-name {
  margin-bottom: 6px;
}

.blog-author-bio {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---- Comments ---- */
.blog-comments-section {
  margin-bottom: 60px;
}

.blog-comments-heading {
  margin-bottom: 26px;
}

.blog-comment-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.blog-comment-item {
  display: flex;
  gap: 16px;
}

.blog-comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.blog-comment-body {
  flex: 1 1 auto;
  min-width: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding-bottom: 20px;
}

.blog-comment-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.blog-comment-name {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.blog-comment-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-comment-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.blog-comment-item.blog-comment-new .blog-comment-body {
  animation: blog-comment-highlight 1.6s ease;
}

@keyframes blog-comment-highlight {
  0% { background-color: #f6f9f4; }
  100% { background-color: transparent; }
}

.blog-comment-form-wrap {
  background-color: #fbfbf9;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 28px;
}

.blog-comment-form-heading {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* ---- Related posts ---- */
.blog-related-section {
  margin-top: 10px;
}

.blog-related-heading {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

/* ---- Blog post responsive ---- */
@media (max-width: 575.98px) {
  .blog-author-card {
    flex-direction: column;
    text-align: center;
  }

  .blog-share-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* ---- PAGE: blog-post.html (Blog post detail) — END ---- */


/* =========================================================
   PAGE: account.html (My Account dashboard) — START
   Sidebar nav + tabbed content panels (Dashboard / Orders /
   Addresses / Account Details). Reuses .shop-banner,
   .shop-breadcrumb-bar, .shop-pagination, .shop-product-card,
   .auth-field / form-floating and .contact-success-message
   from other page blocks above.
   ========================================================= */
.account-section {
  padding: 50px 0 80px;
  background-color: #fbfbf9;
}

/* ---- Sidebar ---- */
.account-sidebar {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 26px;
  position: sticky;
  top: 90px;
}

.account-user-card {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.account-user-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.account-user-name {
  margin-bottom: 4px;
}

.account-user-email {
  font-size: 0.8rem;
  color: var(--text-muted);
  word-break: break-word;
}

.account-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.account-nav-link i {
  font-size: 1.05rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.account-nav-link:hover {
  background-color: #f6f9f4;
  color: var(--forest-green);
}

.account-nav-link.active {
  background-color: var(--forest-green);
  color: #fff;
}

.account-nav-link.active i {
  color: #fff;
}

.account-nav-logout {
  color: #c0392b;
  margin-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
  border-radius: 0;
}

.account-nav-logout i {
  color: #c0392b;
}

.account-nav-logout:hover {
  background-color: rgba(192, 57, 43, 0.08);
  color: #c0392b;
}

/* ---- Content panel ---- */
.account-content {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 32px;
}

.account-tab-pane {
  display: none;
}

.account-tab-pane.active {
  display: block;
}

.account-tab-heading {
  margin-bottom: 8px;
}

.account-tab-subtext {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.account-subheading {
  font-size: 1.05rem;
  margin: 30px 0 16px;
}

/* ---- Dashboard summary cards ---- */
.account-summary-row {
  margin-bottom: 34px;
}

.account-summary-card {
  background-color: #fbfbf9;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.account-summary-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--light-green);
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.account-summary-number {
  font-family: 'Mont', sans-serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  line-height: 1;
}

.account-summary-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- Tables (dashboard mini-table + full orders table) ---- */
.account-table-wrap {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  overflow-x: auto;
}

.account-table {
  margin-bottom: 0;
  min-width: 560px;
}

.account-table thead th {
  background-color: #f8f8f6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 18px;
  white-space: nowrap;
}

.account-table tbody td {
  padding: 16px 18px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.88rem;
  white-space: nowrap;
}

.account-table tbody tr:last-child td {
  border-bottom: none;
}

.account-view-link {
  color: var(--forest-green);
  font-weight: 600;
  font-size: 0.85rem;
}

.account-view-link:hover {
  text-decoration: underline;
}

/* ---- Order status badges ---- */
.order-status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.status-processing {
  background-color: #fdf3d6;
  color: #a3760a;
}

.status-shipped {
  background-color: #dbeafe;
  color: #1d5fae;
}

.status-delivered {
  background-color: #dcf3d8;
  color: #2f6b28;
}

.status-cancelled {
  background-color: #fbe0dd;
  color: #b23a2e;
}

/* ---- Addresses tab ---- */
.account-address-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
}

.account-address-card h6 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.account-address-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.account-add-address-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---- Address add/edit modal ---- */
.address-modal-content {
  border-radius: 16px;
  border: none;
}

.address-modal-content .modal-header,
.address-modal-content .modal-footer {
  border-color: rgba(0, 0, 0, 0.08);
}

.address-modal-content .modal-title {
  font-size: 1.2rem;
}

.address-modal-content .auth-field:last-child {
  margin-bottom: 0;
}

.account-empty-state {
  text-align: center;
  padding: 60px 20px;
}

.account-empty-state i {
  font-size: 2.6rem;
  color: var(--forest-green);
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}

.account-empty-state p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ---- Account details form ---- */
.account-save-btn {
  padding: 12px 32px;
  margin-top: 10px;
}

/* ---- Account page responsive ---- */
@media (max-width: 991.98px) {
  .account-sidebar {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .account-content {
    padding: 22px;
  }
}
/* ---- PAGE: account.html (My Account dashboard) — END ---- */

/* =========================================================
   PRODUCT QUICK VIEW MODAL — START
   ========================================================= */
.quick-view-modal-content {
  border-radius: 14px;
  border: none;
}

.quick-view-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.quick-view-title {
  font-weight: 700;
  margin: 6px 0 10px;
}

.quick-view-price {
  margin-bottom: 14px;
}

.quick-view-desc {
  color: var(--text-muted, #6c757d);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.quick-view-full-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-green);
  text-decoration: none;
}

.quick-view-full-link:hover {
  text-decoration: underline;
}
/* ---- PRODUCT QUICK VIEW MODAL — END ---- */
