#preloader,
.hero,
.nav-links,
.navbar {
  display: flex;
}
.logo,
.stat-pill .num {
  font-size: 2rem;
  font-weight: 700;
}
#origins,
.about-badge,
.feature-item,
.process-header,
.section-header,
.stat-pill,
.step-item {
  text-align: center;
}
html, body {
    overflow-x: hidden;
}
.menu-toggle{color:#c9821a;}
#origins,
#process,
.card-img,
.coffee-card,
.hero {
  overflow: hidden;
}
.card-brand-icon,
.faq-search-icon,
.search-clear {
  transform: translateY(-50%);
}
.faq-a-inner ul,
.faq-q,
.footer-col ul,
.legal-list,
.nav-links,
.quick-nav,
.toc-list {
  list-style: none;
}
#preloader.fade-out,
#scrollTop,
.mobile-overlay {
  opacity: 0;
  visibility: hidden;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --espresso: #1a0e07;
  --dark-roast: #2e1a0f;
  --coffee: #5c3320;
  --latte: #c9a07a;
  --cream: #f3e4d0;
  --warm-white: #fdf7f0;
  --gold: #c9821a;
  --gold-light: #e8a84a;
  --sage: #7a8c6e;
  --shadow-md: 0 20px 40px -8px rgba(26, 14, 7, 0.18);
  --shadow-lg: 0 30px 60px -15px rgba(26, 14, 7, 0.28);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: all 0.35s var(--ease);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--warm-white);
  color: var(--espresso);
  line-height: 1.7;
  overflow-x: hidden;
}
.logo,
.preloader-text,
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}
img {
  display: block;
  width: 100%;
}
.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 1%;
}
.hero h1,
.hero-tag {
  margin-bottom: 1.5rem;
}
section {
  padding: 7rem 5%;
}
#preloader {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s, visibility 0.7s;
}
.preloader-text {
  font-size: 2rem;
  color: var(--latte);
  margin-top: 2rem;
  letter-spacing: 0.12em;
  animation: 1.5s ease-in-out infinite pulse-text;
}
@keyframes pulse-text {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.coffee-cup {
  position: relative;
  width: 80px;
  height: 70px;
  background: var(--coffee);
  border-radius: 0 0 30px 30px;
  box-shadow: 0 8px 0 var(--dark-roast);
  animation: 2s infinite alternate fill;
}
.coffee-cup::before,
.steam {
  height: 30px;
  position: absolute;
}
.coffee-cup::before {
  content: "";
  top: 15px;
  right: -18px;
  width: 20px;
  border: 5px solid var(--coffee);
  border-left: none;
  border-radius: 0 30px 30px 0;
}
.qty-btn,
.steam {
  border-radius: 10px;
}
.steam {
  top: -35px;
  left: 20px;
  width: 8px;
  background: rgba(255, 245, 230, 0.75);
  filter: blur(2px);
  animation: 1.8s infinite steam;
}
.nav-links a:hover::after,
.navbar {
  width: 100%;
}
.steam:nth-child(2) {
  left: 35px;
  animation-delay: 0.4s;
  height: 35px;
}
.steam:nth-child(3) {
  left: 50px;
  animation-delay: 0.8s;
  height: 25px;
}
@keyframes steam {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-25px) scaleX(1.2);
    opacity: 0;
  }
}
@keyframes fill {
  0% {
    box-shadow: 0 8px 0 var(--dark-roast);
  }
  100% {
    box-shadow: 0 15px 0 var(--dark-roast);
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1.4rem 5%;
  justify-content: space-between;
  align-items: center;
  background: 0 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  z-index: 100;
}
.hero,
.hero-content,
.nav-links a {
  position: relative;
}
.logo,
.nav-links a {
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(253, 247, 240, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(26, 14, 7, 0.1);
  padding: 1rem 5%;
}
.logo {
  color: var(--cream);
  letter-spacing: -0.01em;
}
.logo span {
  color: var(--gold-light);
}
.faq-a-inner strong,
.scrolled .logo,
.section-header h2 {
  color: var(--espresso);
}
.footer-logo span,
.meta-bar i,
.origins-inner .label,
.popular-item-text a:hover,
.process-header .label,
.quick-nav a.active i,
.quick-nav a:hover i,
.related-mini-text a:hover,
.scrolled .logo span,
.scrolled .nav-links a:hover,
.toc-list a.active i,
.toc-list a:hover i,
.updated-bar i {
  color: var(--gold);
}
.nav-links {
  gap: 2.2rem;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}
.about-badge span,
.stat-pill .lbl {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width 0.3s;
}
.comment-reply-btn:hover,
.faq-item.open .faq-q-text,
.post-link:hover,
.related-link:hover,
.scrolled .nav-links a {
  color: var(--coffee);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--espresso) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201, 130, 26, 0.35) !important;
}
.nav-cta::after {
  display: none !important;
}
.hero {
  min-height: 100vh;
  background: linear-gradient(
      160deg,
      rgba(26, 14, 7, 0.72) 0,
      rgba(46, 26, 15, 0.55) 60%,
      rgba(92, 51, 32, 0.3) 100%
    ),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80")
      center/cover;
  align-items: center;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--warm-white), transparent);
}
.hero-content {
  max-width: 760px;
  padding: 2rem 5%;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: rgba(201, 130, 26, 0.2);
  border: 1px solid rgba(201, 162, 122, 0.4);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
}
.hero h1 {
  font-size: clamp(3.2rem, 7vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
}
.article-hero h1 em,
.blog-hero h1 em,
.hero h1 em,
.page-header h1 em,
.page-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-outline,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--espresso);
  font-weight: 600;
  border: none;
  border-radius: 50px;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 130, 26, 0.4);
}
.about-img-main,
.coffee-card:hover,
.feature-item:hover {
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: 0 0;
  color: #fff;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.about-badge,
.card-price,
.stat-pill .num,
.step-num {
  font-family: "Playfair Display", serif;
}
.faq-search,
.stat-pill {
  backdrop-filter: blur(12px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.hero-stats {
  position: absolute;
  bottom: 10rem;
  right: 5%;
  display: flex;
  gap: 1.5rem;
  z-index: 1;
}
.stat-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  color: #fff;
}
.stat-pill .num {
  display: block;
}
.stat-pill .lbl {
  font-size: 0.78rem;
  opacity: 0.75;
}
.marquee-strip {
  background: var(--espresso);
  color: var(--latte);
}
#about,
#testimonials,
#why,
.faq-item.open .faq-q,
.faq-q:hover,
.rs-item:hover {
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}
.about-visual,
.card-field-wrap {
  position: relative;
}
.about-img-main {
  border-radius: 30px;
  height: 520px;
  object-fit: cover;
}
.about-badge,
.about-img-accent {
  box-shadow: var(--shadow-md);
  position: absolute;
}
.about-img-accent {
  bottom: -2rem;
  right: -2.5rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid var(--warm-white);
}
.about-badge {
  top: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--espresso);
  padding: 1.2rem;
  border-radius: 20px;
}
#process,
.card-img,
.step-item,
.step-num,
.steps-grid {
  position: relative;
}
.about-badge strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}
.about-badge span {
  font-size: 0.75rem;
}
.about-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.about-text h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-text p {
  color: #5a4035;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.about-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--coffee);
  font-weight: 500;
}
.highlight i,
.prose-divider span {
  color: var(--gold);
  font-size: 1.1rem;
}
#process {
  background: var(--espresso);
}
#process::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 130, 26, 0.15) 0,
    transparent 70%
  );
  border-radius: 50%;
}
.process-header {
  margin-bottom: 4rem;
}
.process-header h2 {
  font-size: 2.8rem;
  color: #fff;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 3.8rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--coffee), var(--gold));
  opacity: 0.4;
}
.step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--coffee));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 24px rgba(201, 130, 26, 0.35);
  z-index: 1;
}
.coffee-card,
.feature-item {
  box-shadow: var(--shadow-md);
}
.step-item h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.step-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.93rem;
}
@media (max-width: 780px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.88rem;
  }
  .logo {
    font-size: 1.5rem;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
}
#brew,
#contact,
#products,
.accept-btn.no:hover {
  background: var(--cream);
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-header p {
  color: #6b5040;
  max-width: 500px;
  margin: 0.8rem auto 0;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}
.coffee-card {
  background: var(--warm-white);
  border-radius: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.coffee-card:hover {
  transform: translateY(-10px);
}
.card-img {
  height: 260px;
}
.card-img img,
.featured-img img,
.post-card-img img,
.related-card-img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.coffee-card:hover .card-img img,
.popular-item:hover .popular-thumb img {
  transform: scale(1.08);
}
.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--espresso);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.card-content {
  padding: 1.2rem 1.2rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.card-content p {
  color: #6b5040;
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.2rem;
}
.card-notes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.note-chip {
  background: var(--cream);
  color: var(--coffee);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  border: 1px solid var(--latte);
}
#origins,
.card-btn {
  background: var(--espresso);
}
.card-footer,
.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-price {
  font-size: 1.4rem;
  color: var(--espresso);
  font-weight: 700;
}
.brew-tab,
.card-btn {
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.card-btn {
  color: var(--cream);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.88rem;
}
.accept-btn.yes:hover,
.action-btn.primary:hover,
.card-btn:hover,
.promo-btn:hover,
.read-btn:hover {
  background: var(--gold);
  color: var(--espresso);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-item {
  padding: 2.5rem 1.5rem;
  border-radius: 28px;
  background: #fff;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.feature-item:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--gold);
}
.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cream), var(--latte));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--coffee);
  box-shadow: 0 6px 16px rgba(92, 51, 32, 0.15);
}
.feature-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.feature-item p {
  color: #6b5040;
  font-size: 0.93rem;
}
#origins {
  position: relative;
}
#origins::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=20")
    center/cover;
  opacity: 0.08;
}
.origins-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.origins-inner h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1rem;
}
.origins-inner > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3.5rem;
  font-size: 1.05rem;
}
.origins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.origin-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  transition: var(--transition);
  text-align: left;
}
.action-card,
.blend-promo,
.confirm-card,
.confirm-steps,
.empty-cart,
.express-checkout p,
.gallery-header,
.no-results,
.page-hero,
.qty-num,
.stat-item,
.upsell-card {
  text-align: center;
}
.origin-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}
.origin-flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.origin-card h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.origin-card .origin-region {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.origin-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.brew-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.brew-tab {
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  border: 1.5px solid var(--latte);
  background: 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--coffee);
}
.brew-step-num,
.reviewer-avatar {
  font-family: "Playfair Display", serif;
}
.action-btn.outline:hover,
.author-social a:hover,
.back-btn:hover,
.brew-tab.active,
.brew-tab:hover,
.expand-all-btn:hover,
.filter-tab.active,
.filter-tab:hover,
.helpful-btn:hover,
.like-btn.liked,
.like-btn:hover,
.page-btn.active,
.page-btn:hover,
.payment-tab.active,
.share-icon:hover,
.upsell-add-btn:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.brew-content,
.payment-panel,
.radio-card input[type="radio"],
.view {
  display: none;
}
.brew-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.brew-steps,
.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.brew-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(26, 14, 7, 0.07);
  transition: var(--transition);
}
.brew-step:hover,
.step-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.brew-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--espresso);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.info-icon,
.reviewer-avatar {
  width: 44px;
  height: 44px;
  font-size: 1rem;
}
.brew-img,
.testimonial-card {
  border-radius: 28px;
  overflow: hidden;
}
.brew-step-text strong {
  display: block;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}
.brew-step-text span,
.info-item span {
  color: #6b5040;
  font-size: 0.9rem;
}
.brew-img {
  box-shadow: var(--shadow-lg);
}
.contact-form,
.legal-section,
.testimonial-card {
  box-shadow: var(--shadow-md);
}
.brew-img img {
  height: 420px;
  object-fit: cover;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  padding: 2.2rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--latte));
}
.featured-post:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.stars {
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-card p {
  color: #3e2f24;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.reviewer,
.step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.reviewer-avatar {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--latte), var(--coffee));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
#scrollTop,
.footer-col ul li a:hover,
.info-icon {
  color: var(--gold-light);
}
.radio-card-info strong,
.reviewer-info strong {
  display: block;
  color: var(--espresso);
  font-size: 0.95rem;
}
.reviewer-info span {
  color: #8a7060;
  font-size: 0.8rem;
}
#gallery {
  padding: 0 5% 7rem;
  background: var(--warm-white);
}
.gallery-header {
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.2rem;
  border-radius: 28px;
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
#scrollTop,
.footer-col ul li a,
.gallery-overlay,
.gallery-overlay i,
.newsletter-form button,
.social-links a,
.submit-btn {
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 7, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(26, 14, 7, 0.35);
}
.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
}
.gallery-item:hover .gallery-overlay i {
  opacity: 1;
}
@media (max-width: 700px) {
  .hero-stats {
    display: none;
  }
  .origins-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-row: span 1;
  }
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h3,
.form-group,
.input-group {
  margin-bottom: 1rem;
}
.contact-info h3 {
  font-size: 2rem;
}
.contact-info > p {
  color: #6b5040;
  margin-bottom: 2rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  border-radius: 14px;
  flex-shrink: 0;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
}
.submit-btn,
footer {
  color: var(--cream);
}
.info-item strong {
  display: block;
  color: var(--espresso);
  margin-bottom: 0.15rem;
}
.contact-form {
  background: #fff;
  border-radius: 32px;
  padding: 3rem;
}
#scrollTop,
.submit-btn,
footer {
  background: var(--espresso);
}
.form-row,
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.input-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 1rem 1.3rem;
  border: 1.5px solid #e0d0c0;
  border-radius: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.97rem;
  background: var(--warm-white);
  color: var(--espresso);
  transition: var(--transition);
}
.footer-col h4,
.footer-logo {
  font-family: "Playfair Display", serif;
}
.footer-col ul li a,
.footer-col > p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.65);
}
.input-group textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 120px;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 130, 26, 0.15);
  background: #fff;
}
.submit-btn {
  width: 100%;
  letter-spacing: 0.04em;
}
.submit-btn:hover {
  background: var(--coffee);
  box-shadow: 0 12px 28px rgba(26, 14, 7, 0.3);
}
footer {
  padding: 5rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col > p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.accept-btn,
.action-btn,
.cart-item-price .original,
.legal-table thead th,
.newsletter-form button,
.newsletter-form input,
.save-prefs-btn {
  font-family: "DM Sans", sans-serif;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  text-decoration: none;
}
.footer-col ul li a:hover {
  padding-left: 4px;
}
.footer-col .contact-item {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}
.footer-col .contact-item i {
  color: var(--gold);
  margin-top: 0.2rem;
  width: 16px;
  flex-shrink: 0;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
}
.newsletter-form input {
  padding: 0.85rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.grind-select:focus,
.newsletter-form input:focus {
  outline: 2px solid var(--gold);
}
.newsletter-form button {
  padding: 0.85rem;
  border-radius: 50px;
  border: none;
  background: var(--gold);
  color: var(--espresso);
  font-weight: 600;
  cursor: pointer;
}
.newsletter-form button:hover,
.search-bar button:hover,
.sidebar-newsletter button:hover {
  background: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
.footer-bottom .heart,
.like-btn i {
  color: #e06060;
}
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 14, 7, 0.35);
  z-index: 99;
}
#scrollTop.show,
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
#scrollTop:hover {
  background: var(--gold);
  color: var(--espresso);
  transform: translateY(-3px);
}
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}
.legal-layout {
  max-width: 1260px;
  margin: 0 auto;
  padding: 4rem 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
}
.legal-section {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid transparent;
  transition: border-color 0.3s;
}
.legal-section:hover {
  border-left-color: var(--gold);
}
.legal-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--cream);
}
.section-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cream), var(--latte));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--coffee);
  box-shadow: 0 4px 12px rgba(92, 51, 32, 0.15);
}
.section-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.15rem;
}
.legal-section h2 {
  font-size: 1.45rem;
  color: var(--espresso);
  line-height: 1.2;
  margin: 0;
}
.legal-prose p {
  font-size: 0.97rem;
  color: #4a3528;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.contact-card a:last-child,
.faq-a-inner p:last-child,
.legal-prose p:last-child {
  margin-bottom: 0;
}
.legal-prose h3 {
  font-size: 1.08rem;
  color: var(--espresso);
  margin: 1.6rem 0 0.6rem;
  font-family: "Playfair Display", serif;
}
.legal-prose strong,
.prose strong,
.step.active .step-label {
  color: var(--espresso);
  font-weight: 600;
}
.legal-prose a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.right-card,
.toc-list a {
  transition: var(--transition);
}
.faq-a-inner a:hover,
.legal-prose a:hover {
  color: var(--coffee);
  text-decoration: underline;
}
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1rem 0 1.2rem;
}
.legal-callout,
.legal-success,
.legal-warn {
  padding: 1.4rem 1.6rem;
  margin: 1.4rem 0;
  display: flex;
  gap: 1rem;
}
.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #4a3528;
  line-height: 1.65;
}
.legal-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.legal-list.numbered {
  counter-reset: lc;
}
.legal-list.numbered li {
  counter-increment: lc;
}
.legal-list.numbered li::before {
  content: counter(lc);
  background: var(--espresso);
  color: var(--gold-light);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.18rem;
}
.legal-callout {
  background: linear-gradient(135deg, #fff8ee, #fdf0de);
  border: 1.5px solid var(--latte);
  border-radius: 16px;
  align-items: flex-start;
}
.legal-callout .ci {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.legal-callout-text strong {
  display: block;
  color: var(--espresso);
  margin-bottom: 0.3rem;
  font-size: 0.97rem;
}
.legal-callout-text span {
  color: #6b5040;
  font-size: 0.92rem;
  line-height: 1.65;
}
.legal-warn {
  background: #fff5f0;
  border: 1.5px solid #e8b49a;
  border-radius: 16px;
  align-items: flex-start;
}
.legal-success .ci,
.legal-warn .ci {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.legal-warn-text strong {
  display: block;
  color: #8b3a1a;
  margin-bottom: 0.3rem;
  font-size: 0.97rem;
}
.legal-warn-text span {
  color: #7a4030;
  font-size: 0.92rem;
  line-height: 1.65;
}
.legal-success {
  background: #f0faf3;
  border: 1.5px solid #a8d5b5;
  border-radius: 16px;
  align-items: flex-start;
}
.legal-success-text strong {
  display: block;
  color: #1a5c30;
  margin-bottom: 0.3rem;
  font-size: 0.97rem;
}
.legal-success-text span {
  color: #2a6040;
  font-size: 0.92rem;
  line-height: 1.65;
}
.legal-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0;
}
.data-table,
.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.a-table thead,
.contact-card,
.legal-table thead,
.sidebar-newsletter {
  background: var(--espresso);
}
.legal-table thead th {
  padding: 0.9rem 1.2rem;
  text-align: left;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.data-table tbody tr,
.legal-table tbody tr {
  border-bottom: 1px solid var(--cream);
  transition: background 0.2s;
}
.a-table tbody tr:last-child,
.data-table tbody tr:last-child,
.legal-table tbody tr:last-child,
.summary-row:last-child {
  border-bottom: none;
}
.a-table tbody tr:hover,
.data-table tbody tr:hover,
.legal-table tbody tr:hover {
  background: #fdf0e0;
}
.legal-table td {
  padding: 0.85rem 1.2rem;
  font-size: 0.9rem;
  color: #3a2a1e;
  vertical-align: top;
  line-height: 1.6;
}
.legal-table td:first-child {
  font-weight: 600;
  color: var(--espresso);
  white-space: nowrap;
}
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.badge.yes {
  background: #e6f4eb;
  color: #1a6632;
}
.badge.no {
  background: #fdecea;
  color: #8b1a1a;
}
.badge.maybe {
  background: #fff4e0;
  color: #8b5a00;
}
.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.right-card {
  background: var(--warm-white);
  border: 1.5px solid var(--cream);
  border-radius: 18px;
  padding: 1.4rem;
}
.right-card:hover {
  border-color: var(--gold);
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.right-card-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}
.right-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.right-card h4 {
  font-size: 1rem;
  color: var(--espresso);
}
.right-card p {
  font-size: 0.87rem;
  color: #6b5040;
  line-height: 1.6;
}
.legal-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.legal-divider::after,
.legal-divider::before,
.prose-divider::after,
.prose-divider::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--cream);
}
.legal-divider span,
.trust-badge i {
  color: var(--gold);
  font-size: 0.9rem;
}
.faq-sidebar,
.legal-sidebar {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.related-list,
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.toc-list a {
  align-items: center;
  gap: 0.7rem;
  color: var(--coffee);
}
.toc-list a i {
  font-size: 0.65rem;
  color: var(--latte);
  flex-shrink: 0;
  transition: color 0.3s;
}
.quick-nav a.active,
.quick-nav a:hover,
.toc-list a.active,
.toc-list a:hover {
  background: var(--cream);
  color: var(--espresso);
  border-left-color: var(--gold);
  padding-left: 1rem;
}
.rights-summary {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.rs-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem;
  border-radius: 12px;
  transition: background 0.2s;
}
.rs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rs-dot.green {
  background: #3dab6d;
}
.contact-card h4::after,
.rs-dot.gold,
.sidebar-newsletter h4::after,
.toggle input:checked + .toggle-slider {
  background: var(--gold);
}
.rs-item span {
  font-size: 0.85rem;
  color: var(--coffee);
}
.action-card p {
  font-size: 0.88rem;
  color: #6b5040;
  margin-bottom: 1.2rem;
}
.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.8rem;
  border-radius: 50px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.7rem;
}
.accept-btn.yes,
.action-btn.primary,
.btn-outline-dark:hover,
.cat-item:hover .cat-count,
.data-table thead {
  background: var(--espresso);
  color: var(--cream);
}
.accept-btn.no,
.action-btn.outline {
  background: 0 0;
  color: var(--coffee);
  border: 1.5px solid var(--latte);
}
.consent-section {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1.5px solid var(--latte);
}
.consent-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--espresso);
}
.consent-toggles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.consent-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26, 14, 7, 0.06);
  gap: 1rem;
}
.save-prefs-btn,
.toggle-slider {
  border-radius: 50px;
  cursor: pointer;
}
.consent-info strong {
  display: block;
  color: var(--espresso);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.consent-info span {
  color: #6b5040;
  font-size: 0.83rem;
}
.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}
.post-date,
.post-read,
.toggle-label {
  font-size: 0.8rem;
  color: #8a7060;
}
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ddd;
  transition: 0.3s;
}
.accept-btn,
.commit-item,
.save-prefs-btn,
.step-circle,
.step-label {
  transition: var(--transition);
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.toggle input:checked + .toggle-slider::before {
  transform: translateX(22px);
}
.toggle input:disabled + .toggle-slider {
  background: var(--latte);
  cursor: not-allowed;
  opacity: 0.7;
}
.step-line.done,
.toggle input:disabled:checked + .toggle-slider {
  background: var(--sage);
}
.save-prefs-btn {
  margin-top: 1.2rem;
  padding: 0.85rem 2.5rem;
  border: none;
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.97rem;
  font-weight: 600;
}
.save-prefs-btn:hover,
.submit-btn:hover {
  background: var(--gold);
  color: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 130, 26, 0.3);
}
.accept-banner {
  background: #fff;
  border-top: 1px solid var(--cream);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: sticky;
  bottom: 0;
  z-index: 90;
  box-shadow: 0 -8px 32px rgba(26, 14, 7, 0.1);
}
.cart-item,
.step-wizard {
  box-shadow: 0 4px 16px rgba(26, 14, 7, 0.07);
}
.accept-banner p {
  font-size: 0.9rem;
  color: #6b5040;
  max-width: 700px;
}
.accept-banner p a {
  color: var(--gold);
  font-weight: 500;
}
.accept-btns {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
.accept-btn {
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.cart-item-name,
.cart-item-price,
.confirm-order-num strong,
.stat-item strong,
.summary-row.total span:first-child,
.summary-row.total span:last-child {
  font-family: "Playfair Display", serif;
}
.page-hero {
  padding: 10rem 5% 5rem;
  background: linear-gradient(
    160deg,
    var(--espresso) 0,
    var(--dark-roast) 55%,
    var(--coffee) 100%
  );
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=20")
    center/cover;
  opacity: 0.06;
}
.blog-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--warm-white), transparent);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.article-cat,
.page-hero-tag {
  display: inline-block;
  background: rgba(201, 130, 26, 0.2);
  border: 1px solid rgba(201, 162, 122, 0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.meta-bar,
.updated-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--latte);
  padding: 0.9rem 5%;
  text-align: center;
  font-size: 0.88rem;
  color: var(--coffee);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.meta-bar span,
.updated-bar span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.commitment-strip {
  background: var(--espresso);
  padding: 2.5rem 5%;
}
.commitment-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.commit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.commit-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 130, 26, 0.3);
}
.commit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-shrink: 0;
  background: rgba(201, 130, 26, 0.15);
  border: 1px solid rgba(201, 130, 26, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-light);
}
.commit-text strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}
.commit-text span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-badge,
  .about-img-accent {
    display: none;
  }
  .commitment-inner,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .commitment-inner {
    grid-template-columns: 1fr;
  }
}
.step-wizard {
  background: #fff;
  border-bottom: 1px solid var(--cream);
  padding: 1.2rem 5%;
  top: 72px;
  z-index: 80;
}
.step-wizard-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--latte);
  background: #fff;
  color: var(--latte);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #b09080;
  white-space: nowrap;
}
.step.active .step-circle {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--gold-light);
}
.step.done .step-circle {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.radio-card-price.free,
.step.done .step-label {
  color: var(--sage);
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--cream);
  min-width: 40px;
  max-width: 100px;
  margin: 0 0.5rem;
  transition: background 0.4s;
}
.cart-item,
.clear-cart-btn {
  transition: var(--transition);
}
.checkout-layout {
  max-width: 1260px;
  margin: 0 auto;
  padding: 3rem 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.view.active {
  display: block;
  animation: fadeSlide 0.4s var(--ease) both;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.cart-item-img,
.qty-control {
  align-items: center;
}
.cart-header h2 {
  font-size: 1.6rem;
}
.clear-cart-btn {
  background: 0 0;
  border: 1.5px solid var(--latte);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #a08070;
  cursor: pointer;
}
.clear-cart-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.cart-item {
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.4rem;
  border: 1.5px solid transparent;
}
.cart-item-meta,
.cart-item-top,
.qty-control {
  gap: 0.5rem;
  display: flex;
}
.cart-item-img,
.cart-item-img img {
  border-radius: 16px;
  object-fit: cover;
}
.cart-item:hover {
  border-color: var(--latte);
  box-shadow: var(--shadow-md);
}
.cart-item-img {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--cream), var(--latte));
  display: flex;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
}
.cart-item-body {
  flex: 1;
  min-width: 0;
}
.cart-item-top {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.3rem;
}
.cart-item-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--espresso);
}
.cart-item-remove {
  background: 0 0;
  border: none;
  color: #c9a07a;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.25s;
  padding: 0.2rem;
  flex-shrink: 0;
}
.meta-chip,
.qty-btn {
  color: var(--coffee);
}
.cart-item-remove:hover {
  color: var(--red);
}
.cart-item-meta {
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.meta-chip {
  background: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.18rem 0.65rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.grind-select,
.qty-btn {
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.blog-hero-tag,
.category-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.btn-gold,
.qty-btn {
  align-items: center;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--latte);
  font-size: 1rem;
  display: flex;
  justify-content: center;
}
.cart-item-price,
.qty-num {
  font-weight: 700;
  color: var(--espresso);
}
.qty-btn:hover {
  background: var(--espresso);
  color: var(--gold-light);
  border-color: var(--espresso);
}
.qty-num {
  font-size: 1rem;
  min-width: 24px;
}
.cart-item-price {
  font-size: 1.2rem;
}
.cart-item-price .original {
  font-size: 0.85rem;
  color: #b09080;
  text-decoration: line-through;
  margin-right: 0.35rem;
  font-weight: 400;
}
.grind-select {
  padding: 0.35rem 0.7rem;
  border-radius: 10px;
  border: 1.5px solid var(--latte);
  font-size: 0.82rem;
  color: var(--coffee);
}
.empty-cart {
  padding: 4rem 2rem;
}
.btn-gold,
.btn-outline-dark {
  display: inline-flex;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.97rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.empty-cart i {
  font-size: 4rem;
  color: var(--latte);
  display: block;
  margin-bottom: 1.5rem;
}
.empty-cart h3 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}
.empty-cart p {
  color: #8a7060;
  margin-bottom: 2rem;
}
.btn-gold {
  border-radius: 50px;
  background: var(--gold);
  color: var(--espresso);
  font-weight: 700;
  border: none;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 130, 26, 0.35);
}
.btn-outline-dark {
  align-items: center;
  border-radius: 50px;
  background: 0 0;
  color: var(--espresso);
  font-weight: 600;
  border: 2px solid var(--espresso);
}
.upsell-section {
  margin-top: 2.5rem;
}
.upsell-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: var(--espresso);
}
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.upsell-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem;
  border: 1.5px solid var(--cream);
  transition: var(--transition);
  cursor: pointer;
}
.upsell-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.upsell-card .upsell-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.upsell-card h4 {
  font-size: 0.92rem;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}
.upsell-card .upsell-price {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.upsell-add-btn {
  width: 100%;
  padding: 0.45rem;
  border-radius: 50px;
  border: 1.5px solid var(--latte);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coffee);
  cursor: pointer;
  transition: var(--transition);
}
.order-summary {
  position: sticky;
  top: 140px;
}
.form-section,
.summary-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.form-section h3,
.summary-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--cream);
  position: relative;
}
.express-checkout p,
.post-card-body .post-meta {
  margin-bottom: 0.8rem;
}
.form-section h3::after,
.summary-card h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 0.93rem;
  color: #5a4030;
  border-bottom: 1px solid var(--warm-white);
}
.summary-row.total {
  padding-top: 1rem;
  border-top: 2px solid var(--cream);
  border-bottom: none;
  margin-top: 0.5rem;
}
.summary-row.total span:first-child {
  font-size: 1.1rem;
  color: var(--espresso);
  font-weight: 700;
}
.summary-row.total span:last-child {
  font-size: 1.4rem;
  color: var(--espresso);
  font-weight: 800;
}
.summary-row .free {
  color: var(--sage);
  font-weight: 600;
}
.summary-row .strike {
  text-decoration: line-through;
  color: #b09080;
}
.summary-row .saving {
  color: var(--sage);
  font-weight: 600;
  font-size: 0.85rem;
}
.promo-wrap {
  display: flex;
  gap: 0.6rem;
  margin: 1.2rem 0;
}
.checkout-submit-btn,
.delivery-estimate,
.trust-badges {
  margin-top: 1rem;
  display: flex;
}
.express-checkout,
.payment-tabs {
  margin-bottom: 1.5rem;
}
.promo-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--latte);
  background: var(--warm-white);
  font-size: 0.9rem;
  color: var(--espresso);
  transition: var(--transition);
}
.promo-input:focus {
  outline: 0;
  border-color: var(--gold);
  background: #fff;
}
.promo-btn {
  padding: 0.75rem 1.2rem;
  border-radius: 12px;
  border: none;
  background: var(--espresso);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.promo-error,
.promo-success {
  font-size: 0.82rem;
  padding: 0.3rem 0;
  display: none;
}
.promo-success {
  color: var(--sage);
  font-weight: 600;
}
.promo-error {
  color: var(--red);
}
.checkout-submit-btn {
  width: 100%;
  padding: 1.1rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--espresso), var(--dark-roast));
  color: var(--cream);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.checkout-submit-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 130, 26, 0.4);
}
.checkout-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.checkout-submit-btn .btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: 0.7s linear infinite spin;
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.trust-badges {
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.2rem;
  background: var(--warm-white);
  border-radius: 18px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.77rem;
  color: #8a7060;
  font-weight: 500;
}
.delivery-estimate {
  background: linear-gradient(135deg, #f0faf3, #e6f5ea);
  border: 1.5px solid #a8d5b5;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.88rem;
  color: #1a5c30;
}
.form-control,
.radio-card {
  background: var(--warm-white);
}
.form-control,
.payment-tab .cc-icons i {
  font-size: 0.95rem;
}
.delivery-estimate i {
  font-size: 1.1rem;
  color: #2a8040;
  flex-shrink: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.form-row.three {
  grid-template-columns: 1fr 1fr 1fr;
}
.form-row.single {
  grid-template-columns: 1fr;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  color: var(--coffee);
  letter-spacing: 0.03em;
}
.form-group .required {
  color: var(--gold);
  margin-left: 0.2rem;
}
.form-control {
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: 1.5px solid var(--latte);
  color: var(--espresso);
  transition: var(--transition);
  width: 100%;
}
.form-control:focus {
  outline: 0;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 130, 26, 0.12);
}
.form-control.error {
  border-color: var(--red);
  background: #fff5f5;
}
.form-control.valid {
  border-color: var(--sage);
}
.field-error {
  font-size: 0.78rem;
  color: var(--red);
  display: none;
}
.field-error.show {
  display: block;
}
.form-hint {
  font-size: 0.78rem;
  color: #a08070;
}
.faq-list,
.radio-cards {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.payment-tab,
.radio-card {
  cursor: pointer;
  transition: var(--transition);
  align-items: center;
  display: flex;
}
.radio-card {
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 16px;
  border: 1.5px solid var(--latte);
}
.radio-card:hover {
  border-color: var(--gold);
  background: #fff;
}
.radio-card.selected {
  border-color: var(--espresso);
  background: #fff;
  box-shadow: 0 4px 16px rgba(26, 14, 7, 0.1);
}
.radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--latte);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.radio-card.selected .radio-dot {
  border-color: var(--espresso);
  background: var(--espresso);
}
.radio-card.selected .radio-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
}
.comment-body,
.group-title-wrap,
.radio-card-info {
  flex: 1;
}
.radio-card-info span {
  font-size: 0.82rem;
  color: #8a7060;
}
.radio-card-price {
  font-weight: 700;
  color: var(--espresso);
  font-size: 0.97rem;
  white-space: nowrap;
}
.payment-tabs {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.payment-tab {
  padding: 0.6rem 1.1rem;
  border-radius: 12px;
  border: 1.5px solid var(--latte);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--coffee);
  gap: 0.5rem;
}
.payment-tab i {
  font-size: 1rem;
}
.payment-tab .cc-icons {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}
.payment-panel.active {
  display: block;
  animation: 0.3s both fadeSlide;
}
.card-field-wrap .form-control {
  padding-right: 3.5rem;
}
.card-brand-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  font-size: 1.3rem;
  color: var(--latte);
  transition: color 0.3s;
}
.checkbox-row,
.express-btn {
  font-size: 0.9rem;
  align-items: center;
  cursor: pointer;
}
.back-btn,
.express-btn,
.faq-search {
  transition: var(--transition);
}
.checkbox-row {
  display: flex;
  gap: 0.7rem;
  color: var(--coffee);
  margin-top: 0.5rem;
}
.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--espresso);
  cursor: pointer;
}
.express-checkout p {
  font-size: 0.82rem;
  color: #a08070;
  position: relative;
}
.express-checkout p::after,
.express-checkout p::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--latte);
}
.express-checkout p::before {
  left: 0;
}
.express-checkout p::after,
.mobile-menu.active {
  right: 0;
}
.express-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.express-btn {
  padding: 0.85rem;
  border-radius: 14px;
  border: 1.5px solid var(--latte);
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.express-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.express-btn.apple {
  background: #000;
  color: #fff;
  border-color: #000;
}
.express-btn.paypal {
  background: #003087;
  color: #fff;
  border-color: #003087;
}
.confirm-card {
  background: #fff;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}
.confirm-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f7ea, #c8eddb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  animation: popIn 0.5s var(--ease) 0.3s both;
}
.confirm-order-num,
.confirm-step-item,
.mini-cart-item {
  background: var(--warm-white);
}
@keyframes popIn {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.confirm-card h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.confirm-card h2 em {
  color: var(--gold);
  font-style: italic;
}
.confirm-card p {
  color: #6b5040;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.confirm-order-num {
  border-radius: 14px;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  color: var(--coffee);
  margin-bottom: 2rem;
  display: inline-block;
  border: 1.5px solid var(--cream);
}
.confirm-order-num strong {
  color: var(--espresso);
}
.confirm-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.confirm-step-item {
  padding: 1.2rem 0.8rem;
  border-radius: 16px;
  border: 1.5px solid var(--cream);
}
.confirm-step-item i {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.confirm-step-item span {
  font-size: 0.82rem;
  color: #6b5040;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}
.confirm-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.mini-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.back-btn,
.mini-cart-item {
  align-items: center;
  display: flex;
}
.mini-cart-item {
  gap: 0.9rem;
  padding: 0.8rem;
  border-radius: 14px;
}
.mini-cart-item .mini-emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-cart-item .mini-name {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.3;
}
.author-info span,
.mini-cart-item .mini-qty,
.popular-item-text span {
  font-size: 0.78rem;
  color: #8a7060;
}
.mini-cart-item .mini-price {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--espresso);
  white-space: nowrap;
}
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.back-btn {
  background: 0 0;
  border: 1.5px solid var(--latte);
  border-radius: 50px;
  padding: 0.75rem 1.6rem;
  color: var(--coffee);
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  gap: 0.5rem;
}
.cat-tab,
.faq-search {
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
}
.page-header {
  padding: 8rem 5% 3rem;
  background: linear-gradient(
    160deg,
    var(--espresso) 0,
    var(--dark-roast) 60%,
    var(--coffee) 100%
  );
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=15")
    center/cover;
  opacity: 0.05;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--warm-white), transparent);
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.15;
}
.faq-search-wrap {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.faq-search {
  width: 100%;
  padding: 1.1rem 1.5rem 1.1rem 3.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
}
.faq-search::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.faq-search:focus {
  outline: 0;
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 130, 26, 0.2);
}
.faq-search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  pointer-events: none;
}
.search-clear {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  cursor: pointer;
  background: 0 0;
  border: none;
  display: none;
  transition: color 0.3s;
}
.blog-hero,
.blog-hero-inner,
.cta-banner,
.cta-banner-text,
.faq-group-header,
.featured-img {
  position: relative;
}
.cat-tab,
.cat-tab .cat-count,
.expand-all-btn {
  transition: var(--transition);
}
.breadcrumb a:hover,
.search-clear:hover {
  color: #fff;
}
.no-results {
  padding: 3rem 2rem;
  color: #8a7060;
  display: none;
}
.no-results i {
  font-size: 2.5rem;
  color: var(--latte);
  margin-bottom: 1rem;
  display: block;
}
.no-results h4 {
  font-size: 1.3rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.stats-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--latte);
  padding: 1.2rem 5%;
}
.stats-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item strong {
  display: block;
  font-size: 1.8rem;
  color: var(--espresso);
  line-height: 1;
}
.stat-item span {
  font-size: 0.8rem;
  color: #8a7060;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--latte);
}
.category-section {
  padding: 3rem 5% 0;
}
.category-inner {
  max-width: 1260px;
  margin: 0 auto;
}
.category-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}
.cat-tab,
.cat-tab i,
.key-takeaways h4 i {
  font-size: 0.9rem;
}
.cat-tab,
.cat-tab .cat-count,
.expand-all-btn,
.group-icon {
  color: var(--coffee);
}
.category-tabs {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.cat-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.3rem;
  border: 1.5px solid var(--latte);
  background: #fff;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26, 14, 7, 0.06);
}
.cat-tab .cat-count {
  background: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}
.cat-tab.active,
.cat-tab:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
  box-shadow: 0 6px 18px rgba(26, 14, 7, 0.2);
}
.cat-tab.active .cat-count,
.cat-tab:hover .cat-count {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
}
.faq-layout {
  max-width: 1260px;
  margin: 0 auto;
  padding: 3rem 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1040px) {
  .checkout-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 1rem;
  }
}
.faq-group {
  margin-bottom: 2.5rem;
}
.faq-group-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream);
}
.faq-group-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--gold);
}
.group-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cream), var(--latte));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(92, 51, 32, 0.14);
}
.group-title-wrap h2 {
  font-size: 1.4rem;
  color: var(--espresso);
  margin-bottom: 0.05rem;
}
.group-title-wrap span {
  font-size: 0.8rem;
  color: #a08070;
}
.expand-all-btn {
  background: 0 0;
  border: 1.5px solid var(--latte);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.faq-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(26, 14, 7, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s;
  border: 1.5px solid transparent;
}
.faq-item.open,
.faq-item:hover,
.sidebar-card {
  box-shadow: var(--shadow-md);
}
.faq-item.open {
  border-color: var(--gold);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.25s;
}
.faq-chevron,
.faq-q-icon {
  background: var(--cream);
  transition: var(--transition);
  display: flex;
}
.faq-q-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--gold);
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.faq-item.open .faq-q-icon {
  background: var(--espresso);
  color: var(--gold-light);
}
.faq-q-text {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
  color: var(--espresso);
  line-height: 1.4;
}
.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--coffee);
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.faq-item.open .faq-chevron {
  background: var(--gold);
  color: var(--espresso);
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease), padding 0.3s ease;
  padding: 0 1.6rem;
}
.faq-item.open .faq-a {
  max-height: 800px;
  padding: 0 1.6rem 1.6rem;
}
.faq-a-inner {
  padding-top: 1rem;
  border-top: 1px solid var(--cream);
}
.faq-a-inner p {
  font-size: 0.97rem;
  color: #4a3528;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.faq-a-inner ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.8rem 0 1rem;
}
.faq-a-inner ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #4a3528;
  line-height: 1.6;
}
.faq-a-inner ul li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.faq-a-inner a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.helpful-btn,
.quick-nav a {
  transition: var(--transition);
  display: flex;
}
.a-callout {
  background: linear-gradient(135deg, #fff8ee, #fdf0de);
  border: 1.5px solid var(--latte);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin: 0.8rem 0;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.a-callout span:first-child {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.a-callout p {
  font-size: 0.9rem;
  color: #6b5040;
  margin: 0 !important;
  line-height: 1.6;
}
.a-table-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin: 1rem 0;
  box-shadow: 0 4px 16px rgba(26, 14, 7, 0.08);
}
.cta-btn-primary,
.helpful-btn {
  border-radius: 50px;
  cursor: pointer;
}
.data-table-wrap,
.featured-post,
.post-card,
.prose-img,
.related-card {
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.a-table {
  width: 100%;
  border-collapse: collapse;
}
.a-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  color: var(--cream);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.a-table tbody tr {
  border-bottom: 1px solid var(--cream);
  background: #fff;
  transition: background 0.2s;
}
.a-table td {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  color: #3a2a1e;
}
.a-table td:first-child,
.data-table td:first-child {
  font-weight: 600;
  color: var(--espresso);
}
.helpful-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream);
}
.helpful-label {
  font-size: 0.82rem;
  color: #a08070;
}
.helpful-btn {
  padding: 0.3rem 0.8rem;
  border: 1.5px solid var(--latte);
  background: 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coffee);
  align-items: center;
  gap: 0.35rem;
}
.helpful-btn.voted {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
  pointer-events: none;
}
.sidebar-card h4 {
  color: var(--espresso);
  border-bottom: 2px solid var(--cream);
}
.pop-q-item,
.quick-nav a {
  color: var(--coffee);
  font-size: 0.88rem;
}
.sidebar-card h4::after {
  content: "";
  background: var(--gold);
}
.quick-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.quick-nav a {
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  border-left: 2px solid transparent;
}
.quick-nav a i {
  font-size: 0.75rem;
  color: var(--latte);
  flex-shrink: 0;
  transition: color 0.3s;
}
.popular-q {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-card a,
.pop-q-item {
  gap: 0.7rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
}
.pop-q-item {
  align-items: flex-start;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  font-weight: 500;
  line-height: 1.4;
  border: 1.5px solid var(--cream);
  background: var(--warm-white);
}
.pop-q-item i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.pop-q-item:hover {
  background: #fff;
  border-color: var(--gold);
  color: var(--espresso);
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(26, 14, 7, 0.08);
}
.contact-card h4,
.sidebar-newsletter h4 {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.contact-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.contact-card a {
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}
.contact-card a i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}
.contact-card a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateX(3px);
}
.sidebar-newsletter {
  background: linear-gradient(160deg, var(--dark-roast), var(--coffee));
}
.cta-banner {
  background: var(--espresso);
  margin: 0 auto 6rem;
  border-radius: 28px;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1260px;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 130, 26, 0.2) 0,
    transparent 70%
  );
}
.cta-banner-text {
  z-index: 1;
}
.cta-banner-text p {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.cta-banner-text h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.cta-banner-text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-btn-outline,
.cta-btn-primary {
  display: inline-flex;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.97rem;
  text-decoration: none;
}
.cta-btn-primary {
  align-items: center;
  background: var(--gold);
  color: var(--espresso);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}
.cta-btn-outline,
.search-bar input {
  background: 0 0;
  font-family: "DM Sans", sans-serif;
}
.cta-btn-outline,
.filter-tab {
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}
.cta-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 130, 26, 0.4);
}
.cta-btn-outline {
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.blog-hero {
  padding: 10rem 5% 5rem;
  background: linear-gradient(
    160deg,
    var(--espresso) 0,
    var(--dark-roast) 50%,
    var(--coffee) 100%
  );
  overflow: hidden;
  text-align: center;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=20")
    center/cover;
  opacity: 0.07;
}
.blog-hero-inner {
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.blog-hero-tag {
  display: inline-block;
  background: rgba(201, 130, 26, 0.2);
  border: 1px solid rgba(201, 162, 122, 0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.blog-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.blog-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.search-bar {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  overflow: hidden;
}
.blog-layout,
.filter-inner {
  max-width: 1260px;
  margin: 0 auto;
}
.search-bar input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border: none;
  color: #fff;
  font-size: 0.97rem;
}
.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-bar input:focus {
  outline: 0;
}
.search-bar button {
  padding: 0.9rem 1.4rem;
  background: var(--gold);
  border: none;
  color: var(--espresso);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}
.marquee-strip {
  background: var(--espresso);
  color: var(--latte);
  padding: 0.85rem 0;
  overflow: hidden;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: 22s linear infinite marquee;
}
.marquee-track span {
  padding: 0 2.5rem;
}
.marquee-track span.dot {
  color: var(--gold);
  padding: 0 0.5rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.filter-section {
  padding: 3.5rem 5% 0;
  background: var(--warm-white);
}
.filter-tab,
.sort-select {
  background: 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: var(--coffee);
  cursor: pointer;
}
.filter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.filter-tabs {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 0.5rem 1.3rem;
  border: 1.5px solid var(--latte);
}
.sort-select {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--latte);
  outline: 0;
}
.blog-section {
  padding: 3rem 5% 6rem;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}
.featured-post {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 28px;
  transition: var(--transition);
  margin-bottom: 1rem;
}
.featured-img {
  overflow: hidden;
  min-height: 400px;
}
.featured-post:hover .featured-img img {
  transform: scale(1.05);
}
.featured-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}
.featured-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.author-avatar,
.post-author {
  display: flex;
  align-items: center;
}
.post-cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.key-takeaways h4,
.post-card-cat,
.share-float-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dot-sep,
.post-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--latte);
}
.featured-body h2 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--espresso);
}
.featured-body p {
  color: #6b5040;
  margin-bottom: 1.8rem;
  font-size: 1rem;
}
.post-author {
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--latte), var(--coffee));
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--espresso);
}
.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  background: var(--espresso);
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}
.read-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}
.read-btn:hover i {
  transform: translateX(4px);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.post-card,
.related-card {
  background: #fff;
  border-radius: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover,
.related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.post-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.post-card:hover .post-card-img img,
.related-card:hover .related-card-img img {
  transform: scale(1.07);
}
.post-card-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(26, 14, 7, 0.75);
  backdrop-filter: blur(4px);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.28rem 0.8rem;
  border-radius: 50px;
}
.post-card-body {
  padding: 1.6rem 1.8rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card-body h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 0.7rem;
  color: var(--espresso);
}
.post-card-body p {
  color: #6b5040;
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 1.3rem;
}
.post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.mini-avatar,
.post-card-author {
  display: flex;
  align-items: center;
}
.post-card-author {
  gap: 0.6rem;
}
.mini-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--latte), var(--coffee));
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  font-family: "Playfair Display", serif;
}
.blend-promo-btn,
.page-btn {
  font-family: "DM Sans", sans-serif;
}
.mini-author-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--espresso);
}
.post-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
.cat-item,
.cat-list,
.page-btn,
.pagination,
.popular-item,
.sidebar {
  display: flex;
}
.cat-count,
.cat-item,
.page-btn,
.tag-chip {
  color: var(--coffee);
}
.post-link i,
.related-link i {
  font-size: 0.75rem;
  transition: transform 0.3s;
}
.post-link:hover i,
.related-link:hover i {
  transform: translateX(3px);
}
@media (max-width: 680px) {
  .cta-banner {
    padding: 2.5rem 2rem;
    margin: 0 5% 4rem;
  }
  .cta-banner-text h2 {
    font-size: 1.6rem;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
}
.pagination {
  justify-content: center;
  gap: 0.6rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1.5px solid var(--latte);
  background: 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  align-items: center;
  justify-content: center;
}
.page-btn.wide {
  width: auto;
  padding: 0 1.2rem;
}
.cat-item:hover,
.toc-list .toc-sub {
  padding-left: 1.2rem;
}
.sidebar {
  flex-direction: column;
}
.sidebar-newsletter button {
  background: var(--gold);
  color: var(--espresso);
  transition: var(--transition);
}
.cat-list {
  flex-direction: column;
  gap: 0.5rem;
}
.cat-item {
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  transition: var(--transition);
}
.blend-promo-btn,
.cat-count {
  font-weight: 600;
  transition: var(--transition);
}
.cat-item:hover {
  background: var(--cream);
  color: var(--espresso);
}
.cat-count {
  background: var(--cream);
  font-size: 0.75rem;
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
}
.popular-list,
.related-mini {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.popular-item {
  gap: 1rem;
  align-items: center;
}
.popular-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.article-meta,
.breadcrumb {
  align-items: center;
  display: flex;
}
.popular-thumb img,
.related-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.breadcrumb a,
.popular-item-text a {
  transition: color 0.3s;
  text-decoration: none;
}
.popular-item-text a {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}
.tag-chip {
  border: 1.5px solid var(--latte);
  transition: var(--transition);
}
.blend-promo-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  height: 180px;
}
.blend-promo-img img {
  height: 100%;
  object-fit: cover;
}
.blend-promo h5 {
  font-size: 1.15rem;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}
.blend-promo p {
  font-size: 0.85rem;
  color: #6b5040;
  margin-bottom: 1rem;
}
.blend-promo-btn {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.9rem;
  text-decoration: none;
}
.author-avatar-lg,
.prose blockquote p,
.prose blockquote::before,
.step-n {
  font-family: "Playfair Display", serif;
}
.blend-promo-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.article-hero {
  padding-top: 6rem;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.article-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 5% 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a {
  color: var(--gold-light);
}
.breadcrumb i {
  font-size: 0.65rem;
}
.article-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.article-meta {
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}
.article-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.article-meta i {
  color: var(--gold);
  font-size: 0.8rem;
}
.article-author-bar {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 3rem;
}
.author-avatar-lg {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--latte), var(--coffee));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.author-bar-info {
  text-align: left;
}
.author-bar-info strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}
.author-bar-info span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}
.article-hero-img {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}
.article-hero-img img {
  height: 520px;
  object-fit: cover;
}
.article-hero-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--warm-white), transparent);
}
.article-layout {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.share-float {
  position: sticky;
  top: 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-left: -3.5rem;
  margin-right: 1rem;
  float: left;
  clear: left;
}
.share-float-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #a08070;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 0.4rem;
}
.share-btn-float {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  text-decoration: none;
}
.share-icon,
.step-n {
  width: 38px;
  height: 38px;
}
.share-btn-float.tw {
  background: #1da1f2;
  color: #fff;
}
.share-btn-float.fb {
  background: #1877f2;
  color: #fff;
}
.share-btn-float.li {
  background: #0a66c2;
  color: #fff;
}
.share-btn-float.cp {
  background: var(--cream);
  color: var(--espresso);
  border: 1.5px solid var(--latte);
}
.share-btn-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 14, 7, 0.2);
}
@media (max-width: 1060px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .share-float {
    display: none;
  }
}
.article-body {
  max-width: 760px;
  padding-top: 3rem;
}
.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.callout,
.steps-list {
  gap: 1.2rem;
  display: flex;
}
.tag-chip,
.tag-pill {
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1.5px solid var(--latte);
  background: 0 0;
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.tag-chip:hover,
.tag-pill:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}
.key-takeaways {
  background: var(--espresso);
  color: #fff;
  border-radius: 22px;
  padding: 2rem 2.2rem;
  margin-bottom: 2.8rem;
}
.key-takeaways h4 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.prose h2,
.prose h3 {
  color: var(--espresso);
}
.key-takeaways ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.key-takeaways ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.key-takeaways ul li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.prose {
  color: #3a2a1e;
}
.prose h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.prose h3 {
  font-size: 1.45rem;
  margin: 2rem 0 0.8rem;
}
.prose p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.prose em {
  color: var(--coffee);
  font-style: italic;
}
.prose ol,
.prose ul {
  margin: 1rem 0 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.prose ol li,
.prose ul li {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #3a2a1e;
  padding-left: 0.3rem;
}
.prose blockquote {
  margin: 2.5rem 0;
  padding: 1.8rem 2rem 1.8rem 2.5rem;
  background: var(--cream);
  border-radius: 18px;
  border-left: 4px solid var(--gold);
  position: relative;
}
.prose blockquote::before {
  content: "\201C";
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  line-height: 1;
}
.prose blockquote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--espresso);
  margin: 0;
  line-height: 1.6;
}
.prose blockquote cite {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #8a7060;
  font-style: normal;
}
.callout {
  background: linear-gradient(135deg, #fff8f0, #fdf0df);
  border: 1.5px solid var(--latte);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  margin: 2rem 0;
  align-items: flex-start;
}
.callout-icon {
  font-size: 1.4rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.callout-text strong {
  display: block;
  color: var(--espresso);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.callout-text span {
  color: #6b5040;
  font-size: 0.95rem;
  line-height: 1.6;
}
.prose-img {
  margin: 2.5rem 0;
  border-radius: 22px;
}
.prose-img img {
  height: 400px;
  object-fit: cover;
}
.prose-img figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: #8a7060;
  padding: 0.8rem 1rem 0.3rem;
  font-style: italic;
}
.data-table-wrap {
  margin: 2rem 0;
  border-radius: 18px;
}
.data-table thead th {
  padding: 1rem 1.3rem;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.data-table td {
  padding: 0.9rem 1.3rem;
  font-size: 0.93rem;
  color: #3a2a1e;
}
.data-table .gold-dot {
  color: var(--gold);
  font-weight: 700;
}
.steps-list {
  flex-direction: column;
  margin: 1.5rem 0 2rem;
}
.step-row {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.3rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(26, 14, 7, 0.07);
  transition: var(--transition);
}
.step-n {
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--coffee));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
.action-likes,
.prose-divider {
  display: flex;
  align-items: center;
}
.like-btn,
.share-icon {
  color: var(--coffee);
  transition: var(--transition);
  cursor: pointer;
}
.step-content strong {
  display: block;
  color: var(--espresso);
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.step-content span {
  color: #6b5040;
  font-size: 0.92rem;
  line-height: 1.55;
}
.prose-divider {
  gap: 1.2rem;
  margin: 2.5rem 0;
}
.article-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
  margin: 3rem 0;
}
.action-likes {
  gap: 1rem;
}
.like-btn,
.share-row {
  align-items: center;
  display: flex;
}
.like-btn {
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border-radius: 50px;
  border: 1.5px solid var(--latte);
  background: 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}
.author-card-avatar,
.comment-avatar {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.like-btn.liked i {
  color: #ff8080;
}
.share-row {
  gap: 0.7rem;
}
.share-row span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #8a7060;
}
.share-icon {
  border-radius: 12px;
  border: 1.5px solid var(--latte);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
}
.author-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
  margin: 2.5rem 0;
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
}
.author-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--latte), var(--coffee));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(92, 51, 32, 0.25);
}
.author-card-body h4 {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}
.author-card-body .role {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.author-card-body p {
  color: #6b5040;
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.author-social {
  display: flex;
  gap: 0.6rem;
}
.author-social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1.5px solid var(--latte);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coffee);
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
}
.comment-list,
.sidebar {
  flex-direction: column;
  display: flex;
}
.comments-section {
  margin-top: 1rem;
}
.comments-section h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.comment-list {
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.comment {
  display: flex;
  gap: 1.2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(26, 14, 7, 0.07);
}
.comment-form,
.sidebar-card {
  box-shadow: var(--shadow-md);
}
.comment-avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cream), var(--latte));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coffee);
  font-size: 1.1rem;
}
.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.comment-header strong {
  color: var(--espresso);
  font-size: 0.95rem;
}
.comment-header time {
  color: #a08070;
  font-size: 0.8rem;
}
.comment p {
  color: #5a4035;
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 0.6rem;
}
.comment-reply-btn {
  background: 0 0;
  border: none;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  padding: 0;
  transition: color 0.3s;
}
.submit-btn,
.toc-list a {
  transition: var(--transition);
}
.comment.reply {
  margin-left: 3rem;
  background: var(--warm-white);
}
.comment-form {
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem;
}
.comment-form h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #e0d0c0;
  border-radius: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  background: var(--warm-white);
  color: var(--espresso);
  transition: var(--transition);
}
.sidebar-newsletter button,
.submit-btn {
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
}
.form-group textarea {
  border-radius: 14px;
  resize: vertical;
  min-height: 110px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 130, 26, 0.12);
  background: #fff;
}
.submit-btn {
  padding: 0.9rem 2.2rem;
  border: none;
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.97rem;
  font-weight: 600;
}
.sidebar {
  padding-top: 3rem;
  gap: 2rem;
}
.sidebar-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
}
.sidebar-card h4 {
  font-size: 1.25rem;
  color: var(--espresso);
  margin-bottom: 1.3rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--cream);
  position: relative;
}
.sidebar-card h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.toc-list a {
  text-decoration: none;
  color: var(--coffee);
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  display: block;
  border-left: 2px solid transparent;
}
.toc-list a.toc-active,
.toc-list a:hover {
  background: var(--cream);
  color: var(--espresso);
  border-left-color: var(--gold);
  padding-left: 0.9rem;
}
.toc-list .toc-sub a {
  font-size: 0.84rem;
  color: #8a7060;
}
.related-mini-item {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.related-mini-thumb {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.related-mini-item:hover .related-mini-thumb img {
  transform: scale(1.1);
}
.related-mini-text a {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}
.related-link,
.sidebar-newsletter button {
  font-weight: 600;
  transition: var(--transition);
}
.related-mini-text span {
  font-size: 0.76rem;
  color: #a08070;
}
.sidebar-newsletter p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}
.sidebar-newsletter input {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
}
.sidebar-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.sidebar-newsletter input:focus {
  outline: 1px solid var(--gold);
}
.sidebar-newsletter button {
  width: 100%;
  padding: 0.8rem;
  border: none;
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.92rem;
}
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 1060px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .footer-grid,
  .form-row,
  .form-row.three,
  .sidebar {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .upsell-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-divider {
    display: none;
  }
  .stats-inner {
    gap: 1.5rem;
  }
  .author-card {
    flex-direction: column;
  }
}
.related-section {
  padding: 5rem 5%;
  background: var(--cream);
}
.related-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.section-header h2 {
  font-size: 2.4rem;
  color: var(--espresso);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1260px;
  margin: 0 auto;
}
.related-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.related-card-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(26, 14, 7, 0.7);
  backdrop-filter: blur(4px);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.related-card-body {
  padding: 1.5rem 1.7rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-card-body .post-meta {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}
.related-card-body h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  flex: 1;
  color: var(--espresso);
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  margin-top: auto;
}
@media (max-width: 800px) {
  .brew-content.active,
  .contact-wrapper,
  .featured-post,
  .input-row,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .brew-img {
    display: none;
  }
  .featured-img {
    min-height: 260px;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .form-row,
  .related-grid,
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .step-label {
    display: none;
  }
  .step-line {
    min-width: 20px;
  }
}
.footer-bottom a {
  color: #8c8683;
  text-decoration: none;
}
.menu-toggle,
.mobile-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
.mobile-menu,
.mobile-overlay {
  position: fixed;
  top: 0;
  height: 100%;
}
.mobile-menu {
  right: -280px;
  width: 280px;
  background: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.35s;
  z-index: 1001;
}
.mobile-menu a {
  font-size: 18px;
  text-decoration: none;
  color: #333;
}
.mobile-close {
  background: 0 0;
  border: none;
  font-size: 24px;
  align-self: flex-end;
  cursor: pointer;
}
.mobile-overlay {
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  z-index: 1000;
}
@media (max-width: 768px) {
  .menu-toggle,
  .mobile-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 12px 0;
  }
}