:root {
  --tea-teal: #68c3b5;
  --tea-teal-dark: #2c7f96;
  --tea-orange: #f3a000;
  --tea-green: #123f25;
  --tea-red: #d52445;
  --tea-gray: #696969;
  --tea-light: #f6f7f8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--tea-gray);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: #fff;
  color: #111;
}

.notice-bar {
  position: relative;
  min-height: 38px;
  padding: 9px 52px;
  background: var(--tea-teal);
  color: #fff;
  text-align: center;
  font-size: 13px;
}

.notice-bar button {
  position: absolute;
  top: 0;
  right: 8px;
  width: 40px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.hours-bar {
  max-width: 1480px;
  min-height: 48px;
  margin: 0 auto;
  padding: 14px 10px 11px;
  border-bottom: 1px solid #e5e5e5;
  color: #343434;
  font-size: 13px;
}

.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1220px;
  min-height: 108px;
  margin: 0 auto;
  padding: 12px 36px;
}

.logo-link,
.logo-link .custom-logo-link {
  display: block;
}

.logo-link img {
  width: 94px;
  height: 72px;
  object-fit: contain;
}

.phone-block {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
}

.phone-block small,
.phone-block strong {
  display: block;
}

.phone-block small {
  margin-bottom: 4px;
  font-size: 13px;
}

.phone-block strong {
  font-size: 15px;
  font-weight: 500;
}

.phone-icon {
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}

.nav-row {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 65px;
  border-top: 1px solid #eee;
}

.menu-label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 278px;
  padding: 0 26px;
  background: var(--tea-teal-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  max-width: 980px;
  padding: 0 36px;
}

.teaology-menu {
  display: flex;
  align-items: center;
  gap: 38px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.teaology-menu li {
  margin: 0;
}

.desktop-nav .teaology-menu a {
  display: block;
  padding: 21px 0;
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .025em;
  white-space: nowrap;
}

.desktop-nav .current-menu-item > a,
.desktop-nav .teaology-menu a:hover,
.desktop-nav .teaology-menu a:focus {
  color: #277a8f;
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

.hero-shell {
  padding: 40px 0 26px;
  background:
    linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,.7)),
    radial-gradient(circle at 20% 30%, #e5eee9 0, transparent 36%),
    #f4f7f7;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 2.7fr 1fr 1fr;
  gap: 20px;
  max-width: 1480px;
  height: 470px;
  margin: 0 auto;
}

.hero-mosaic a,
.hero-middle {
  min-height: 0;
}

.hero-mosaic a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
}

.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.hero-mosaic a:hover img,
.hero-mosaic a:focus img {
  transform: scale(1.018);
}

.hero-main img {
  position: absolute;
  inset: 0;
  animation: teaology-hero-fade 10s infinite;
}

.hero-main img:nth-child(2) {
  opacity: 0;
  animation-delay: 5s;
}

@keyframes teaology-hero-fade {
  0%, 45% {
    opacity: 1;
  }
  50%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-middle {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.category-section {
  padding: 34px 0 44px;
  background: #fff;
}

.category-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(145px, 1fr));
  gap: 20px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  overflow: hidden;
}

.category-card {
  min-width: 0;
  text-align: center;
}

.category-card:nth-child(n+7) {
  display: none;
}

.category-card img {
  width: 130px;
  height: 130px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform .25s ease;
}

.category-card:hover img,
.category-card:focus img {
  transform: translateY(-5px);
}

.category-card span {
  color: #626262;
  font-size: 14px;
  font-weight: 700;
}

.menu-section {
  padding: 38px 28px 86px;
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.9)),
    radial-gradient(circle at 40% 0, #e2efea, transparent 40%),
    #f5f7f7;
}

.menu-section h2 {
  margin: 0 auto 52px;
  text-align: center;
}

.menu-section h2 span {
  display: inline-block;
  min-width: 405px;
  padding: 10px 40px;
  background: #37b0a9;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(21, 50, 34, .06);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.menu-card:hover img,
.menu-card:focus img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.blog-section {
  padding: 75px 28px 88px;
  background: #fff;
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading > p {
  margin: 0 0 14px;
  color: var(--tea-orange);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 36px;
  letter-spacing: .045em;
}

.section-heading h2 {
  margin: 0;
  color: #3d3d3d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.55;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.post-card {
  position: relative;
  padding-bottom: 90px;
}

.post-card > a {
  display: block;
  height: 380px;
  overflow: hidden;
}

.post-card > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  min-height: 170px;
  padding: 20px 22px 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.post-card h3 {
  margin: 0 0 12px;
  color: #27333c;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.28;
  text-transform: uppercase;
}

.post-card p {
  margin: 0 0 12px;
  color: #666;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.55;
}

.read-more {
  color: #299b97;
  font-size: 13px;
  font-weight: 700;
}

.testimonials-section {
  padding: 55px 6% 50px;
  background: #fff;
}

.testimonials-section > h2 {
  margin: 0 0 38px;
  color: #303030;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1220px;
  margin: 0 auto;
}

.testimonial-card {
  min-height: 330px;
  padding: 20px 16px 24px;
  border: 1px solid var(--tea-red);
  border-radius: 4px;
  background: #fff;
}

.testimonial-card img {
  width: 110px;
  height: 110px;
  margin: 0 auto 12px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card h3 {
  margin: 0 0 32px;
  color: var(--tea-red);
  text-align: center;
  font-size: 16px;
}

.testimonial-card p,
.testimonial-copy {
  margin: 0;
  color: #353535;
  font-size: 15px;
  line-height: 1.8;
}

.testimonial-copy > *:first-child {
  margin-top: 0;
}

.testimonial-copy > *:last-child {
  margin-bottom: 0;
}

.site-footer {
  min-height: 510px;
  padding: 80px 6% 60px;
  background: #f5f6f7;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(240px, .8fr);
  gap: 120px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand > img {
  width: 225px;
  height: 145px;
  margin: 0 0 30px;
  object-fit: contain;
  object-position: left center;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
}

.contact-line > span:first-child {
  min-width: 18px;
}

.footer-phone,
.footer-phone a {
  color: var(--tea-teal);
  font-size: 25px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: #e9eaec;
  color: #555;
  font-weight: 700;
}

.footer-menu {
  padding-top: 8px;
}

.footer-menu h2 {
  margin: 0 0 32px;
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 500;
}

.footer-menu .teaology-menu {
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.footer-menu .teaology-menu a {
  color: #696969;
  font-size: 14px;
}

.footer-menu .teaology-menu a::before {
  content: "◦";
  margin-right: 10px;
}

.content-shell {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 70px 0;
}

.content-shell > article,
.content-shell .page-content,
.homepage-content {
  color: #444;
  font-size: 17px;
  line-height: 1.8;
}

.content-shell h1 {
  margin: 0 0 30px;
  color: #27333c;
  font-size: clamp(34px, 5vw, 55px);
  line-height: 1.15;
}

.content-shell h2,
.content-shell h3 {
  color: #27333c;
}

.entry-thumbnail {
  display: block;
  aspect-ratio: 1 / 1;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 5px;
  background: #edf3ef;
}

.entry-thumbnail img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform .35s ease;
}

.entry-thumbnail:hover img,
.entry-thumbnail:focus img {
  transform: scale(1.025);
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.post-list article {
  display: flex;
  min-width: 0;
  padding: 22px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  flex-direction: column;
  background: #fff;
}

.post-list h2 {
  min-height: calc(1.3em * 4);
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.3;
}

.post-list article > p {
  min-height: calc(1.55em * 4);
  margin: 0 0 20px;
  line-height: 1.55;
}

.post-list .read-more {
  align-self: flex-start;
  margin-top: auto;
}

.page-links,
.nav-links {
  margin-top: 30px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 55px;
  align-items: center;
}

.about-intro > img {
  width: 100%;
  border-radius: 8px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 42px;
}

.contact-card {
  padding: 32px;
  border: 1px solid #e2e7e5;
  border-radius: 8px;
  background: #f8faf9;
}

.contact-card h2 {
  margin-top: 0;
}

.contact-form-content {
  max-width: 800px;
}

.contact-form-content input:not([type="submit"]),
.contact-form-content textarea,
.contact-form-content select {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #d8dddb;
  border-radius: 3px;
  background: #fff;
}

.contact-form-content input[type="submit"],
.contact-form-content button[type="submit"] {
  padding: 13px 22px;
  border: 0;
  border-radius: 3px;
  background: var(--tea-teal-dark);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.teaology-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.teaology-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 7px;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--tea-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.order-intro,
.gallery-intro,
.contact-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.order-intro h1,
.gallery-intro h1,
.contact-intro h1 {
  margin-bottom: 16px;
}

.page-template-page-order {
  background: #f7f8f4;
}

.order-page {
  width: min(100% - 40px, 1240px);
}

.order-intro > p:last-child {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: #63706a;
  font-size: 16px;
}

.order-tools {
  margin-bottom: 42px;
  padding: 24px;
  border: 1px solid #e3e9e5;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 40px rgba(28, 62, 48, .05);
}

.order-tools input[type="search"] {
  display: block;
  width: min(100%, 620px);
  margin: 0 auto 22px;
  padding: 15px 20px;
  border: 1px solid #ccd9d4;
  border-radius: 999px;
  background: #fff;
  color: #23352d;
  box-shadow: inset 0 1px 2px rgba(25, 54, 41, .04);
  outline: none;
}

.order-tools input[type="search"]:focus {
  border-color: var(--tea-teal-dark);
  box-shadow: 0 0 0 4px rgba(44, 127, 150, .12);
}

.order-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}

.order-filters button {
  padding: 9px 16px;
  border: 1px solid #b8d8d2;
  border-radius: 999px;
  background: #fff;
  color: #397d73;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.order-filters button.is-active,
.order-filters button:hover,
.order-filters button:focus {
  border-color: var(--tea-teal-dark);
  background: var(--tea-teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

.clover-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.clover-product-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #dfe7e2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(27, 60, 46, .08);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.clover-product-card:hover {
  border-color: #bdd9d1;
  box-shadow: 0 22px 58px rgba(27, 60, 46, .13);
  transform: translateY(-5px);
}

.clover-product-card[hidden] {
  display: none;
}

.product-poster {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #edf3ef;
}

.product-poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.clover-product-card:hover .product-poster > img {
  transform: scale(1.025);
}

.product-poster > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(17, 57, 34, .9);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.product-poster > em {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #1e5748;
  box-shadow: 0 6px 18px rgba(18, 48, 37, .14);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
}

.product-poster:hover > em,
.product-poster:focus > em {
  opacity: 1;
  transform: translateY(0);
}

.product-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.product-card-copy h2 {
  min-height: calc(1.28em * 2);
  margin: 0 0 18px;
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.28;
}

.product-card-copy h2 a {
  color: #20332c;
  transition: color .2s ease;
}

.product-card-copy h2 a:hover,
.product-card-copy h2 a:focus {
  color: #d97918;
}

.product-card-description {
  height: 310px;
  padding: 2px 12px 2px 0;
  margin-bottom: 26px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #9bc5bb #edf4f1;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  color: #5d6762;
  font-size: 15px;
  line-height: 1.78;
}

.product-card-description::-webkit-scrollbar {
  width: 7px;
}

.product-card-description::-webkit-scrollbar-track {
  border-radius: 99px;
  background: #edf4f1;
}

.product-card-description::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #9bc5bb;
}

.product-card-description:focus {
  border-radius: 5px;
  outline: 3px solid rgba(44, 127, 150, .18);
  outline-offset: 3px;
}

.product-card-description p {
  margin: 0 0 13px;
}

.product-card-description p:last-child {
  margin-bottom: 0;
}

.product-card-description strong {
  color: #2e463c;
}

.product-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding: 16px;
  border: 1px solid #deebe6;
  border-radius: 16px;
  background: #f4f9f7;
}

.product-card-actions .teaology-button,
.single-product-actions .teaology-button {
  padding: 14px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d8491, #247161);
  box-shadow: 0 9px 20px rgba(37, 114, 102, .2);
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}

.product-card-actions .teaology-button:hover,
.product-card-actions .teaology-button:focus,
.single-product-actions .teaology-button:hover,
.single-product-actions .teaology-button:focus {
  box-shadow: 0 12px 26px rgba(37, 114, 102, .28);
  transform: translateY(-2px);
}

.product-qr {
  margin: 0;
  text-align: center;
}

.product-qr-trigger {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 5px;
  border: 1px solid #d6e2dd;
  border-radius: 10px;
  background: #fff;
  cursor: zoom-in;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-qr-trigger:hover,
.product-qr-trigger:focus {
  border-color: var(--tea-orange);
  box-shadow: 0 8px 18px rgba(41, 70, 57, .14);
  outline: none;
  transform: translateY(-2px);
}

.product-qr-trigger img {
  width: 92px;
  height: 92px;
  margin: 0;
  object-fit: contain;
}

.product-qr figcaption {
  margin-top: 6px;
  color: #68736e;
  font-size: 10px;
  font-weight: 700;
}

.qr-zoom-icon {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  place-items: center;
  background: var(--tea-orange);
  color: #fff;
  box-shadow: 0 4px 10px rgba(113, 67, 15, .22);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.no-products-message {
  padding: 50px 0;
  text-align: center;
}

.single-product-page {
  padding: 70px 0 90px;
  background:
    radial-gradient(circle at 8% 12%, rgba(104, 195, 181, .14), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(243, 160, 0, .1), transparent 26%),
    #f7f8f4;
}

.single-product-shell {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #6d7873;
  font-size: 13px;
  font-weight: 700;
}

.product-breadcrumb a {
  color: var(--tea-teal-dark);
}

.single-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: start;
  overflow: hidden;
  border: 1px solid #dfe7e2;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(27, 60, 46, .11);
}

.single-product-poster {
  min-height: 100%;
  background: #edf3ef;
}

.single-product-poster img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.single-product-copy {
  padding: clamp(34px, 5vw, 64px);
}

.single-product-copy h1 {
  margin: 0 0 26px;
  color: #20332c;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.product-detail-description {
  color: #58645e;
  font-size: 16px;
  line-height: 1.8;
}

.product-detail-description p {
  margin: 0 0 17px;
}

.product-detail-description strong {
  color: #263e34;
}

.single-product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 18px;
  border: 1px solid #deebe6;
  border-radius: 18px;
  background: #f4f9f7;
}

.product-qr-large {
  min-width: 156px;
}

.product-qr-large .product-qr-trigger img {
  width: 142px;
  height: 142px;
}

.back-to-menu {
  display: inline-flex;
  gap: 7px;
  margin-top: 25px;
  color: #2c7567;
  font-size: 14px;
  font-weight: 800;
}

.qr-lightbox[hidden] {
  display: none;
}

.qr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  padding: 24px;
  place-items: center;
}

.qr-lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(10, 27, 20, .78);
  cursor: zoom-out;
  backdrop-filter: blur(7px);
}

.qr-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 510px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
  text-align: center;
}

.qr-lightbox-panel h2 {
  margin: 0 40px 20px;
  color: #20332c;
  font-size: 24px;
  line-height: 1.3;
}

.qr-lightbox-panel > img {
  width: min(100%, 340px);
  margin: 0 auto 18px;
  border: 1px solid #dfe8e4;
  border-radius: 16px;
}

.qr-lightbox-panel > p:not(.eyebrow) {
  max-width: 390px;
  margin: 0 auto 22px;
  color: #66716c;
  font-size: 14px;
}

.qr-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: #edf3f0;
  color: #29483c;
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

body.qr-lightbox-open {
  overflow: hidden;
}

.about-legacy-page {
  background: #fff;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: 60px;
  align-items: center;
}

.about-hero-copy h1 {
  margin-bottom: 12px;
}

.about-hero-copy h2 {
  margin-top: 0;
  color: var(--tea-teal-dark);
}

.about-hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(18, 63, 37, .12);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 10px auto 30px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--tea-green);
  color: #fff;
}

.about-stats div {
  padding: 32px;
  text-align: center;
}

.about-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: #f8bd49;
  font-size: 42px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-feature-card {
  padding: 28px;
  border: 1px solid #e4ece9;
  border-radius: 10px;
  background: #f8fbfa;
}

.about-feature-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
}

.about-feature-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.about-feature-card p {
  margin: 0;
  font-size: 14px;
}

.legacy-feedback-gallery {
  align-items: start;
}

.legacy-feedback-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

.legacy-feedback-gallery img {
  aspect-ratio: auto;
}

.legacy-feedback-gallery .gallery-featured {
  grid-column: 1 / -1;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 36px;
}

.contact-form-panel,
.contact-details-panel {
  padding: 34px;
  border: 1px solid #e0e8e5;
  border-radius: 12px;
  background: #f9fbfa;
}

.contact-form-panel h2,
.contact-details-panel h2 {
  margin-top: 0;
}

.teaology-contact-form p {
  margin: 0 0 16px;
}

.teaology-contact-form label {
  display: block;
  font-weight: 700;
}

.teaology-contact-form input,
.teaology-contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid #cfdad6;
  border-radius: 4px;
  background: #fff;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.form-status {
  padding: 11px 14px;
  border-radius: 4px;
  font-size: 14px;
}

.form-status.is-success {
  background: #e0f4e8;
  color: #23613c;
}

.form-status.is-error {
  background: #fde8e8;
  color: #9f2f2f;
}

.teaology-button-outline {
  border: 1px solid var(--tea-teal-dark);
  background: transparent;
  color: var(--tea-teal-dark);
}

.footer-grid {
  grid-template-columns: minmax(300px, 1.15fr) minmax(180px, .55fr) minmax(260px, .8fr);
  gap: 70px;
}

.footer-newsletter {
  padding-top: 8px;
}

.footer-newsletter h2 {
  margin: 0 0 20px;
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  margin-top: 18px;
}

.newsletter-form input[type="email"] {
  min-width: 0;
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cfd6d3;
  border-radius: 3px 0 0 3px;
}

.newsletter-form button {
  flex: 0 0 auto;
  padding: 11px 15px;
  border: 0;
  border-radius: 0 3px 3px 0;
  background: var(--tea-teal-dark);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.error-404 {
  min-height: 55vh;
  text-align: center;
}

.error-404 .button,
.teaology-button {
  display: inline-block;
  padding: 13px 22px;
  border: 0;
  border-radius: 3px;
  background: var(--tea-teal-dark);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero-mosaic {
    height: 420px;
    gap: 12px;
  }

  .teaology-menu {
    gap: 24px;
  }

  .desktop-nav {
    padding: 0 24px;
  }

  .category-track {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
  }

  .category-card:nth-child(6) {
    display: none;
  }

  .post-card > a {
    height: 300px;
  }

  .clover-product-grid,
  .about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  body.admin-bar .site-header {
    top: 46px;
  }

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

  .brand-row {
    min-height: 88px;
    padding: 8px 20px;
  }

  .logo-link img {
    width: 78px;
    height: 58px;
  }

  .phone-icon {
    font-size: 28px;
  }

  .desktop-nav,
  .menu-label {
    display: none;
  }

  .nav-row {
    display: block;
  }

  .mobile-menu-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    padding: 18px 20px;
    border: 0;
    background: var(--tea-teal-dark);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 110;
    display: block;
    padding: 10px 20px 16px;
    background: #fff;
    box-shadow: 0 12px 20px rgba(0, 0, 0, .08);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav .teaology-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav .teaology-menu a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    font-weight: 700;
  }

  .hero-shell {
    padding-top: 18px;
  }

  .hero-mosaic {
    grid-template-columns: 1.8fr 1fr;
    height: 420px;
    padding: 0 14px;
  }

  .hero-offer {
    display: none !important;
  }

  .category-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .category-card,
  .category-card:nth-child(n) {
    display: block;
    flex: 0 0 145px;
    scroll-snap-align: start;
  }

  .menu-grid,
  .post-grid,
  .post-list,
  .teaology-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    gap: 45px;
  }

  .about-hero,
  .single-product-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .single-product-poster img {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .about-hero-image {
    order: -1;
  }
}

@media (max-width: 560px) {
  .notice-bar {
    padding: 9px 44px 9px 15px;
    font-size: 11px;
  }

  .phone-block small {
    display: none;
  }

  .phone-block strong {
    font-size: 13px;
  }

  .hero-mosaic {
    display: block;
    height: auto;
  }

  .hero-main {
    aspect-ratio: 1.73 / 1;
  }

  .hero-middle {
    display: none;
  }

  .category-section {
    padding: 26px 0 34px;
  }

  .category-track {
    padding: 0 16px;
  }

  .category-card {
    flex-basis: 122px;
  }

  .category-card img {
    width: 105px;
    height: 105px;
  }

  .category-card span {
    font-size: 12px;
  }

  .menu-section {
    padding: 30px 12px 58px;
  }

  .menu-section h2 {
    margin-bottom: 30px;
  }

  .menu-section h2 span {
    min-width: min(100%, 330px);
    padding: 10px 20px;
    font-size: 17px;
  }

  .menu-grid,
  .post-grid,
  .post-list,
  .teaology-gallery,
  .clover-product-grid,
  .about-features {
    grid-template-columns: 1fr;
  }

  .blog-section {
    padding: 52px 14px 58px;
  }

  .section-heading > p {
    font-size: 29px;
  }

  .section-heading h2 {
    font-size: 14px;
  }

  .post-card > a {
    height: 290px;
  }

  .post-list h2,
  .post-list article > p {
    min-height: 0;
  }

  .testimonials-section {
    padding: 42px 16px;
  }

  .testimonials-section > h2 {
    font-size: 25px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 0;
  }

  .site-footer {
    padding: 55px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-intro,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .order-page {
    width: min(100% - 24px, 1240px);
  }

  .order-tools {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .product-card-copy {
    padding: 22px;
  }

  .product-card-copy h2 {
    min-height: 0;
  }

  .product-card-description {
    height: auto;
    padding-right: 0;
    overflow: visible;
  }

  .product-card-actions {
    gap: 14px;
    padding: 13px;
  }

  .product-card-actions .teaology-button {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }

  .single-product-page {
    padding: 38px 0 60px;
  }

  .single-product-shell {
    width: min(100% - 24px, 1180px);
  }

  .single-product-layout {
    border-radius: 18px;
  }

  .single-product-copy {
    padding: 28px 22px 32px;
  }

  .single-product-actions {
    grid-template-columns: 1fr;
  }

  .product-qr-large {
    min-width: 0;
  }

  .qr-lightbox {
    padding: 14px;
  }

  .qr-lightbox-panel {
    padding: 28px 20px 24px;
    border-radius: 18px;
  }

  .qr-lightbox-panel h2 {
    margin-right: 32px;
    margin-left: 32px;
    font-size: 21px;
  }

  .about-stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-stats div + div {
    border-top: 1px solid rgba(255, 255, 255, .24);
    border-left: 0;
  }

  .footer-newsletter {
    grid-column: auto;
  }

  .contact-form-panel,
  .contact-details-panel {
    padding: 24px;
  }

  .about-intro {
    gap: 28px;
  }

  .content-shell {
    width: min(100% - 28px, 1180px);
    padding: 50px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-main img:nth-child(2) {
    display: none;
  }
}

/* =========================================================
   KHUNG BINH LUAN (comments.php)
   ========================================================= */
.teaology-comments {
  max-width: 780px;
  margin: 60px auto 0;
  padding-top: 50px;
  border-top: 1px solid #e5e5e5;
}

.teaology-comments__title {
  margin: 0 0 30px;
  color: #27333c;
  font-size: 26px;
  font-weight: 700;
}

.teaology-comments__list {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.teaology-comments__list .teaology-comments__list {
  margin-top: 20px;
  margin-left: 40px;
}

.teaology-comment {
  margin-bottom: 24px;
}

.teaology-comment__inner {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
}

.teaology-comment__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.teaology-comment__body {
  flex: 1;
  min-width: 0;
}

.teaology-comment__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.teaology-comment__author {
  color: #27333c;
  font-weight: 700;
}

.teaology-comment__date a {
  color: var(--tea-gray);
  font-size: 13px;
}

.teaology-comment__date a:hover {
  color: var(--tea-teal-dark);
}

.teaology-comment__pending {
  margin: 0 0 10px;
  color: var(--tea-orange);
  font-size: 13px;
  font-style: italic;
}

.teaology-comment__text {
  color: #444;
  font-size: 15.5px;
  line-height: 1.7;
}

.teaology-comment__text p:last-child {
  margin-bottom: 0;
}

.teaology-comment__reply {
  margin-top: 10px;
}

.teaology-comment__reply a {
  color: var(--tea-teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.teaology-comment__reply a:hover {
  color: var(--tea-red);
}

.teaology-comments__closed {
  padding: 16px 20px;
  border-radius: 8px;
  background: var(--tea-light);
  color: var(--tea-gray);
}

/* Form binh luan */
.teaology-comment-form {
  margin-top: 40px;
}

.teaology-comment-form h3 {
  margin: 0 0 20px;
  color: #27333c;
  font-size: 22px;
}

.teaology-comment-form__row {
  margin: 0 0 18px;
}

.teaology-comment-form__row--full textarea {
  width: 100%;
}

.teaology-comment-form__row label {
  display: block;
  margin-bottom: 6px;
  color: #27333c;
  font-size: 14px;
  font-weight: 700;
}

.teaology-comment-form input[type="text"],
.teaology-comment-form input[type="email"],
.teaology-comment-form input[type="url"],
.teaology-comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: var(--tea-light);
  font-family: inherit;
  font-size: 15px;
  color: #27333c;
  transition: border-color .2s ease, background .2s ease;
}

.teaology-comment-form input[type="text"]:focus,
.teaology-comment-form input[type="email"]:focus,
.teaology-comment-form input[type="url"]:focus,
.teaology-comment-form textarea:focus {
  outline: none;
  border-color: var(--tea-teal-dark);
  background: #fff;
}

.teaology-comment-form textarea {
  min-height: 130px;
  resize: vertical;
}

.teaology-comment-form__submit {
  cursor: pointer;
  font-size: 15px;
}

/* =========================================================
   BAI VIET LIEN QUAN (related posts)
   ========================================================= */
.related-posts {
  max-width: 1180px;
  margin: 70px auto 0;
  padding-top: 50px;
  border-top: 1px solid #e5e5e5;
}

.related-posts__title {
  margin: 0 0 28px;
  color: #27333c;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.related-post-card {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
}

.related-post-card:hover {
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  transform: translateY(-3px);
}

.related-post-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--tea-light);
}

.related-post-card__thumb img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.related-post-card__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--tea-teal-dark);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.related-post-card__body {
  padding: 18px 20px 22px;
}

.related-post-card__date {
  display: block;
  margin-bottom: 8px;
  color: var(--tea-gray);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.related-post-card__body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.related-post-card__body h3 a {
  color: #27333c;
}

.related-post-card__body h3 a:hover {
  color: var(--tea-teal-dark);
}

@media (max-width: 900px) {
  .related-posts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .related-posts__grid {
    grid-template-columns: 1fr;
  }

  .teaology-comment__inner {
    flex-direction: column;
    gap: 12px;
  }

  .teaology-comments__list .teaology-comments__list {
    margin-left: 16px;
  }
}

/* ==== Mon cung danh muc (trang chi tiet san pham) ==== */
.related-products {
  max-width: 1320px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid #e6e6e6;
}

.related-products__title {
  text-align: center;
  margin: 0 0 28px;
  font-size: 1.75rem;
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-product-card .read-more {
  display: inline-block;
  margin-top: 6px;
}

.related-product-card > a img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.related-product-card h3 {
  font-size: 1.05rem;
}

@media (max-width: 960px) {
  .related-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .related-products__grid {
    grid-template-columns: 1fr;
  }
}
