:root {
  --clr-green-dark: #4e7a5c;
  --clr-green-mid: #6b9e7a;
  --clr-green-pale: #eef5f1;
  --clr-brown-dark: #4b2b19;
  --clr-brown-medium: #6d5b4c;
  --clr-brown-light: #ae815a;
  --clr-beige-dark: #dcc9b6;
  --clr-beige-mid: #e3ddd1;
  --clr-beige-light: #f2ede6;
  --clr-accent: #4e7a5c;
  --clr-accent-dark: #3a5e44;
  --clr-accent-warm: #ae815a;
  --clr-white: #ffffff;
  --clr-text: #2c1810;
  --clr-text-mid: #6d5b4c;
  --clr-text-light: #ae815a;
  --clr-success: #276749;
  --clr-error: #c53030;
  --header-h: 72px;
  --shadow-sm: 0 2px 8px rgba(75, 43, 25, 0.08);
  --shadow-md: 0 8px 32px rgba(75, 43, 25, 0.13);
  --shadow-lg: 0 20px 60px rgba(75, 43, 25, 0.18);
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2c1810;
  background: #ffffff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.75;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Noto Sans JP", sans-serif;
}

input,
textarea,
select {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  border: 1.5px solid #dcc9b6;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 100%;
  background: #ffffff;
  color: #2c1810;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #4e7a5c;
  box-shadow: 0 0 0 3px rgba(78, 122, 92, 0.15);
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #ae815a;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #ae815a;
}

textarea {
  resize: vertical;
  line-height: 1.75;
}

.wpcf7-form.init p {
  padding: 1rem;
}

.wpcf7-form-control.wpcf7-submit.has-spinner {
  background-color: #6b9e7a;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--sm {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.text-accent {
  color: #4e7a5c;
}

.breadcrumbs {
  padding: 0.5rem 0;
  font-size: 0.8rem;
  color: #ae815a;
  background: #f2ede6;
  border-bottom: 1px solid #dcc9b6;
}
.breadcrumbs a:hover {
  color: #4e7a5c;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 {
  transition-delay: 0.1s;
}
.fade-in-delay-2 {
  transition-delay: 0.2s;
}
.fade-in-delay-3 {
  transition-delay: 0.3s;
}
.fade-in-delay-4 {
  transition-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.skeleton {
  background: linear-gradient(90deg, #e3ddd1 25%, #dcc9b6 50%, #e3ddd1 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #6b9e7a;
  color: #ffffff;
  border-color: #6b9e7a;
}
.btn-primary:hover {
  background: #4e7a5c;
  border-color: #4e7a5c;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(75, 43, 25, 0.13);
}
.btn-secondary {
  background: transparent;
  color: #6b9e7a;
  border-color: #6b9e7a;
}
.btn-secondary:hover {
  background: #6b9e7a;
  color: #ffffff;
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: #6d5b4c;
  border-color: #dcc9b6;
}
.btn-ghost:hover {
  background: #e3ddd1;
  color: #4b2b19;
  opacity: 1;
}
.btn-text {
  background: none;
  border: none;
  color: #4e7a5c;
  padding: 0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-text:hover {
  color: #3a5e44;
  opacity: 1;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

section {
  padding: 6rem 0;
}

.section-eyebrow {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4e7a5c;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: #ae815a;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.8;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-cta {
  text-align: center;
  margin-top: 4rem;
}

.page-hero {
  padding: calc(6rem + 72px) 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero--light {
  background: #f2ede6;
}
.page-hero--light .section-eyebrow {
  color: #4e7a5c;
}
.page-hero--light p {
  color: #ae815a;
}
.page-hero--dark, .page-hero--shop {
  background: linear-gradient(135deg, #4e7a5c 0%, #6b9e7a 100%);
  color: #ffffff;
}
.page-hero--dark .section-eyebrow, .page-hero--shop .section-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.page-hero--dark p, .page-hero--shop p {
  color: rgba(255, 255, 255, 0.8);
}
.page-hero--blog {
  background: #f2ede6;
}
.page-hero--blog .section-eyebrow {
  color: #4e7a5c;
}
.page-hero--blog h1 {
  color: #4b2b19;
}
.page-hero--blog p {
  color: #ae815a;
}
.page-hero h1 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin: 0.5rem 0 1rem;
}
.page-hero--dark h1, .page-hero--shop h1 {
  color: #ffffff;
}
.page-hero p {
  font-size: 1rem;
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: 72px;
  background: #ffffff;
  border-bottom: 1px solid #dcc9b6;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(75, 43, 25, 0.13);
}

.header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: #4b2b19;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b2b19;
}
.logo-text em {
  font-style: normal;
  color: #4e7a5c;
}

.footer-logo {
  margin-bottom: 1rem;
}

.header-nav {
  flex: 1;
}
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
}
.header-nav ul li a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6d5b4c;
  border-radius: 9999px;
  transition: background 0.3s ease, color 0.3s ease;
}
.header-nav ul li a:hover, .header-nav ul li a.current {
  background: #eef5f1;
  color: #6b9e7a;
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.header-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  border-radius: 50%;
  color: #6d5b4c;
  font-size: 1rem;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
}
.header-btn:hover {
  background: #eef5f1;
  color: #6b9e7a;
  opacity: 1;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: #4e7a5c;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  line-height: 1;
}
.cart-count:empty {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #4b2b19;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-search {
  position: absolute;
  top: 72px;
  inset-inline: 0;
  background: #ffffff;
  border-bottom: 1px solid #dcc9b6;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 999;
}
.header-search.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.search-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-inner form {
  flex: 1;
}
.search-inner input[type=search] {
  border-radius: 9999px;
}

.search-close {
  color: #ae815a;
  font-size: 1.25rem;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.search-close:hover {
  color: #4b2b19;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 0, 0.5);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100dvh;
  background: #ffffff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 2.5rem;
  overflow-y: auto;
  border-left: 1px solid #dcc9b6;
}
.drawer-menu.open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  color: #ae815a;
  font-size: 1.5rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
}
.drawer-close:hover {
  color: #6b9e7a;
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 2rem;
}
.drawer-logo .logo-text {
  color: #4b2b19;
}

.drawer-nav {
  flex: 1;
}
.drawer-nav li {
  border-bottom: 1px solid #e3ddd1;
}
.drawer-nav li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: #2c1810;
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.drawer-nav li a span {
  font-size: 0.7rem;
  color: #4e7a5c;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
}
.drawer-nav li a:hover, .drawer-nav li a.current {
  color: #6b9e7a;
  opacity: 1;
}

.drawer-footer {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.drawer-footer a {
  color: #ae815a;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}
.drawer-footer a:hover {
  color: #6b9e7a;
  opacity: 1;
}

.site-footer {
  background: #4b2b19;
  color: rgba(255, 255, 255, 0.85);
}

.footer-top {
  padding: 6rem 0 4rem;
}
.footer-top .container {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo .logo-mark {
  background: #4e7a5c;
}
.footer-logo .logo-text {
  color: #ffffff;
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-sns {
  display: flex;
  gap: 0.875rem;
}
.footer-sns a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.footer-sns a:hover {
  background: #4e7a5c;
  border-color: #4e7a5c;
  color: #ffffff;
  opacity: 1;
}

.footer-nav-group {
  display: contents;
}

.footer-nav-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-nav-col ul li {
  margin-bottom: 0.625rem;
}
.footer-nav-col ul li a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
.footer-nav-col ul li a:hover {
  color: #ffffff;
  opacity: 1;
}

.footer-newsletter h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-newsletter p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.footer-newsletter .newsletter-form input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.footer-newsletter .newsletter-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-newsletter .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-newsletter .newsletter-form input:focus {
  border-color: #4e7a5c;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-info {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

#page-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: #6b9e7a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-size: 0.875rem;
  box-shadow: 0 8px 32px rgba(75, 43, 25, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 999;
}
#page-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#page-top:hover {
  background: #4e7a5c;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dcc9b6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(75, 43, 25, 0.18);
}
.product-card-link {
  display: block;
}
.product-card-img {
  aspect-ratio: 3/2;
  background: #f2ede6;
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}
.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: #dcc9b6;
  font-size: 2.5rem;
}
.product-card-body {
  padding: 1rem;
}
.product-card-origin {
  font-size: 0.7rem;
  color: #ae815a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.product-card-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.product-card-desc {
  font-size: 0.8rem;
  color: #ae815a;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-card-price {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #4b2b19;
}
.product-card-price .woocommerce-Price-amount {
  color: inherit;
}

.product-origin-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  background: #6b9e7a;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

.product-roast-badge {
  display: inline-block;
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  background: #e3ddd1;
  color: #6d5b4c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.product-wishlist {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: #ae815a;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.product-wishlist:hover {
  background: #ffffff;
  color: #e53e3e;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: #6b9e7a;
  color: #ffffff;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.btn-add-cart:hover {
  background: #4e7a5c;
}
.btn-add-cart.added {
  background: #276749;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-grid--archive {
  gap: 2rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dcc9b6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(75, 43, 25, 0.18);
}
.blog-card-link {
  display: block;
}
.blog-card-img {
  aspect-ratio: 16/9;
  background: #e3ddd1;
  position: relative;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: #dcc9b6;
  font-size: 2rem;
}
.blog-card-cat {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  background: #4e7a5c;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.blog-card-body {
  padding: 1.25rem;
}
.blog-card-date {
  display: block;
  font-size: 0.7rem;
  color: #ae815a;
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.blog-card-excerpt {
  font-size: 0.8rem;
  color: #ae815a;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.875rem;
}
.blog-card-more {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4e7a5c;
}

.blog-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.cat-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid #dcc9b6;
  color: #6d5b4c;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cat-pill:hover, .cat-pill.active {
  background: #6b9e7a;
  border-color: #6b9e7a;
  color: #ffffff;
  opacity: 1;
}

.pagination-wrap {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.pagination-wrap .page-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.pagination-wrap .page-numbers li a,
.pagination-wrap .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 38px;
  height: 38px;
  border: 1.5px solid #dcc9b6;
  border-radius: 50%;
  font-size: 0.875rem;
  color: #6d5b4c;
  transition: all 0.3s ease;
}
.pagination-wrap .page-numbers li a:hover {
  background: #6b9e7a;
  border-color: #6b9e7a;
  color: #ffffff;
  opacity: 1;
}
.pagination-wrap .page-numbers li .current {
  background: #4e7a5c;
  border-color: #4e7a5c;
  color: #ffffff;
  font-weight: 700;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  border-radius: 9999px;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}
.newsletter-form button {
  padding: 0.625rem 1.25rem;
  background: #4e7a5c;
  color: #ffffff;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.newsletter-form button:hover {
  background: #3a5e44;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #4b2b19;
}

.req {
  font-size: 0.7rem;
  background: #4e7a5c;
  color: #ffffff;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  margin-left: 0.375rem;
}

.woo-page {
  padding: 3rem 0 6rem;
}

.woocommerce-notices-wrapper {
  margin-bottom: 1.5rem;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.woocommerce-message {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
}

.woocommerce-error {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  color: #c53030;
}

.woocommerce-info {
  background: #ebf8ff;
  border: 1px solid #90cdf4;
  color: #2b6cb0;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 72px 1.5rem 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: center;
     object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 10, 0, 0.55) 0%, rgba(26, 10, 0, 0.35) 50%, rgba(26, 10, 0, 0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: #ae815a;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

.roasting-story {
  padding-block: 6rem;
  background: #f2ede6;
}

.roasting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.roasting-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.roasting-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.roasting-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roasting-lead {
  font-size: 1rem;
  line-height: 2;
  color: #6d5b4c;
  margin-bottom: 2.5rem;
}

.roasting-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.roasting-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.point-icon {
  width: 40px;
  height: 40px;
  background: #eef5f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: #4e7a5c;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.point-body h3 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin-bottom: 0.375rem;
}
.point-body p {
  font-size: 0.8rem;
  color: #6d5b4c;
  line-height: 1.8;
}

.sustainability {
  padding-block: 6rem;
  background: #4e7a5c;
  color: #ffffff;
}
.sustainability .section-title {
  color: #ffffff;
}
.sustainability .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.sustainability-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sustainability-lead {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}
.sustainability-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sustainability-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.875rem;
}
.sustainability-list li > i,
.sustainability-list li > .icon {
  color: #6b9e7a;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.sustainability-list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.sustainability-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sustainability-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.testimonials {
  padding-block: 6rem;
  background: #f2ede6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #dcc9b6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(75, 43, 25, 0.13);
}
.testimonial-card-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card-text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #6d5b4c;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar {
  width: 38px;
  height: 38px;
  background: #eef5f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-weight: 700;
  color: #6b9e7a;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b2b19;
}

.author-meta {
  font-size: 0.7rem;
  color: #ae815a;
}

.subscription-banner {
  padding: 4rem 0;
  background: #e3ddd1;
}

.subscription-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}
.subscription-inner h2 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.subscription-inner p {
  font-size: 1rem;
  color: #6d5b4c;
  margin-bottom: 2rem;
}

.blog-preview {
  padding-block: 6rem;
}

.blog-newsletter-banner {
  background: #eef5f1;
  padding: 4rem 0;
  text-align: center;
  margin-top: 4rem;
}
.blog-newsletter-banner p {
  font-size: 0.8rem;
  color: #4e7a5c;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-newsletter-banner h3 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.blog-newsletter-banner .newsletter-form {
  max-width: 400px;
  margin: 0 auto;
}
.blog-newsletter-banner .newsletter-form input {
  background: #ffffff;
  border-color: #dcc9b6;
  color: #2c1810;
}

.contact-section {
  padding-block: 6rem;
  background: #f2ede6;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  font-size: 0.95rem;
  color: #6d5b4c;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.875rem;
}
.contact-details li > i,
.contact-details li > .icon {
  color: #4e7a5c;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.contact-details li {
  font-size: 0.875rem;
  color: #6d5b4c;
}

.contact-form-wrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(75, 43, 25, 0.08);
  border: 1px solid #dcc9b6;
}

.shop-page {
  padding-bottom: 6rem;
}

.shop-layout {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  padding-top: 2.5rem;
  align-items: start;
}

.filter-panel {
  background: #ffffff;
  border: 1px solid #dcc9b6;
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: calc(72px + 1rem);
}

.filter-heading {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dcc9b6;
}

.filter-group {
  margin-bottom: 1.5rem;
}
.filter-group-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ae815a;
  margin-bottom: 0.75rem;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8rem;
  color: #6d5b4c;
  cursor: pointer;
  padding: 0.375rem 0;
  transition: color 0.3s ease;
}
.filter-label:hover {
  color: #6b9e7a;
}
.filter-label input[type=checkbox] {
  width: 15px;
  height: 15px;
  accent-color: #4e7a5c;
  flex-shrink: 0;
  border: none;
  padding: 0;
  box-shadow: none;
}
.filter-label input[type=checkbox]:focus {
  box-shadow: none;
}

.filter-count {
  font-size: 0.7rem;
  color: #ae815a;
  margin-left: auto;
}

.filter-toggle-btn {
  display: none;
}

.shop-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dcc9b6;
}

.shop-count {
  font-size: 0.8rem;
  color: #ae815a;
}

.shop-sort-select {
  width: auto;
  padding: 0.5rem 2.25rem 0.5rem 0.875rem;
  font-size: 0.8rem;
  border-radius: 9999px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238C7B6B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.product-page {
  padding-bottom: 6rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 2.5rem 0 4rem;
}

.gallery-main {
  aspect-ratio: 1;
  background: #f2ede6;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dcc9b6;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: #dcc9b6;
  font-size: 4rem;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.gallery-thumb {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery-thumb.active, .gallery-thumb:hover {
  border-color: #4e7a5c;
}

.product-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}

.badge--origin {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  background: #eef5f1;
  color: #6b9e7a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.badge--roast {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  background: #e3ddd1;
  color: #6d5b4c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

.product-price {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #4b2b19;
  margin-bottom: 1.5rem;
}

.flavor-notes {
  margin-bottom: 1.5rem;
}

.flavor-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ae815a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.flavor-tag {
  padding: 0.25rem 0.75rem;
  border: 1px solid #dcc9b6;
  border-radius: 9999px;
  font-size: 0.7rem;
  color: #6d5b4c;
  background: #f2ede6;
}

.product-description {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #6d5b4c;
  margin-bottom: 1.5rem;
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.product-specs tr {
  border-bottom: 1px solid #e3ddd1;
}
.product-specs th {
  padding: 0.625rem 0;
  color: #ae815a;
  font-weight: 500;
  width: 38%;
}
.product-specs td {
  padding: 0.625rem 0;
  color: #6d5b4c;
}

.product-action {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1.5px solid #dcc9b6;
  border-radius: 9999px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: #6d5b4c;
  font-size: 0.875rem;
  transition: background 0.3s ease;
}
.qty-btn:hover {
  background: #e3ddd1;
}

.qty-input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1.5px solid #dcc9b6;
  border-right: 1.5px solid #dcc9b6;
  border-radius: 0;
  height: 40px;
  padding: 0;
  font-size: 1rem;
  box-shadow: none;
  outline: none;
}
.qty-input:focus {
  box-shadow: none;
  border-color: #dcc9b6;
}

.btn-cart {
  flex: 1;
  justify-content: center;
}

.subscription-small-banner {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  background: #eef5f1;
  border: 1px solid rgba(78, 122, 92, 0.3);
  border-radius: 8px;
  font-size: 0.8rem;
  color: #6d5b4c;
  transition: background 0.3s ease;
}
.subscription-small-banner:hover {
  background: #dcc9b6;
  opacity: 1;
}
.subscription-small-banner strong {
  color: #3a5e44;
}
.subscription-small-banner .fa-chevron-right {
  margin-left: auto;
  color: #ae815a;
}

.related-products {
  padding: 4rem 0;
  border-top: 1px solid #e3ddd1;
}
.related-products .section-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.blog-page .container,
.blog-single-page .container {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.blog-single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}

.article-header {
  margin-bottom: 2.5rem;
}
.article-header .blog-card-cat {
  position: static;
  display: inline-block;
  margin-bottom: 1rem;
}
.article-header h1 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #ae815a;
  margin-bottom: 1.5rem;
}
.article-meta i {
  margin-right: 0.375rem;
  color: #4e7a5c;
}

.article-eyecatch {
  border-radius: 16px;
  overflow: hidden;
}
.article-eyecatch img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-body {
  font-size: 1rem;
  line-height: 1.9;
  color: #2c1810;
  margin-bottom: 3rem;
}
.article-body h2 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin: 2.5rem 0 1rem;
  padding-left: 0.875rem;
  border-left: 3px solid #4e7a5c;
}
.article-body h3 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin: 1.75rem 0 0.75rem;
}
.article-body p {
  margin-bottom: 1.25rem;
}
.article-body img {
  border-radius: 8px;
  margin: 1.5rem 0;
}
.article-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-body ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-body li {
  margin-bottom: 0.5rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.article-tag {
  padding: 0.375rem 0.875rem;
  background: #e3ddd1;
  border-radius: 9999px;
  font-size: 0.8rem;
  color: #6d5b4c;
  transition: all 0.3s ease;
}
.article-tag:hover {
  background: #4e7a5c;
  color: #ffffff;
  opacity: 1;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e3ddd1;
  border-bottom: 1px solid #e3ddd1;
}
.article-nav-prev a, .article-nav-next a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #6d5b4c;
  transition: color 0.3s ease;
}
.article-nav-prev a:hover, .article-nav-next a:hover {
  color: #4e7a5c;
  opacity: 1;
}
.article-nav-next {
  text-align: right;
}
.article-nav-next a {
  justify-content: flex-end;
}

.article-back {
  margin-top: 1.5rem;
}

.blog-sidebar {
  position: sticky;
  top: calc(72px + 1rem);
}

.sidebar-widget {
  margin-bottom: 1.75rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #dcc9b6;
}
.sidebar-widget-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #e3ddd1;
}

.sidebar-product {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f2ede6;
}
.sidebar-product:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sidebar-product a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.sidebar-product-img {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e3ddd1;
}
.sidebar-product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sidebar-product-info p {
  font-size: 0.8rem;
  color: #6d5b4c;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}
.sidebar-product-info span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3a5e44;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
}

.sidebar-cat-list li {
  border-bottom: 1px solid #f2ede6;
}
.sidebar-cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: #6d5b4c;
  transition: color 0.3s ease;
}
.sidebar-cat-list li a:hover {
  color: #4e7a5c;
  opacity: 1;
}
.sidebar-cat-list li a span {
  font-size: 0.7rem;
  color: #ae815a;
}

.sidebar-article {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f2ede6;
}
.sidebar-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sidebar-article a {
  display: flex;
  gap: 0.875rem;
}
.sidebar-article-img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e3ddd1;
}
.sidebar-article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sidebar-article-info time {
  display: block;
  font-size: 0.7rem;
  color: #ae815a;
  margin-bottom: 0.25rem;
}
.sidebar-article-info p {
  font-size: 0.8rem;
  color: #6d5b4c;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-page {
  padding-bottom: 6rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  padding-top: 3rem;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 160px 120px 40px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e3ddd1;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #e3ddd1;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cart-item-img .product-card-placeholder {
  font-size: 1.5rem;
}
.cart-item-name {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #4b2b19;
  margin-bottom: 0.25rem;
}
.cart-item-price {
  font-size: 0.8rem;
  color: #ae815a;
}
.cart-item-subtotal {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3a5e44;
  text-align: right;
}
.cart-item-remove {
  color: #ae815a;
  font-size: 1rem;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.cart-item-remove:hover {
  background: #fff5f5;
  color: #c53030;
}

.cart-empty {
  text-align: center;
  padding: 4rem 0;
  color: #ae815a;
}
.cart-empty i {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}
.cart-empty p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.cart-summary {
  background: #f2ede6;
  border: 1px solid #dcc9b6;
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: calc(72px + 1rem);
}
.cart-summary-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #4b2b19;
  margin-bottom: 1.5rem;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #6d5b4c;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e3ddd1;
}
.cart-summary-total {
  font-size: 1.125rem;
  font-weight: 700;
  color: #4b2b19;
  border-bottom: none;
  padding-bottom: 1.5rem;
  margin-bottom: 0.5rem;
}

.error-page {
  padding: 10rem 0;
  text-align: center;
}
.error-page h1 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.error-page p {
  color: #ae815a;
  margin-bottom: 2rem;
}

.error-number {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 8rem;
  font-weight: 900;
  color: #dcc9b6;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-desc {
  color: #ae815a;
  margin-bottom: 2rem;
}

body.admin-bar .site-header {
  top: 32px;
}
body.admin-bar #wpadminbar {
  position: fixed;
}

@media screen and (max-width: 600px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --header-h: 60px;
  }
  .header-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-top .container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-newsletter {
    grid-column: 1/-1;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .roasting-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .roasting-img {
    aspect-ratio: 16/9;
  }
  .sustainability-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .shop-layout {
    grid-template-columns: 210px 1fr;
    gap: 2rem;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .blog-single-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-h: 56px;
  }
  main {
    padding-top: 60px;
  }
  section {
    padding: 4rem 0;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .filter-panel {
    display: none;
  }
  .filter-panel.open {
    display: block;
  }
  .filter-toggle-btn {
    display: flex;
  }
  .shop-sort-bar {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-top .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  .product-action {
    flex-wrap: wrap;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: 72px 1fr auto;
  }
  .cart-item-subtotal, .cart-item-qty {
    display: none;
  }
  .article-nav {
    grid-template-columns: 1fr;
  }
  .article-nav-next {
    text-align: left;
  }
  .article-nav-next a {
    justify-content: flex-start;
  }
  .roasting-content {
    padding: 0;
  }
  .fee-cards {
    grid-template-columns: 1fr;
  }
  .flow-steps {
    flex-direction: column;
  }
  .flow-arrow {
    transform: rotate(90deg);
    align-self: center;
    padding: 0;
  }
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }
  .legal-table th {
    background: #e3ddd1;
    border-bottom: none;
  }
}
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.woocommerce .woocommerce-breadcrumb {
  margin: 2em 0;
  padding: 0;
}

.faq-container {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.faq-tab {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid #dcc9b6;
  color: #6d5b4c;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}
.faq-tab:hover, .faq-tab.active {
  background: #4b2b19;
  border-color: #4b2b19;
  color: #ffffff;
}

.faq-section {
  display: none;
}
.faq-section.active {
  display: block;
}

.faq-category-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #4e7a5c;
  display: inline-block;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-bottom: 1px solid #e3ddd1;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #4b2b19;
  cursor: pointer;
  background: none;
  text-align: left;
  gap: 1rem;
  transition: color 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
}
.accordion-trigger:hover {
  color: #4e7a5c;
}
.accordion-trigger i {
  color: #4e7a5c;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.accordion-item.open .accordion-trigger i {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.875rem;
  color: #6d5b4c;
  line-height: 1.9;
}
.accordion-body p {
  margin-bottom: 0.75rem;
}
.accordion-body p:last-child {
  margin-bottom: 0;
}
.accordion-body ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.accordion-body li {
  margin-bottom: 0.375rem;
}

.faq-cta {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem;
  background: #e3ddd1;
  border-radius: 16px;
}
.faq-cta p {
  font-size: 1rem;
  color: #6d5b4c;
  margin-bottom: 1.5rem;
}

.legal-container {
  padding-top: 3rem;
  padding-bottom: 6rem;
  max-width: 900px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.legal-table th,
.legal-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e3ddd1;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.legal-table th {
  width: 200px;
  background: #f2ede6;
  color: #4b2b19;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}
.legal-table td {
  color: #6d5b4c;
}

.policy-content {
  max-width: 760px;
}
.policy-content > p {
  margin-bottom: 2.5rem;
  color: #6d5b4c;
  line-height: 1.9;
}

.policy-section {
  margin-bottom: 2.5rem;
}
.policy-section h2 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e3ddd1;
}
.policy-section p {
  color: #6d5b4c;
  line-height: 1.9;
  margin-bottom: 0.75rem;
}
.policy-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #6d5b4c;
  line-height: 1.9;
}
.policy-section li {
  margin-bottom: 0.375rem;
}

.shipping-container {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.shipping-section-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4b2b19;
  line-height: 1.3;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #4e7a5c;
  display: inline-block;
}

.shipping-note {
  font-size: 0.8rem;
  color: #ae815a;
  margin-bottom: 1.5rem;
}

.shipping-flow {
  margin-bottom: 5rem;
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.flow-step {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
}

.flow-icon {
  width: 64px;
  height: 64px;
  background: #e3ddd1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: #4e7a5c;
  font-size: 1.5rem;
}

.flow-body h3 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 0.875rem;
  color: #ae815a;
  margin-bottom: 0.25rem;
}
.flow-body h3 span {
  display: block;
  font-size: 1rem;
  color: #4b2b19;
  margin-top: 0.2rem;
}
.flow-body p {
  font-size: 0.8rem;
  color: #6d5b4c;
  line-height: 1.7;
}

.flow-arrow {
  color: #dcc9b6;
  font-size: 1.5rem;
  padding-top: 1.5rem;
  flex-shrink: 0;
}

.shipping-fee {
  margin-bottom: 5rem;
}

.fee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fee-card {
  background: #ffffff;
  border: 1px solid #dcc9b6;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(75, 43, 25, 0.13);
}
.fee-card--accent {
  background: #4b2b19;
  color: #ffffff;
  border-color: #4b2b19;
}
.fee-card--accent .fee-card-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #4e7a5c;
}
.fee-card--accent h3 {
  color: #ffffff;
}
.fee-card--accent p {
  color: #dcc9b6;
}
.fee-card--accent .fee-price {
  color: #4e7a5c;
}

.fee-card-icon {
  width: 56px;
  height: 56px;
  background: #e3ddd1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: #4e7a5c;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.fee-card h3 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  color: #4b2b19;
  margin-bottom: 0.75rem;
}
.fee-card p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.fee-price {
  font-size: 1.25rem;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  color: #3a5e44;
  margin-bottom: 0.75rem;
}
.fee-price strong {
  font-size: 1.5rem;
}
.fee-price span {
  font-size: 0.8rem;
}

.shipping-area {
  margin-bottom: 5rem;
}

.area-table-wrap {
  overflow-x: auto;
}

.area-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.area-table th {
  background: #4b2b19;
  color: #ffffff;
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 700;
}
.area-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #e3ddd1;
  color: #6d5b4c;
}
.area-table tr:hover td {
  background: #f2ede6;
}
.area-table td:last-child {
  font-weight: 700;
  color: #4b2b19;
}

.shipping-timeslot {
  margin-bottom: 5rem;
}
.shipping-timeslot p {
  font-size: 0.875rem;
  color: #6d5b4c;
  margin-bottom: 1.25rem;
}

.timeslot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.timeslot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  background: #e3ddd1;
  border-radius: 16px;
  border: 1.5px solid #dcc9b6;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b2b19;
  flex: 1;
  min-width: 120px;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.timeslot-card:hover {
  background: #eef5f1;
  border-color: #4e7a5c;
}
.timeslot-card i {
  font-size: 1.5rem;
  color: #4e7a5c;
}/*# sourceMappingURL=main.css.map */