/*
Theme Name: MusMir
Author: MusMir
Description: WordPress + WooCommerce theme for the MusMir webshop, designed for a scalable product catalog and custom storefront experience.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: musmir-tea
Tags: ecommerce, woocommerce, responsive
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================================
   MusMir Tea - Variables
   ========================================================= */

:root {
  --green: #245515;
  --green-dark: #163b16;
  --green-light: #5ba51b;
  --sage: #8eb47e;
  --sage-soft: #eef5e9;
  --cream: #f6f2eb;
  --cream-2: #fbfaf4;
  --paper: #fffdf7;
  --line: #e7ded1;
  --ink: #131313;
  --muted: #657080;
  --gold: #b99552;
  --shadow: 0 18px 42px rgba(29, 54, 21, .10);
  --radius: 22px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


/* =========================================================
   Base
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1240px, calc(100% - 52px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  padding: 10px;
  z-index: 100;
}

.skip-link:focus {
  left: 10px;
}


/* =========================================================
   Header
   ========================================================= */

.topbar {
  height: 32px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 253, 247, .97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-main {
  height: 86px;
  display: grid;
  grid-template-columns: 260px minmax(280px, 560px) 350px;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  width: 168px;
  height: 58px;
}

.brand-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.search-form {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  box-shadow: 0 4px 12px rgba(35, 31, 25, .07);
}

.search-form input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  color: #3e4751;
}

.search-submit {
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 700;
}

.header-actions a:not(.cart-button) {
  font-size: 15px;
}

.header-actions .divider {
  height: 22px;
  width: 1px;
  background: #cfc4b6;
}

.cart-button {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
  position: relative;
  font-weight: 800;
  color: var(--green-dark);
}

.cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.cart-price {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
}


/* =========================================================
   Main navigation
   ========================================================= */

.nav {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid #eee7dc;
  font-weight: 700;
  font-size: 15px;
}

.nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  position: relative;
  padding: 16px 0;
}

.nav a:hover,
.current-menu-item > a {
  color: var(--green);
}

.nav a:hover::after,
.current-menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--green);
}


/* =========================================================
   Typography
   ========================================================= */

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 {
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: .93;
  margin: 0;
}

h2 {
  font-size: clamp(36px, 3.6vw, 58px);
  line-height: 1;
  margin: 0;
}

h3 {
  font-size: 27px;
  line-height: 1.05;
  margin: 0;
}


/* =========================================================
   Page title
   ========================================================= */

.page-title {
  padding: 95px 0 70px;
  text-align: center;
  background: var(--cream-2);
}

.page-title h1 {
  font-size: clamp(54px, 4.6vw, 78px);
}

.page-title p {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 19px;
  color: var(--muted);
}

.leaf-flourish {
  color: var(--sage);
  font-size: 44px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}


/* =========================================================
   General sections
   ========================================================= */

.section {
  padding: 84px 0;
}

.section-white {
  background: #fffdf7;
}

.section-soft {
  background: #f2eee7;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.inline-link {
  color: var(--green);
  font-weight: 800;
}


/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 14px 26px;
  font-weight: 800;
  transition: .2s ease;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 10px 22px rgba(36, 85, 21, .2);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--green);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}


/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f7f6eb 0%, #edf5e7 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  opacity: .16;
  pointer-events: none;
  border: 2px solid var(--sage);
  border-radius: 44% 56% 60% 40%;
}

.hero::before {
  width: 450px;
  height: 450px;
  left: -160px;
  top: 70px;
}

.hero::after {
  width: 380px;
  height: 380px;
  right: -110px;
  bottom: 10px;
}

.hero-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #deecd6;
  color: var(--green);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
}

.hero h1 {
  margin: 38px 0 24px;
}

.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--green);
  font-weight: 500;
}

.hero p {
  max-width: 660px;
  font-size: 20px;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 30px;
}

.benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.benefit-chips a,
.benefit-chips span {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 13px 18px;
  font-weight: 800;
  color: var(--green);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .04);
}

.hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-circle {
  width: min(565px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 14px solid #fff;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(25, 48, 18, .16);
  background: #eaf3e2;
}

.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 126px;
  height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-badge strong {
  font-family: var(--serif);
  font-size: 25px;
  color: var(--green);
}

.hero-badge span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.badge-top {
  right: 32px;
  top: 70px;
}

.badge-bottom {
  left: 24px;
  bottom: 72px;
  border-radius: 22px;
  width: 156px;
  height: auto;
  padding: 18px;
}


/* =========================================================
   Categories
   ========================================================= */

.category-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.category-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 13px 28px rgba(0, 0, 0, .06);
  transition: .22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.cat-body {
  padding: 18px;
}

.cat-body h3 {
  font-size: 25px;
}

.cat-body p {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 14px;
}

.round-categories {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 25px 0 68px;
}

.round-cat {
  text-align: center;
  font-weight: 700;
  color: #292929;
}

.round-img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0eee8;
  padding: 10px;
  margin: 0 auto 12px;
  box-shadow: inset 0 0 0 8px #f8f6f0;
}

.round-img img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

.round-cat:hover .round-img {
  box-shadow: inset 0 0 0 8px #dcebd2;
  transform: translateY(-2px);
}


/* =========================================================
   Filters
   ========================================================= */

.filters {
  display: flex;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
  margin: 0 0 42px;
}

.filter,
.cat-filter {
  border: 0;
  background: #e8e4dd;
  color: var(--muted);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 800;
}

.filter.active,
.filter:hover,
.cat-filter:hover {
  background: var(--green);
  color: white;
}


/* =========================================================
   Product cards
   ========================================================= */

.product-grid,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.product-card,
.woocommerce ul.products li.product {
  background: white !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(28, 26, 22, .06);
  transition: .22s ease;
  padding: 0 !important;
  width: auto !important;
  margin: 0 !important;
}

.product-card:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-image {
  display: block;
  padding: 24px;
  background: #fbfaf5;
}

.product-image img,
.woocommerce ul.products li.product img {
  height: 330px !important;
  width: 100% !important;
  object-fit: cover;
  border-radius: 4px;
  background: #fbfaf5;
}

.product-body {
  padding: 22px;
}

.badge {
  display: inline-flex;
  background: #edf4e8;
  color: var(--green);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 13px;
}

.product-body h3 {
  font-size: 25px;
  margin-bottom: 8px;
}

.product-body p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
  min-height: 44px;
}

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.price,
.woocommerce .price {
  color: var(--green) !important;
  font-weight: 800;
  font-size: 18px;
}

.add-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  padding: 11px 18px !important;
  font-size: 13px !important;
  border-radius: 999px !important;
  background: var(--green) !important;
  color: #fff !important;
  font-weight: 800 !important;
  border: 0 !important;
}


/* =========================================================
   Single product custom sections
   ========================================================= */

.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.product-gallery-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.product-gallery-box img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 12px;
}

.product-info h1 {
  font-size: clamp(46px, 4vw, 72px);
  margin: 8px 0 18px;
}

.product-info .desc {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 28px;
}

.details-list {
  display: grid;
  gap: 12px;
  margin: 25px 0;
}

.details-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.details-list strong {
  color: var(--green);
}


/* =========================================================
   Benefits
   ========================================================= */

.why-strip {
  background: linear-gradient(90deg, #fbfaf3, #edf4e7);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 50px 42px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.benefit-grid article {
  text-align: center;
  background: rgba(255, 255, 255, .55);
  border-radius: 18px;
  padding: 24px 16px;
}

.benefit-grid span {
  font-size: 34px;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}

.benefit-grid strong {
  display: block;
  color: var(--green);
  font-size: 16px;
}

.benefit-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}


/* =========================================================
   Recipes
   ========================================================= */

.recipe-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  gap: 22px;
}

.recipe-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.recipe-card.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: span 2;
}

.recipe-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.recipe-card.featured img {
  height: 100%;
}

.recipe-card div {
  padding: 24px;
}

.recipe-card h3 {
  font-size: 28px;
}

.recipe-card p {
  color: var(--muted);
}

.recipe-card a {
  color: var(--green);
  font-weight: 800;
}


/* =========================================================
   Blog cards
   ========================================================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.blog-meta {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  margin: 18px 0 8px;
}

.blog-card h2 {
  font-size: 28px;
}

.blog-card p {
  color: var(--muted);
}

.blog-card a {
  color: var(--green);
  font-weight: 800;
}


/* =========================================================
   Story
   ========================================================= */

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.story-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  padding: 18px;
  border: 1px solid var(--line);
}

.story-image img {
  height: 430px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.story-copy p {
  font-size: 19px;
  color: var(--muted);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.stats span {
  background: #e9f1e4;
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--green);
  font-weight: 800;
}


/* =========================================================
   Contact/forms
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: start;
}

.form-card,
.details-card,
.account-card,
.summary-card,
.admin-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
}

.form-card {
  display: grid;
  gap: 18px;
}

.form-card .form-row,
.contact-grid .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

input,
textarea,
select {
  border: 1px solid #d9d0c4;
  border-radius: 10px;
  background: white;
  padding: 13px 14px;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #dcebd2;
  border-color: var(--green);
}

.full {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.details-card h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.details-card p {
  color: var(--muted);
  line-height: 1.7;
}

.details-card strong {
  color: var(--ink);
}


/* =========================================================
   Newsletter base
   ========================================================= */

.newsletter {
  background: #e9f0e3;
  padding: 52px 0;
  border-top: 1px solid #d5e1cc;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}

.newsletter h2 {
  font-size: 42px;
}

.newsletter p {
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.newsletter-form small {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
}

.newsletter-message {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.newsletter-message-success {
  background: #e8f5e9;
  color: #1b5e20;
}

.newsletter-message-error {
  background: #fdecec;
  color: #9b1c1c;
}


/* =========================================================
   Generic footer base
   ========================================================= */

.footer {
  background: var(--green-dark);
  color: white;
  padding: 72px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1.2fr 1.3fr;
  gap: 70px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 22px;
}

.footer p {
  color: #d7e6cf;
}

.footer h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
}

.footer a {
  display: block;
  color: #eff8e9;
  margin: 11px 0;
}

.socials,
.payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.socials span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.payments span {
  background: rgba(255, 255, 255, .14);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 58px;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  color: #d7e6cf;
}


/* =========================================================
   Utility
   ========================================================= */

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  font-weight: 800;
  margin: 0 0 10px;
}

.muted {
  color: var(--muted);
}

.logo-center {
  display: block;
  margin: 0 auto 18px;
  width: 120px;
}

.notice {
  background: #fff8e8;
  border: 1px solid #ead5a8;
  color: #745921;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 20px 0;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  max-width: 1240px;
  margin: 60px auto;
}

.woocommerce div.product {
  max-width: 1240px;
  margin: 70px auto;
}

.woocommerce div.product .product_title {
  font-size: 64px;
}

.woocommerce div.product div.images img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}


/* =========================================================
   General responsive
   ========================================================= */

@media (max-width: 1040px) {

  .header-main {
    grid-template-columns: 210px 1fr auto;
  }

  .search-form {
    grid-column: 1 / -1;
    order: 3;
  }

  .header-actions a:not(.cart-button),
  .divider {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    padding: 18px 26px;
  }

  .nav.open {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .hero-inner,
  .single-product-layout,
  .story-layout,
  .contact-grid,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-inner {
    min-height: auto;
  }

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

  .product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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


@media (max-width: 680px) {

  .container {
    width: min(100% - 30px, 1240px);
  }

  .topbar {
    font-size: 12px;
    text-align: center;
  }

  .header-main {
    height: auto;
    padding: 16px 0;
  }

  .brand-logo {
    width: 132px;
  }

  .brand-logo img {
    height: 48px;
  }

  .cart-button {
    padding: 0 10px;
  }

  .cart-price {
    display: none;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-badge {
    display: none;
  }

  .category-row,
  .product-grid,
  .woocommerce ul.products,
  .benefit-grid,
  .recipe-grid,
  .footer-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .recipe-card.featured {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

  .product-image img,
  .woocommerce ul.products li.product img {
    height: 260px !important;
  }

  .form-card .form-row,
  .contact-grid .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .page-title {
    padding: 60px 0 42px;
  }

  /* Mobile page titles */
  .page-title h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 8.5vw, 2.8rem) !important;
    line-height: 1.05 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: none;
  }

  /* Headings inside normal page content */
  .section > .container h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.5vw, 2.8rem) !important;
    line-height: 1.08 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto;
  }

  .section > .container h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 7.5vw, 2.35rem) !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto;
  }
}


/* =========================================================
   MusMir Tea - Newsletter
   ========================================================= */

.newsletter-card h2 {
  max-width: none !important;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.newsletter-form {
  align-items: center;
}

.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 52px;
}

.newsletter-form small {
  grid-column: 1 / -1;
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
}

.newsletter-form .newsletter-consent {
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start !important;
  column-gap: .625rem !important;
  margin: .25rem 0 0 !important;
  padding: 0 !important;
  color: var(--muted) !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-align: left !important;
  cursor: pointer;
}

.newsletter-form .newsletter-consent input[type="checkbox"] {
  appearance: auto !important;
  width: 1rem !important;
  height: 1rem !important;
  min-width: 1rem !important;
  min-height: 1rem !important;
  margin: .15rem 0 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  accent-color: var(--green);
}

.newsletter-form .newsletter-consent span {
  display: block;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.newsletter-form .newsletter-consent a {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--green) !important;
  font-weight: 700 !important;
  text-decoration: underline;
  text-underline-offset: .15em;
}

.newsletter-form .newsletter-consent a:hover,
.newsletter-form .newsletter-consent a:focus-visible {
  text-decoration-thickness: .125rem;
}

@media (min-width: 769px) {

  .newsletter-card h2 {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {

  .newsletter-card h2 {
    white-space: normal;
  }

  .newsletter-form .newsletter-consent {
    width: 100%;
  }
}


/* =========================================================
   MusMir Tea - Footer
   ========================================================= */

.footer {
  background: #0f3b17;
  color: #fff;
  padding: 72px 0 28px;
}

.footer .container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr .8fr 1fr 1fr !important;
  gap: 70px !important;
  align-items: flex-start !important;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-logo {
  width: auto !important;
  max-width: 170px !important;
  height: auto !important;
  margin-bottom: 22px !important;
}

.footer-brand p {
  max-width: 300px;
  color: #e7f0df !important;
  line-height: 1.7;
  margin: 0;
}

.footer h3 {
  color: #fff !important;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.footer-links {
  list-style: disc;
  margin: 0;
  padding-left: 18px;
}

.footer-links li {
  margin: 0 0 10px;
  color: #fff;
}

.footer-links a,
.footer a {
  color: #fff !important;
  text-decoration: none;
}

.footer-links a {
  display: inline !important;
  margin: 0 !important;
}

.footer-links a:hover,
.footer a:hover {
  color: #dcefd1 !important;
}

.payments {
  display: block !important;
  margin-top: 30px !important;
}

.payments h3 {
  margin-bottom: 14px !important;
}

.footer-payment-logos {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-items: flex-start !important;
  margin-top: 12px !important;
}

.footer-payment-logo {
  display: block !important;
  width: 138px !important;
  max-width: 138px !important;
  height: 54px !important;
  background: #fff !important;
  border-radius: 10px !important;
  padding: 7px 10px !important;
  object-fit: contain !important;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .14);
}

.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 24px !important;
  border-top: 1px solid rgba(255, 255, 255, .18);
  margin-top: 60px !important;
  padding-top: 24px !important;
  color: #e7f0df;
}

.footer-bottom p {
  margin: 0 !important;
  color: #e7f0df !important;
}

@media (max-width: 1040px) {

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 42px !important;
  }
}

@media (max-width: 600px) {

  .footer {
    padding: 52px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    display: block !important;
  }

  .footer-bottom p + p {
    margin-top: 10px !important;
  }
}


/* =========================================================
   MusMir Tea - My Account
   Case 7.2 - Final responsive account UX
   ========================================================= */

body.woocommerce-account .account-card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

body.woocommerce-account .account-card .woocommerce,
body.woocommerce-account .woocommerce {
  width: 100%;
  max-width: 1080px;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.woocommerce-account .woocommerce::before,
body.woocommerce-account .woocommerce::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
  float: none !important;
  width: 100% !important;
  margin: 0 0 28px !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  clear: both !important;
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content::before,
body.woocommerce-account .woocommerce-MyAccount-content::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-account .musmir-account-nav {
  display: grid !important;
  grid-template-columns:
    repeat(auto-fit, minmax(150px, 1fr)) !important;
  gap: 10px !important;
  width: 100%;
  margin: 0 0 28px !important;
  padding: 16px !important;
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 8px 24px rgba(29, 54, 21, .05);
}

body.woocommerce-account .musmir-account-nav__item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0;
  min-height: 48px;
  padding: 11px 14px !important;
  border: 1px solid transparent !important;
  border-radius: 12px !important;
  background: transparent !important;
  color: var(--ink) !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-align: center !important;
  text-decoration: none !important;
  overflow-wrap: anywhere;
  transition:
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease;
}

body.woocommerce-account .musmir-account-nav__item:hover,
body.woocommerce-account .musmir-account-nav__item:focus-visible,
body.woocommerce-account .musmir-account-nav__item.is-active {
  background: var(--sage-soft) !important;
  border-color: var(--sage) !important;
  color: var(--green) !important;
  text-decoration: none !important;
}

body.woocommerce-account .musmir-dashboard {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

body.woocommerce-account .musmir-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  margin: 0 0 26px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    var(--paper),
    var(--sage-soft)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(29, 54, 21, .05);
}

body.woocommerce-account .musmir-dashboard-eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.woocommerce-account .musmir-dashboard-hero h2 {
  margin: 0 0 10px !important;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px) !important;
  line-height: 1.08 !important;
  overflow-wrap: anywhere;
}

body.woocommerce-account .musmir-dashboard-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

body.woocommerce-account .musmir-dashboard-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 48px;
  padding: 12px 20px;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--paper) !important;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
}

body.woocommerce-account .musmir-dashboard-shop:hover,
body.woocommerce-account .musmir-dashboard-shop:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--paper) !important;
}

body.woocommerce-account .musmir-dashboard-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin: 0 0 26px;
}

body.woocommerce-account .musmir-dashboard-card {
  display: block;
  min-width: 0;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  text-decoration: none !important;
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

body.woocommerce-account .musmir-dashboard-card:hover,
body.woocommerce-account .musmir-dashboard-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: var(--shadow);
}

body.woocommerce-account .musmir-dashboard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 0 16px;
  background: var(--sage-soft);
  border-radius: 999px;
  color: var(--green);
}

body.woocommerce-account .musmir-dashboard-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

body.woocommerce-account .musmir-dashboard-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

body.woocommerce-account .musmir-dashboard-section {
  width: 100%;
  margin: 0 0 24px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

body.woocommerce-account .musmir-dashboard-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}

body.woocommerce-account .musmir-dashboard-section-head h3 {
  margin: 0 !important;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 28px) !important;
  line-height: 1.15 !important;
}

body.woocommerce-account .musmir-dashboard-section-head a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

body.woocommerce-account .musmir-dashboard-section-head a:hover,
body.woocommerce-account .musmir-dashboard-section-head a:focus-visible {
  text-decoration: underline;
}

body.woocommerce-account .musmir-latest-order {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}

body.woocommerce-account .musmir-latest-order > div {
  min-width: 0;
  padding: 18px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}

body.woocommerce-account .musmir-latest-order span {
  display: block;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .05em;
  text-transform: uppercase;
}

body.woocommerce-account .musmir-latest-order strong {
  display: block;
  min-width: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

body.woocommerce-account .musmir-latest-order .amount,
body.woocommerce-account .musmir-latest-order .woocommerce-Price-amount,
body.woocommerce-account .musmir-order-total {
  display: inline-block !important;
  white-space: nowrap !important;
}

body.woocommerce-account .musmir-address-status-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

body.woocommerce-account .musmir-address-status-card {
  min-width: 0;
  padding: 18px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}

body.woocommerce-account .musmir-address-status-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
}

body.woocommerce-account .musmir-address-status-card p {
  margin: 0;
  font-weight: 800;
  line-height: 1.5;
}

body.woocommerce-account .musmir-address-status-card .is-complete {
  color: var(--green);
}

body.woocommerce-account .musmir-address-status-card .is-missing {
  color: var(--gold);
}

body.woocommerce-account .musmir-empty-box {
  width: 100%;
  padding: 22px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}

body.woocommerce-account .musmir-empty-box p {
  margin-top: 0;
}

body.woocommerce-account .musmir-address-grid,
body.woocommerce-account .woocommerce-Addresses {
  display: grid !important;
  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  width: 100%;
}

body.woocommerce-account .woocommerce-Addresses::before,
body.woocommerce-account .woocommerce-Addresses::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-account .woocommerce-Addresses .woocommerce-Address,
body.woocommerce-account .musmir-address-card {
  float: none !important;
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  padding: 24px !important;
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
}

body.woocommerce-account .musmir-address-card h2,
body.woocommerce-account .woocommerce-Address-title h2 {
  margin: 0 0 16px !important;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 32px) !important;
  line-height: 1.15 !important;
}

body.woocommerce-account .musmir-address-card address,
body.woocommerce-account .woocommerce-Address address {
  margin: 16px 0 0 !important;
  color: var(--ink);
  font-style: normal !important;
  line-height: 1.7 !important;
}

body.woocommerce-account .musmir-address-edit,
body.woocommerce-account .woocommerce-Address-title .edit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px;
  padding: 10px 18px !important;
  float: none !important;
  background: var(--green) !important;
  border: 1px solid var(--green) !important;
  border-radius: 999px !important;
  color: var(--paper) !important;
  font-weight: 800 !important;
  line-height: 1.3;
  text-decoration: none !important;
}

body.woocommerce-account .musmir-address-edit:hover,
body.woocommerce-account .woocommerce-Address-title .edit:hover,
body.woocommerce-account .woocommerce-Address-title .edit:focus-visible {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
}

body.woocommerce-account .musmir-account-form,
body.woocommerce-account .musmir-address-form,
body.woocommerce-account .musmir-clean-account-form,
body.woocommerce-account .musmir-clean-address-form {
  width: 100%;
  max-width: 860px;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.woocommerce-account .musmir-clean-account-form h2,
body.woocommerce-account .musmir-clean-address-form h2,
body.woocommerce-account .musmir-address-form h2 {
  margin: 0 0 14px !important;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px) !important;
  line-height: 1.1 !important;
}

body.woocommerce-account .musmir-account-intro,
body.woocommerce-account .musmir-help-text,
body.woocommerce-account .musmir-clean-field small,
body.woocommerce-account .musmir-account-form small,
body.woocommerce-account .musmir-address-form small {
  display: block !important;
  margin-top: 8px !important;
  color: var(--muted) !important;
  line-height: 1.6 !important;
}

body.woocommerce-account .musmir-form-grid {
  display: grid !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;
  gap: 22px 26px !important;
}

body.woocommerce-account .musmir-form-grid .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-account .musmir-form-grid .form-row-wide {
  grid-column: 1 / -1 !important;
}

body.woocommerce-account .musmir-clean-account-grid,
body.woocommerce-account .musmir-clean-address-grid {
  display: grid !important;
  gap: 24px !important;
  width: 100%;
  margin-top: 32px !important;
}

body.woocommerce-account .musmir-clean-row {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  min-width: 0;
}

body.woocommerce-account .musmir-clean-row.two {
  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;
}

body.woocommerce-account .musmir-clean-field {
  display: block !important;
  width: 100% !important;
  min-width: 0;
}

body.woocommerce-account .musmir-account-form label,
body.woocommerce-account .musmir-address-form label,
body.woocommerce-account .musmir-clean-field label,
body.woocommerce-account .woocommerce-form label,
body.woocommerce-account .woocommerce-EditAccountForm label {
  display: block !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: var(--ink) !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  text-align: left !important;
}

body.woocommerce-account label .required,
body.woocommerce-account label abbr.required {
  display: inline !important;
  color: var(--green) !important;
}

body.woocommerce-account
  .musmir-account-form input:not([type="checkbox"]):not([type="radio"]),
body.woocommerce-account
  .musmir-address-form input:not([type="checkbox"]):not([type="radio"]),
body.woocommerce-account
  .musmir-address-form select,
body.woocommerce-account
  .musmir-clean-field input:not([type="checkbox"]):not([type="radio"]),
body.woocommerce-account
  .musmir-clean-field select,
body.woocommerce-account
  .musmir-clean-field textarea,
body.woocommerce-account
  .woocommerce-form input.input-text,
body.woocommerce-account
  .woocommerce-EditAccountForm input.input-text,
body.woocommerce-account
  .woocommerce-address-fields input.input-text,
body.woocommerce-account
  .woocommerce-address-fields select,
body.woocommerce-account
  .musmir-readonly-field {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 11px 13px !important;
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  color: var(--ink) !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

body.woocommerce-account .musmir-clean-field textarea {
  min-height: 110px !important;
  resize: vertical;
}

body.woocommerce-account .musmir-readonly-field {
  display: flex !important;
  align-items: center !important;
  font-weight: 700 !important;
}

body.woocommerce-account .musmir-account-form input:focus,
body.woocommerce-account .musmir-address-form input:focus,
body.woocommerce-account .musmir-address-form select:focus,
body.woocommerce-account .musmir-clean-field input:focus,
body.woocommerce-account .musmir-clean-field select:focus,
body.woocommerce-account .musmir-clean-field textarea:focus,
body.woocommerce-account .woocommerce-form input.input-text:focus,
body.woocommerce-account .woocommerce-EditAccountForm input.input-text:focus,
body.woocommerce-account .woocommerce-address-fields input.input-text:focus,
body.woocommerce-account .woocommerce-address-fields select:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
  border-color: var(--green) !important;
}

body.woocommerce-account .select2-container {
  width: 100% !important;
}

body.woocommerce-account
  .select2-container .select2-selection--single {
  min-height: 48px !important;
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
}

body.woocommerce-account
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  min-height: 48px !important;
  padding: 11px 40px 11px 13px !important;
  color: var(--ink) !important;
  font-size: 16px !important;
  line-height: 24px !important;
}

body.woocommerce-account
  .select2-container
  .select2-selection--single
  .select2-selection__arrow {
  top: 50% !important;
  right: 10px !important;
  height: 24px !important;
  transform: translateY(-50%);
}

body.woocommerce-account .musmir-clean-password-box,
body.woocommerce-account .musmir-password-box {
  width: 100%;
  margin: 34px 0 0 !important;
  padding: 28px !important;
  background: var(--cream-2) !important;
  border: 1px solid var(--line) !important;
  border-radius: 20px !important;
}

body.woocommerce-account .musmir-clean-password-box h3,
body.woocommerce-account .musmir-password-box h3 {
  margin: 0 0 8px !important;
  color: var(--green) !important;
  font-size: clamp(24px, 3vw, 28px) !important;
  line-height: 1.2 !important;
}

body.woocommerce-account .musmir-clean-password-box p,
body.woocommerce-account .musmir-password-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

body.woocommerce-account .musmir-clean-actions,
body.woocommerce-account .musmir-address-actions {
  margin-top: 30px !important;
}

body.woocommerce-account .musmir-clean-actions .button,
body.woocommerce-account .musmir-address-actions .button,
body.woocommerce-account .woocommerce-Button.button,
body.woocommerce-account button.button,
body.woocommerce-account input.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  max-width: 100%;
  padding: 12px 22px !important;
  background: var(--green) !important;
  border: 1px solid var(--green) !important;
  border-radius: 999px !important;
  color: var(--paper) !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: normal;
  box-shadow: none !important;
}

body.woocommerce-account .musmir-clean-actions .button:hover,
body.woocommerce-account .musmir-address-actions .button:hover,
body.woocommerce-account .woocommerce-Button.button:hover,
body.woocommerce-account button.button:hover,
body.woocommerce-account input.button:hover,
body.woocommerce-account .musmir-clean-actions .button:focus-visible,
body.woocommerce-account .musmir-address-actions .button:focus-visible,
body.woocommerce-account .woocommerce-Button.button:focus-visible,
body.woocommerce-account button.button:focus-visible,
body.woocommerce-account input.button:focus-visible {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
  color: var(--paper) !important;
}

body.woocommerce-account #customer_login {
  display: grid !important;
  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  width: 100%;
  margin: 0 !important;
}

body.woocommerce-account #customer_login::before,
body.woocommerce-account #customer_login::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-account #customer_login .u-column1,
body.woocommerce-account #customer_login .u-column2 {
  float: none !important;
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
}

body.woocommerce-account #customer_login h2 {
  margin: 0 0 18px !important;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px) !important;
  line-height: 1.1 !important;
}

body.woocommerce-account #customer_login form {
  width: 100%;
  margin: 0 !important;
  padding: 24px !important;
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}

body.woocommerce-account input[type="checkbox"] {
  appearance: auto !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  margin: 2px 7px 0 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  accent-color: var(--green);
}

body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-error {
  width: 100%;
  margin: 0 0 24px !important;
  padding: 16px 20px !important;
  background: var(--paper) !important;
  border-right: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  border-left: 1px solid var(--line) !important;
  border-radius: 0 0 14px 14px !important;
  color: var(--ink) !important;
  line-height: 1.55;
}

body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info {
  border-top-color: var(--green) !important;
}

@media (max-width: 800px) {

  body.woocommerce-account .musmir-dashboard-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.woocommerce-account .musmir-dashboard-shop {
    justify-self: start;
  }

  body.woocommerce-account .musmir-dashboard-section-head {
    display: block;
  }

  body.woocommerce-account .musmir-dashboard-section-head a {
    display: inline-flex;
    margin-top: 12px;
  }

  body.woocommerce-account .musmir-clean-row.two,
  body.woocommerce-account .musmir-form-grid {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-account .musmir-form-grid .form-row-wide {
    grid-column: auto !important;
  }
}

@media (max-width: 600px) {

  body.woocommerce-account .musmir-account-nav {
    grid-template-columns: 1fr !important;
    padding: 12px !important;
    gap: 8px !important;
  }

  body.woocommerce-account .musmir-account-nav__item {
    min-height: 46px;
    padding: 10px 12px !important;
  }

  body.woocommerce-account .musmir-dashboard-hero {
    gap: 18px;
    padding: 20px;
  }

  body.woocommerce-account .musmir-dashboard-hero h2 {
    font-size: clamp(30px, 10vw, 42px) !important;
  }

  body.woocommerce-account .musmir-dashboard-grid,
  body.woocommerce-account .musmir-latest-order,
  body.woocommerce-account .musmir-address-status-grid,
  body.woocommerce-account .musmir-address-grid,
  body.woocommerce-account .woocommerce-Addresses {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-account .musmir-dashboard-section,
  body.woocommerce-account .musmir-address-card,
  body.woocommerce-account
    .woocommerce-Addresses .woocommerce-Address {
    padding: 20px !important;
  }

  body.woocommerce-account .musmir-clean-account-form h2,
  body.woocommerce-account .musmir-clean-address-form h2,
  body.woocommerce-account .musmir-address-form h2 {
    font-size: clamp(28px, 9vw, 38px) !important;
  }

  body.woocommerce-account .musmir-clean-password-box,
  body.woocommerce-account .musmir-password-box {
    padding: 20px !important;
  }

  body.woocommerce-account #customer_login {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-account #customer_login form {
    padding: 20px !important;
  }
}


/* =========================================================
   MusMir Tea - Cart
   Case 7.3A - Final responsive cart UX
   ========================================================= */

body.woocommerce-cart .section {
  padding-top: 58px;
  padding-bottom: 78px;
}

body.woocommerce-cart .section > .container {
  max-width: 1180px;
}

body.woocommerce-cart
  .woocommerce-cart-form
  table.shop_table {
  width: 100% !important;
  margin: 0 !important;
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-cart
  .woocommerce-cart-form
  table.shop_table th,
body.woocommerce-cart
  .woocommerce-cart-form
  table.shop_table td {
  vertical-align: middle !important;
  border-color: var(--line) !important;
}

body.woocommerce-cart
  .woocommerce-cart-form
  table.shop_table th {
  padding: 15px 16px !important;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

body.woocommerce-cart
  .woocommerce-cart-form
  table.shop_table td {
  padding: 14px 16px !important;
}

body.woocommerce-cart
  .woocommerce-cart-form
  td.product-thumbnail img {
  width: 54px !important;
  max-width: 54px !important;
  height: 54px !important;
  object-fit: contain !important;
  border-radius: 8px;
}

body.woocommerce-cart
  .woocommerce-cart-form
  td.product-name a {
  color: var(--ink) !important;
  font-weight: 700;
}

body.woocommerce-cart
  .woocommerce-cart-form
  td.product-name a:hover {
  color: var(--green) !important;
}

body.woocommerce-cart
  .woocommerce-cart-form
  a.remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px !important;
  height: 32px !important;
  color: var(--green-dark) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body.woocommerce-cart
  .woocommerce-cart-form
  a.remove:hover {
  background: var(--sage-soft) !important;
  color: var(--green) !important;
}

body.woocommerce-cart
  .woocommerce-cart-form
  .quantity .qty {
  width: 62px !important;
  min-width: 62px !important;
  min-height: 44px !important;
  padding: 8px !important;
  text-align: center !important;
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
}

body.woocommerce-cart
  .woocommerce-cart-form
  td.actions {
  padding: 14px !important;
}

body.woocommerce-cart
  .woocommerce-cart-form
  .coupon {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

body.woocommerce-cart
  .woocommerce-cart-form
  .coupon .input-text {
  width: 190px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 10px 13px !important;
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
}

body.woocommerce-cart
  .woocommerce-cart-form
  .coupon .button,
body.woocommerce-cart
  .woocommerce-cart-form
  button[name="update_cart"] {
  min-height: 44px !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
}

body.woocommerce-cart
  .woocommerce-cart-form
  button[name="update_cart"]:disabled {
  opacity: .55;
}

body.woocommerce-cart .cart-collaterals {
  width: 100% !important;
  margin-top: 34px !important;
}

body.woocommerce-cart .cart-collaterals::before,
body.woocommerce-cart .cart-collaterals::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-cart
  .cart-collaterals
  .cart_totals {
  float: none !important;
  width: min(100%, 560px) !important;
  margin-left: auto !important;
}

body.woocommerce-cart
  .cart_totals h2 {
  margin: 0 0 16px !important;
  font-size: clamp(38px, 4vw, 52px) !important;
  line-height: 1.05 !important;
}

body.woocommerce-cart
  .cart_totals
  table.shop_table {
  width: 100% !important;
  margin: 0 !important;
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-cart
  .cart_totals
  table.shop_table th,
body.woocommerce-cart
  .cart_totals
  table.shop_table td {
  padding: 14px 16px !important;
  vertical-align: top !important;
  border-color: var(--line) !important;
}

body.woocommerce-cart
  .cart_totals
  table.shop_table th {
  width: 35% !important;
  color: var(--ink) !important;
  font-weight: 800 !important;
}

body.woocommerce-cart
  .cart_totals
  #shipping_method {
  display: grid !important;
  gap: 10px !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.woocommerce-cart
  .cart_totals
  #shipping_method li {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 10px !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

body.woocommerce-cart
  .cart_totals
  #shipping_method input[type="radio"] {
  appearance: auto !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  margin: 3px 0 0 !important;
  padding: 0 !important;
  accent-color: var(--green);
}

body.woocommerce-cart
  .cart_totals
  #shipping_method label {
  display: block !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ink) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  text-align: left !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

body.woocommerce-cart
  .cart_totals
  .woocommerce-shipping-destination,
body.woocommerce-cart
  .cart_totals
  .woocommerce-shipping-calculator {
  margin: 12px 0 0 !important;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

body.woocommerce-cart
  .cart_totals
  .shipping-calculator-button {
  color: var(--green) !important;
  font-weight: 700;
}

body.woocommerce-cart
  .wc-proceed-to-checkout {
  padding: 18px 0 0 !important;
}

body.woocommerce-cart
  .wc-proceed-to-checkout
  a.checkout-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 13px 22px !important;
  background: var(--green) !important;
  border-radius: 999px !important;
  color: var(--paper) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-align: center !important;
}

body.woocommerce-cart
  .wc-proceed-to-checkout
  a.checkout-button:hover {
  background: var(--green-dark) !important;
}


@media (max-width: 680px) {

  body.woocommerce-cart .page-title {
    padding-top: 52px !important;
    padding-bottom: 40px !important;
  }

  body.woocommerce-cart .page-title h1 {
    font-size: clamp(44px, 14vw, 58px) !important;
  }

  body.woocommerce-cart .page-title p {
    max-width: 330px;
    font-size: 17px !important;
    line-height: 1.55;
  }

  body.woocommerce-cart .section {
    padding-top: 42px !important;
    padding-bottom: 60px !important;
  }

  body.woocommerce-cart
    .woocommerce-cart-form
    table.shop_table_responsive tr.cart_item {
    border-bottom: 12px solid var(--cream) !important;
  }

  body.woocommerce-cart
    .woocommerce-cart-form
    table.shop_table_responsive tr.cart_item td {
    min-height: 0 !important;
    padding: 12px 14px !important;
    line-height: 1.45 !important;
  }

  body.woocommerce-cart
    .woocommerce-cart-form
    table.shop_table_responsive tr.cart_item
    td::before {
    color: var(--ink) !important;
    font-weight: 800 !important;
  }

  body.woocommerce-cart
    .woocommerce-cart-form
    td.product-name,
  body.woocommerce-cart
    .woocommerce-cart-form
    td.product-price,
  body.woocommerce-cart
    .woocommerce-cart-form
    td.product-quantity,
  body.woocommerce-cart
    .woocommerce-cart-form
    td.product-subtotal {
    font-size: 15px !important;
  }

  body.woocommerce-cart
    .woocommerce-cart-form
    .quantity .qty {
    width: 58px !important;
    min-width: 58px !important;
    min-height: 42px !important;
  }

  body.woocommerce-cart
    .woocommerce-cart-form
    td.product-remove {
    min-height: 44px !important;
    text-align: left !important;
  }

  body.woocommerce-cart
    .woocommerce-cart-form
    td.actions {
    padding: 14px !important;
  }

  body.woocommerce-cart
    .woocommerce-cart-form
    .coupon {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  body.woocommerce-cart
    .woocommerce-cart-form
    .coupon .input-text,
  body.woocommerce-cart
    .woocommerce-cart-form
    .coupon .button {
    width: 100% !important;
    max-width: none !important;
    min-height: 46px !important;
    margin: 0 !important;
  }

  body.woocommerce-cart
    .woocommerce-cart-form
    button[name="update_cart"] {
    float: none !important;
    display: flex !important;
    width: 100% !important;
    min-height: 46px !important;
    margin-top: 10px !important;
    align-items: center;
    justify-content: center;
  }

  body.woocommerce-cart
    .cart_totals h2 {
    margin-bottom: 14px !important;
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: 1.08 !important;
  }

  body.woocommerce-cart
    .cart-collaterals
    .cart_totals {
    width: 100% !important;
    margin: 0 !important;
  }

  body.woocommerce-cart
    .cart_totals
    table.shop_table_responsive
    tr.shipping td {
    text-align: left !important;
  }

  body.woocommerce-cart
    .cart_totals
    table.shop_table_responsive
    tr.shipping td::before {
    float: none !important;
    display: block !important;
    width: 100%;
    margin: 0 0 12px !important;
    text-align: left !important;
    color: var(--ink) !important;
    font-weight: 800 !important;
  }

  body.woocommerce-cart
    .cart_totals
    #shipping_method {
    margin-top: 2px !important;
  }

  body.woocommerce-cart
    .cart_totals
    #shipping_method li {
    grid-template-columns: 18px minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  body.woocommerce-cart
    .cart_totals
    #shipping_method label {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  body.woocommerce-cart
    .cart_totals
    .woocommerce-shipping-destination,
  body.woocommerce-cart
    .cart_totals
    .woocommerce-shipping-calculator {
    text-align: left !important;
  }
}


/* =========================================================
   MusMir Tea - Checkout: Page title and spacing
   ========================================================= */

.musmir-checkout-title {
  padding-top: 78px !important;
  padding-bottom: 54px !important;
  overflow: visible !important;
}

.musmir-checkout-title h1 {
  font-size: clamp(54px, 4vw, 72px) !important;
  line-height: 1.08 !important;
}

.musmir-checkout-section {
  padding-top: 70px;
  padding-bottom: 90px;
}

.musmir-checkout-container {
  width: min(1380px, calc(100% - 52px)) !important;
  max-width: 1380px !important;
}

.musmir-checkout-page .woocommerce {
  width: 100% !important;
  max-width: 1360px !important;
  margin: 0 auto !important;
}


/* =========================================================
   Checkout account/address choice
   ========================================================= */

.musmir-checkout-choice {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 24px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
}

.musmir-checkout-choice strong {
  display: block;
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.musmir-checkout-choice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.musmir-guest-choice,
.musmir-saved-address-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.musmir-choice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.musmir-guest-choice a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
}

.musmir-saved-address-text p {
  color: var(--ink);
}

.musmir-address-options {
  display: grid;
  gap: 12px;
}

.musmir-address-options label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin: 0 !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

.musmir-address-options input[type="radio"] {
  flex: 0 0 auto;
  margin-top: 4px;
}

.musmir-small-note {
  font-size: 13px !important;
  color: var(--muted) !important;
  margin-top: 4px !important;
}

.musmir-address-options label.is-disabled {
  opacity: .45;
  cursor: not-allowed;
}

.musmir-address-options label.is-disabled input {
  cursor: not-allowed;
}

.musmir-no-saved-address {
  border-color: #ead5a8;
  background: #fff8e8;
}


/* =========================================================
   Checkout coupon
   ========================================================= */

.musmir-checkout-page .woocommerce-form-coupon-toggle {
  max-width: 1280px !important;
  margin: 0 auto 34px !important;
}

.musmir-checkout-page .woocommerce-info {
  background: #fff !important;
  color: var(--ink) !important;
  border-top-color: var(--green) !important;
  border-left: 1px solid var(--line) !important;
  border-right: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 0 16px 16px !important;
  padding: 18px 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.musmir-checkout-page .woocommerce-info::before {
  display: none !important;
  content: none !important;
}


/* =========================================================
   Checkout main layout
   ========================================================= */

.musmir-checkout-page form.checkout.woocommerce-checkout {
  display: grid !important;
  grid-template-columns:
    minmax(0, 680px)
    minmax(580px, 620px) !important;
  gap: 44px !important;
  align-items: start;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 !important;
}

.musmir-checkout-page #customer_details {
  grid-column: 1;
  display: block !important;
  width: 100% !important;
}

.musmir-checkout-page #customer_details .col-1,
.musmir-checkout-page #customer_details .col-2 {
  width: 100% !important;
  float: none !important;
  clear: both !important;
}


/* =========================================================
   Checkout billing/shipping/notes cards
   ========================================================= */

.musmir-checkout-page .woocommerce-billing-fields,
.musmir-checkout-page .woocommerce-shipping-fields,
.musmir-checkout-page .woocommerce-additional-fields {
  background: #fffdf8 !important;
  border: 1px solid var(--line) !important;
  border-radius: 22px !important;
  padding: 28px !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04) !important;
}

.musmir-checkout-page .woocommerce-shipping-fields,
.musmir-checkout-page .woocommerce-additional-fields {
  margin-top: 18px !important;
}

.musmir-checkout-page .woocommerce-billing-fields h3,
.musmir-checkout-page #order_review_heading {
  font-size: 32px !important;
  line-height: 1.1 !important;
}

.musmir-checkout-page
  .woocommerce-billing-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.musmir-checkout-page
  .woocommerce-shipping-fields__field-wrapper,
.musmir-checkout-page
  .woocommerce-additional-fields__field-wrapper {
  display: block !important;
}

.musmir-checkout-page .form-row,
.musmir-checkout-page .form-row-first,
.musmir-checkout-page .form-row-last,
.musmir-checkout-page .form-row-wide {
  display: block !important;
  float: none !important;
  clear: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.musmir-checkout-page #billing_country_field,
.musmir-checkout-page #billing_address_1_field,
.musmir-checkout-page #billing_address_2_field,
.musmir-checkout-page #billing_city_field,
.musmir-checkout-page #billing_state_field,
.musmir-checkout-page #billing_phone_field,
.musmir-checkout-page #billing_email_field,
.musmir-checkout-page #order_comments_field {
  grid-column: 1 / -1 !important;
}


/* =========================================================
   Checkout fields
   ========================================================= */

.musmir-checkout-page label {
  display: block !important;
  margin: 0 0 7px !important;
  padding: 0 !important;
  color: var(--green-dark) !important;
  font-family: var(--sans) !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

.musmir-checkout-page .woocommerce-input-wrapper {
  display: block !important;
  width: 100% !important;
}

.musmir-checkout-page input.input-text,
.musmir-checkout-page textarea,
.musmir-checkout-page select {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 48px !important;
  border: 1px solid #d9d0c4 !important;
  border-radius: 10px !important;
  background: #fff !important;
  padding: 12px 14px !important;
  color: var(--ink) !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

.musmir-checkout-page textarea {
  min-height: 110px !important;
}

.musmir-checkout-page h3 {
  margin: 0 0 20px !important;
  color: var(--ink) !important;
}


/* =========================================================
   Checkout order review
   ========================================================= */

.musmir-checkout-page #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 18px !important;
}

.musmir-checkout-page #order_review {
  grid-column: 2;
  grid-row: 1;
  margin-top: 48px !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.musmir-checkout-page table.shop_table {
  width: 100% !important;
  table-layout: fixed !important;
  margin: 0 !important;
  background: #fffdf8 !important;
  border: 1px solid var(--line) !important;
  border-radius: 22px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04) !important;
}

.musmir-checkout-page table.shop_table th,
.musmir-checkout-page table.shop_table td {
  padding: 15px 18px !important;
  font-size: 14px !important;
  vertical-align: middle !important;
}

.musmir-checkout-page table.shop_table .product-name {
  width: 45% !important;
}

.musmir-checkout-page table.shop_table .product-total,
.musmir-checkout-page table.shop_table tfoot td {
  width: 55% !important;
  text-align: right !important;
  white-space: nowrap !important;
}


/* =========================================================
   Checkout shipping methods - desktop
   ========================================================= */

.musmir-checkout-page
  table.shop_table
  tr.woocommerce-shipping-totals td {
  white-space: nowrap !important;
  text-align: left !important;
}

.musmir-checkout-page #shipping_method {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.musmir-checkout-page #shipping_method li {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: start !important;
  margin: 8px 0 !important;
}

.musmir-checkout-page #shipping_method input {
  margin-top: 3px !important;
}

.musmir-checkout-page #shipping_method label {
  margin: 0 !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}


/* =========================================================
   Checkout delivery address
   ========================================================= */

.musmir-checkout-page .woocommerce-shipping-fields {
  background: #fffdf8 !important;
  border: 1px solid var(--line) !important;
  border-radius: 20px !important;
  padding: 20px 24px !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04) !important;
}

.musmir-checkout-page #ship-to-different-address {
  margin: 0 !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
}

.musmir-checkout-page
  #ship-to-different-address label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
}

.musmir-checkout-page
  #ship-to-different-address-checkbox {
  margin: 0 !important;
}


/* =========================================================
   Checkout payment
   ========================================================= */

.musmir-checkout-page #payment {
  width: 100% !important;
  margin-top: 24px !important;
  padding: 26px !important;
  background: #fffdf8 !important;
  border: 1px solid var(--line) !important;
  border-radius: 22px !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04) !important;
  overflow: hidden !important;
}

.musmir-checkout-page #payment ul.payment_methods {
  padding: 0 !important;
  border-bottom: 0 !important;
}

.musmir-checkout-page #payment .wc_payment_method {
  list-style: none !important;
}

.musmir-checkout-page
  #payment .wc_payment_method > input {
  margin-right: 8px !important;
}

.musmir-checkout-page
  #payment .wc_payment_method > label {
  display: inline-block !important;
  margin-bottom: 14px !important;
  font-size: 15px !important;
}

.musmir-checkout-page #payment .payment_box {
  max-width: none !important;
  margin: 0 0 22px !important;
  padding: 22px !important;
  background: #f2ede7 !important;
  color: var(--ink) !important;
  border-radius: 16px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.musmir-checkout-page #payment .payment_box::before {
  display: none !important;
}


/* =========================================================
   Checkout privacy / terms
   ========================================================= */

.musmir-checkout-page .woocommerce-privacy-policy-text {
  margin-top: 22px !important;
  padding-top: 18px !important;
  border-top: 1px solid var(--line) !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.musmir-checkout-page
  .woocommerce-terms-and-conditions-wrapper
  p.form-row {
  margin-top: 18px !important;
}

.musmir-checkout-page
  .woocommerce-terms-and-conditions-wrapper
  label.checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.musmir-checkout-page
  .woocommerce-terms-and-conditions-wrapper
  label.checkbox
  input[type="checkbox"] {
  flex: 0 0 auto !important;
  margin: 4px 0 0 !important;
}

.musmir-checkout-page
  .woocommerce-terms-and-conditions-checkbox-text {
  display: inline !important;
  flex: 0 1 auto !important;
}

.musmir-checkout-page
  .woocommerce-terms-and-conditions-wrapper
  abbr.required {
  display: none !important;
}

.musmir-checkout-page
  .woocommerce-terms-and-conditions-checkbox-text::after {
  content: " *";
  color: #b40000;
  font-weight: 800;
}


/* =========================================================
   Checkout place order
   ========================================================= */

.musmir-checkout-page #place_order {
  width: 100% !important;
  min-height: 52px !important;
  margin-top: 18px !important;
  border-radius: 999px !important;
  background: var(--green) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  padding: 14px 24px !important;
  box-shadow: 0 10px 22px rgba(36, 85, 21, .18) !important;
}


/* =========================================================
   MusMir Tea - Checkout responsive
   Case 7.3B - Final mobile checkout UX
   ========================================================= */

@media (max-width: 1180px) {

  .musmir-checkout-container {
    width: min(100% - 52px, 760px) !important;
    max-width: 760px !important;
  }

  .musmir-checkout-page
    form.checkout.woocommerce-checkout {
    grid-template-columns: 1fr !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .musmir-checkout-page #order_review_heading,
  .musmir-checkout-page #order_review {
    grid-column: 1 !important;
    grid-row: auto !important;
    margin-top: 0 !important;
  }

  .musmir-checkout-page
    table.shop_table
    tr.woocommerce-shipping-totals td,
  .musmir-checkout-page #shipping_method label {
    white-space: normal !important;
  }
}


@media (max-width: 780px) {

  .musmir-guest-choice,
  .musmir-saved-address-choice {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 680px) {

  /* Page spacing */

  .musmir-checkout-title {
    padding-top: 54px !important;
    padding-bottom: 40px !important;
  }

  .musmir-checkout-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .musmir-checkout-container {
    width: min(100% - 30px, 760px) !important;
  }


  /* Billing */

  .musmir-checkout-page
    .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .musmir-checkout-page .woocommerce-billing-fields,
  .musmir-checkout-page .woocommerce-shipping-fields,
  .musmir-checkout-page .woocommerce-additional-fields,
  .musmir-checkout-page #payment {
    padding: 20px !important;
  }


  /* -------------------------------------------------------
     Radio / checkbox reset
     ------------------------------------------------------- */

  .musmir-checkout-page input[type="radio"],
  .musmir-checkout-page input[type="checkbox"] {
    appearance: auto !important;
    -webkit-appearance: auto !important;

    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;

    flex: 0 0 18px !important;

    margin: 3px 0 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    accent-color: var(--green);
  }


  /* Saved/new billing address */

  .musmir-checkout-page
    .musmir-address-options label {
    display: grid !important;
    grid-template-columns:
      18px minmax(0, 1fr) !important;

    align-items: start !important;
    gap: 10px !important;

    width: 100%;
    margin: 0 !important;
    line-height: 1.45 !important;
  }

  .musmir-checkout-page
    .musmir-address-options input[type="radio"] {
    margin-top: 3px !important;
  }


  /* Ship to another address */

  .musmir-checkout-page
    #ship-to-different-address label {
    display: grid !important;

    grid-template-columns:
      18px minmax(0, 1fr) !important;

    align-items: start !important;
    gap: 12px !important;

    width: 100%;
    margin: 0 !important;

    line-height: 1.45 !important;
  }

  .musmir-checkout-page
    #ship-to-different-address-checkbox {
    margin-top: 3px !important;
  }


  /* -------------------------------------------------------
     Order review shipping row
     Final 28 / 72 mobile split
     ------------------------------------------------------- */

  .musmir-checkout-page
    table.shop_table
    tr.woocommerce-shipping-totals {
    display: table-row !important;
  }

  .musmir-checkout-page
    table.shop_table
    tr.woocommerce-shipping-totals th {
    display: table-cell !important;

    width: 28% !important;
    max-width: 28% !important;

    padding: 16px 10px 16px 14px !important;

    vertical-align: top !important;
    text-align: left !important;

    white-space: normal !important;
  }

  .musmir-checkout-page
    table.shop_table
    tr.woocommerce-shipping-totals td {
    display: table-cell !important;

    width: 72% !important;
    max-width: 72% !important;

    padding: 16px 14px 16px 8px !important;

    vertical-align: top !important;
    text-align: left !important;

    white-space: normal !important;
  }


  /* Shipping choices */

  .musmir-checkout-page #shipping_method {
    display: grid !important;
    gap: 12px !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
  }

  .musmir-checkout-page #shipping_method li {
    display: grid !important;

    grid-template-columns:
      18px minmax(0, 1fr) !important;

    align-items: start !important;

    gap: 9px !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
  }

  .musmir-checkout-page
    #shipping_method input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;

    margin: 3px 0 0 !important;
    padding: 0 !important;

    accent-color: var(--green);
  }

  .musmir-checkout-page #shipping_method label {
    display: block !important;

    width: auto !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--ink) !important;

    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;

    text-align: left !important;

    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }


  /* Payment */

  .musmir-checkout-page #payment .payment_box {
    margin-bottom: 18px !important;
    padding: 18px !important;

    font-size: 14px !important;
    line-height: 1.6 !important;
  }


  /* Privacy */

  .musmir-checkout-page
    .woocommerce-privacy-policy-text {
    margin-top: 18px !important;
    padding-top: 16px !important;

    font-size: 13px !important;
    line-height: 1.55 !important;
  }


  /* Terms */

  .musmir-checkout-page
    .woocommerce-terms-and-conditions-wrapper
    label.checkbox {
    display: grid !important;

    grid-template-columns:
      18px minmax(0, 1fr) !important;

    align-items: start !important;

    gap: 12px !important;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    font-size: 14px !important;
    line-height: 1.45 !important;

    text-align: left !important;
  }

  .musmir-checkout-page
    .woocommerce-terms-and-conditions-wrapper
    label.checkbox
    input[type="checkbox"] {
    margin-top: 3px !important;
  }

  .musmir-checkout-page
    .woocommerce-terms-and-conditions-checkbox-text {
    display: block !important;
    min-width: 0;
  }


  /* Place order */

  .musmir-checkout-page #place_order {
    width: 100% !important;
    min-height: 52px !important;

    margin-top: 18px !important;
    padding: 14px 20px !important;

    white-space: normal !important;
    text-align: center !important;
  }
}


/* =========================================================
   MusMir Tea - Single product page cleanup
   ========================================================= */

body.single-product,
body.single-product #main,
body.single-product .musmir-product-section {
  background: var(--cream);
}

body.single-product .musmir-product-section {
  padding: 56px 0 80px;
}

body.single-product .musmir-product-container {
  max-width: 1120px;
  margin: 0 auto;
}

body.single-product .woocommerce-breadcrumb {
  max-width: 1120px;
  margin: 0 auto 34px;
  padding: 0;
  font-size: 12px;
  color: var(--muted);
}

body.single-product .woocommerce div.product {
  display: grid !important;

  grid-template-columns:
    minmax(0, 520px)
    minmax(340px, 460px);

  gap: 52px;
  align-items: start;

  max-width: 1040px;

  margin: 0 auto !important;
}

body.single-product .woocommerce div.product div.images,
body.single-product .woocommerce div.product div.summary {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

body.single-product
  .woocommerce div.product div.images img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

body.single-product
  .woocommerce div.product .summary {
  padding-top: 8px;
}

body.single-product
  .woocommerce div.product .product_title {
  margin: 0 0 14px !important;

  font-size:
    clamp(38px, 4vw, 58px) !important;

  line-height: 1.02 !important;
}

body.single-product
  .woocommerce div.product p.price,
body.single-product
  .woocommerce div.product span.price {
  color: var(--green) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  margin: 0 0 18px !important;
}

body.single-product
  .woocommerce div.product
  .woocommerce-product-details__short-description {
  color: var(--muted);

  font-size: 15px;
  line-height: 1.7;

  margin-bottom: 18px;
}

body.single-product
  .woocommerce div.product form.cart {
  display: flex !important;
  align-items: center;

  gap: 12px;

  margin: 22px 0 24px !important;
}

body.single-product
  .woocommerce .quantity .qty {
  width: 64px !important;
  min-height: 42px;

  border: 1px solid var(--line);
  border-radius: 10px;

  text-align: center;
}

body.single-product
  .woocommerce div.product form.cart .button {
  min-height: 42px;

  border-radius: 999px !important;

  padding: 0 22px !important;

  background: var(--green) !important;

  color: #fff !important;

  font-weight: 800 !important;
}

body.single-product
  .woocommerce div.product .product_meta {
  margin-top: 20px;

  font-size: 13px;

  color: var(--muted);
}

body.single-product .woocommerce-tabs {
  grid-column: 1 / -1;

  width: 100%;

  margin-top: 38px;
}

body.single-product .woocommerce-tabs ul.tabs {
  padding-left: 0 !important;

  margin-bottom: 24px !important;
}

body.single-product
  .woocommerce div.product
  .woocommerce-tabs .panel {
  max-width: 780px;
}

body.single-product
  .woocommerce div.product
  .woocommerce-tabs .panel h2 {
  font-size: clamp(34px, 4vw, 50px);

  margin-bottom: 14px;
}

body.single-product #secondary,
body.single-product .widget-area,
body.single-product aside,
body.single-product main .wp-block-search,
body.single-product main .wp-block-page-list,
body.single-product main .wp-block-latest-posts,
body.single-product main .wp-block-categories,
body.single-product main .wp-block-archives,
body.single-product main .widget_pages,
body.single-product main .widget_archive,
body.single-product main .widget_categories {
  display: none !important;
}

@media (max-width: 860px) {

  body.single-product
    .musmir-product-section {
    padding: 36px 0 60px;
  }

  body.single-product
    .woocommerce div.product {
    display: block !important;

    max-width: 100%;
  }

  body.single-product
    .woocommerce div.product div.summary {
    margin-top: 28px !important;
  }

  body.single-product
    .woocommerce div.product form.cart {
    flex-wrap: wrap;
  }
}


/* =========================================================
   MusMir Tea - Thank-you / order received
   ========================================================= */

body.woocommerce-order-received
  .musmir-checkout-section {
  padding-top: 52px !important;
}

body.woocommerce-order-received
  .musmir-checkout-container,
body.woocommerce-order-received
  .woocommerce-order {
  max-width: 980px !important;

  margin-left: auto !important;
  margin-right: auto !important;
}

body.woocommerce-order-received
  .woocommerce-thankyou-order-received {
  max-width: 980px !important;

  margin: 0 auto 22px !important;

  padding: 22px 28px !important;

  background: #fffdf8 !important;

  border: 1px solid var(--line) !important;
  border-radius: 20px !important;

  color: var(--green-dark) !important;

  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, .04) !important;
}

body.woocommerce-order-received
  ul.woocommerce-order-overview,
body.woocommerce-order-received
  ul.order_details {
  display: grid !important;

  grid-template-columns:
    repeat(4, minmax(0, 1fr)) !important;

  gap: 22px 34px !important;

  align-items: start !important;

  width: 100% !important;

  max-width: 980px !important;

  margin: 0 auto 30px !important;

  padding: 28px 32px !important;

  background: #fffdf8 !important;

  border: 1px solid var(--line) !important;

  border-radius: 22px !important;

  list-style: none !important;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, .04) !important;
}

body.woocommerce-order-received
  ul.woocommerce-order-overview li,
body.woocommerce-order-received
  ul.order_details li {
  float: none !important;
  clear: none !important;

  width: auto !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;

  color: var(--ink) !important;

  font-size: 12px !important;
  line-height: 1.35 !important;

  text-align: left !important;

  text-transform: uppercase !important;
  letter-spacing: .03em !important;
}

body.woocommerce-order-received
  ul.order_details li.order,
body.woocommerce-order-received
  ul.woocommerce-order-overview
  li.woocommerce-order-overview__order {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

body.woocommerce-order-received
  ul.order_details li.date,
body.woocommerce-order-received
  ul.woocommerce-order-overview
  li.woocommerce-order-overview__date {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

body.woocommerce-order-received
  ul.order_details li.email,
body.woocommerce-order-received
  ul.woocommerce-order-overview
  li.woocommerce-order-overview__email {
  grid-column: 3 !important;
  grid-row: 1 !important;
}

body.woocommerce-order-received
  ul.order_details li.total,
body.woocommerce-order-received
  ul.woocommerce-order-overview
  li.woocommerce-order-overview__total {
  grid-column: 4 !important;
  grid-row: 1 !important;
}

body.woocommerce-order-received
  ul.order_details li.method,
body.woocommerce-order-received
  ul.woocommerce-order-overview
  li.woocommerce-order-overview__payment-method {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;

  padding-top: 20px !important;

  margin-top: 4px !important;

  border-top:
    1px solid var(--line) !important;
}

body.woocommerce-order-received
  ul.woocommerce-order-overview li strong,
body.woocommerce-order-received
  ul.order_details li strong {
  display: block !important;

  margin-top: 7px !important;

  color: var(--green-dark) !important;

  font-size: 16px !important;
  font-weight: 900 !important;

  line-height: 1.4 !important;

  text-transform: none !important;

  letter-spacing: 0 !important;
}

body.woocommerce-order-received
  .woocommerce-order > p {
  max-width: 980px !important;

  margin: 0 auto 14px !important;

  padding: 0 !important;

  color: var(--ink) !important;

  font-size: 15px !important;

  line-height: 1.75 !important;
}

body.woocommerce-order-received
  .woocommerce-order-details,
body.woocommerce-order-received
  .woocommerce-customer-details {
  max-width: 980px !important;

  margin: 28px auto 0 !important;

  padding: 28px !important;

  background: #fffdf8 !important;

  border: 1px solid var(--line) !important;

  border-radius: 22px !important;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, .04) !important;
}

body.woocommerce-order-received
  .woocommerce-order-details h2,
body.woocommerce-order-received
  .woocommerce-customer-details h2 {
  margin: 0 0 18px !important;

  font-size:
    clamp(34px, 3vw, 48px) !important;
}

body.woocommerce-order-received
  table.shop_table {
  width: 100% !important;

  background: #fff !important;

  border: 1px solid var(--line) !important;

  border-radius: 16px !important;

  border-collapse: separate !important;

  border-spacing: 0 !important;

  overflow: hidden !important;
}

body.woocommerce-order-received
  table.shop_table th,
body.woocommerce-order-received
  table.shop_table td {
  padding: 15px 18px !important;
}

body.woocommerce-order-received
  .woocommerce-customer-details
  .woocommerce-columns,
body.woocommerce-order-received
  .woocommerce-customer-details
  .woocommerce-columns--addresses,
body.woocommerce-order-received
  .woocommerce-customer-details
  .col2-set {
  display: grid !important;

  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;

  gap: 26px !important;

  width: 100% !important;

  margin: 0 !important;
}

body.woocommerce-order-received
  .woocommerce-customer-details
  .woocommerce-column,
body.woocommerce-order-received
  .woocommerce-customer-details
  .col-1,
body.woocommerce-order-received
  .woocommerce-customer-details
  .col-2 {
  float: none !important;
  clear: none !important;

  width: 100% !important;

  max-width: none !important;

  margin: 0 !important;

  padding: 0 !important;
}

body.woocommerce-order-received
  .woocommerce-customer-details
  .woocommerce-column__title {
  margin: 0 0 14px !important;

  font-size:
    clamp(28px, 2.5vw, 38px) !important;

  line-height: 1.05 !important;

  text-align: left !important;

  white-space: normal !important;
}

body.woocommerce-order-received
  .woocommerce-customer-details address {
  width: 100% !important;

  max-width: none !important;

  min-height: 150px !important;

  margin: 0 !important;

  padding: 18px !important;

  background: #fff !important;

  border: 1px solid var(--line) !important;

  border-radius: 16px !important;

  line-height: 1.7 !important;

  font-style: normal !important;

  box-sizing: border-box !important;
}

body.woocommerce-order-received
  .woocommerce-columns.musmir-single-address,
body.woocommerce-order-received
  .col2-set.musmir-single-address {
  grid-template-columns: 1fr !important;
}

body.woocommerce-order-received
  .musmir-duplicate-shipping {
  display: none !important;
}

@media (max-width: 900px) {

  body.woocommerce-order-received
    ul.woocommerce-order-overview,
  body.woocommerce-order-received
    ul.order_details {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }

  body.woocommerce-order-received
    ul.order_details li.order,
  body.woocommerce-order-received
    ul.woocommerce-order-overview
    li.woocommerce-order-overview__order {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  body.woocommerce-order-received
    ul.order_details li.date,
  body.woocommerce-order-received
    ul.woocommerce-order-overview
    li.woocommerce-order-overview__date {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  body.woocommerce-order-received
    ul.order_details li.email,
  body.woocommerce-order-received
    ul.woocommerce-order-overview
    li.woocommerce-order-overview__email {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  body.woocommerce-order-received
    ul.order_details li.total,
  body.woocommerce-order-received
    ul.woocommerce-order-overview
    li.woocommerce-order-overview__total {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  body.woocommerce-order-received
    ul.order_details li.method,
  body.woocommerce-order-received
    ul.woocommerce-order-overview
    li.woocommerce-order-overview__payment-method {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
  }

  body.woocommerce-order-received
    .woocommerce-customer-details
    .woocommerce-columns,
  body.woocommerce-order-received
    .woocommerce-customer-details
    .woocommerce-columns--addresses,
  body.woocommerce-order-received
    .woocommerce-customer-details
    .col2-set {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {

  body.woocommerce-order-received
    ul.woocommerce-order-overview,
  body.woocommerce-order-received
    ul.order_details {
    grid-template-columns: 1fr !important;
    padding: 22px !important;
  }

  body.woocommerce-order-received
    ul.order_details li,
  body.woocommerce-order-received
    ul.woocommerce-order-overview li {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  body.woocommerce-order-received
    .woocommerce-order-details,
  body.woocommerce-order-received
    .woocommerce-customer-details {
    padding: 22px !important;
  }
}


/* =========================================================
   MusMir Tea - Mobile header final layout
   ========================================================= */

@media (max-width: 768px) {

  .site-header .header-main {
    display: grid !important;

    grid-template-columns:
      52px minmax(0, 1fr) 86px !important;

    grid-template-areas:
      "menu logo cart"
      "search search search" !important;

    align-items: center !important;

    column-gap: 12px !important;
    row-gap: 16px !important;

    height: auto !important;

    padding: 18px 0 20px !important;
  }

  .site-header .menu-toggle {
    grid-area: menu !important;

    display: flex !important;

    align-items: center !important;
    justify-content: flex-start !important;

    justify-self: start !important;

    width: 44px !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    background: transparent !important;

    color: #1687d9 !important;

    font-size: 34px !important;

    line-height: 1 !important;
  }

  .site-header .brand-logo {
    grid-area: logo !important;

    justify-self: center !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
  }

  .site-header .brand-logo img {
    width: auto !important;

    max-width: 122px !important;

    height: 58px !important;

    object-fit: contain !important;
  }

  .site-header .search-form {
    grid-area: search !important;

    width: 100% !important;

    max-width: 100% !important;

    margin: 0 !important;
  }

  .site-header .header-actions {
    grid-area: cart !important;

    display: flex !important;

    align-items: center !important;

    justify-content: flex-end !important;

    justify-self: end !important;

    gap: 0 !important;

    margin: 0 !important;
  }

  .site-header .musmir-auth-links,
  .site-header .header-actions .divider {
    display: none !important;
  }

  .site-header .cart-button,
  .site-header .musmir-header-cart {
    margin: 0 !important;

    justify-self: end !important;
  }

  .site-header .cart-price {
    display: none !important;
  }
}


/* =========================================================
   Category active states
   ========================================================= */

.round-cat.is-active {
  color: var(--green);
}

.round-cat.is-active .round-img {
  box-shadow:
    inset 0 0 0 8px #dcebd2;
}

.cat-filter.active {
  background: var(--green);
  color: #fff;
}

.category-card.is-active {
  border-color: var(--green);
}


/* =========================================================
   All teas circle
   ========================================================= */

.round-img-all {
  background: #edf4e8 !important;
}

.round-img-all span {
  width: 92px;
  height: 92px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  background: #fffdf7;

  color: var(--green);

  font-size: 42px;

  font-weight: 800;

  font-family: var(--serif);
}


/* =========================================================
   WooCommerce product grid alignment
   ========================================================= */

.woocommerce ul.products,
.product-grid {
  display: grid !important;

  grid-template-columns:
    repeat(3, minmax(0, 1fr)) !important;

  gap: 34px !important;

  align-items: stretch !important;

  list-style: none !important;

  margin: 0 auto !important;

  padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;

  display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.product-card {
  float: none !important;

  clear: none !important;

  width: auto !important;

  margin: 0 !important;

  height: 100% !important;

  display: flex !important;

  flex-direction: column !important;
}

.woocommerce ul.products li.product .product-body,
.product-card .product-body {
  display: flex !important;

  flex-direction: column !important;

  flex: 1 1 auto !important;
}

.woocommerce ul.products li.product .product-foot,
.product-card .product-foot {
  margin-top: auto !important;
}

@media (max-width: 1040px) {

  .woocommerce ul.products,
  .product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {

  .woocommerce ul.products,
  .product-grid {
    grid-template-columns:
      1fr !important;
  }
}


/* =========================================================
   MusMir Tea - Header dropdown and mobile touch cleanup
   ========================================================= */

html body .current-menu-item > a::before,
html body .current-menu-item > a::after,
html body .current_page_item > a::before,
html body .current_page_item > a::after,
html body .current-menu-ancestor > a::before,
html body .current-menu-ancestor > a::after,
html body .current_page_parent > a::before,
html body .current_page_parent > a::after,
html body .nav a::before,
html body .nav a::after,
html body .footer-links a::before,
html body .footer-links a::after {
  content: none !important;

  display: none !important;

  position: static !important;

  width: 0 !important;
  height: 0 !important;

  background: transparent !important;

  border: 0 !important;

  box-shadow: none !important;
}

html body .nav a:hover,
html body .nav .current-menu-item > a,
html body .nav .current_page_item > a,
html body .nav .current-menu-ancestor > a,
html body .nav .current_page_parent > a {
  color: var(--green) !important;

  text-decoration: none !important;
}

.site-header .nav li {
  position: relative;
}

.site-header .nav .sub-menu {
  display: none !important;

  position: absolute;

  min-width: 220px;

  margin: 0;

  padding: 10px 0;

  list-style: none;

  background: var(--paper);

  border: 1px solid var(--line);

  border-radius: 14px;

  box-shadow: var(--shadow);

  z-index: 9999;

  gap: 0 !important;
}

.site-header
  .nav > ul > li > .sub-menu {
  top: 100%;
  left: 0;
}

.site-header
  .nav .sub-menu .sub-menu {
  top: 0;

  left: calc(100% - 1px);

  margin-left: 0;
}

.site-header
  .nav li:hover > .sub-menu,
.site-header
  .nav li:focus-within > .sub-menu {
  display: flex !important;

  flex-direction: column;
}

.site-header
  .nav .sub-menu li {
  width: 100%;
}

.site-header
  .nav .sub-menu a {
  display: block;

  padding: 11px 18px;

  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {

  .site-header
    .nav .sub-menu a:hover {
    background: var(--sage-soft);

    color: var(--green) !important;
  }
}

@media (max-width: 1040px) {

  .site-header .nav .sub-menu,
  .site-header .nav .sub-menu .sub-menu {
    position: static !important;

    display: flex !important;

    flex-direction: column !important;

    min-width: 0 !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 0 0 18px !important;

    background: transparent !important;

    border: 0 !important;

    border-radius: 0 !important;

    box-shadow: none !important;
  }

  .site-header .nav .sub-menu li,
  .site-header .nav .sub-menu li:hover,
  .site-header
    .nav .sub-menu li:focus-within {
    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;

    outline: 0 !important;

    box-shadow: none !important;
  }

  .site-header .nav .sub-menu a,
  .site-header .nav .sub-menu a:hover,
  .site-header .nav .sub-menu a:focus,
  .site-header .nav .sub-menu a:active {
    display: block !important;

    position: relative !important;

    width: 100% !important;

    min-height: 42px;

    margin: 0 !important;

    padding: 10px 14px !important;

    background: transparent !important;

    border: 0 !important;

    border-radius: 0 !important;

    outline: 0 !important;

    box-shadow: none !important;

    filter: none !important;

    text-shadow: none !important;

    -webkit-tap-highlight-color:
      transparent;

    -webkit-appearance: none;

    appearance: none;

    touch-action: manipulation;

    line-height: 1.45 !important;
  }

  .site-header
    .nav
    .sub-menu
    .current-menu-item > a,
  .site-header
    .nav
    .sub-menu
    .current_page_item > a {
    background: transparent !important;

    color: var(--green) !important;

    font-weight: 800 !important;

    border: 0 !important;

    outline: 0 !important;

    box-shadow: none !important;
  }

  .site-header
    .nav
    .sub-menu
    .current-menu-ancestor > a,
  .site-header
    .nav
    .sub-menu
    .current_page_parent > a {
    background: transparent !important;

    color: var(--green) !important;

    border: 0 !important;

    outline: 0 !important;

    box-shadow: none !important;
  }

  .site-header
    .nav .sub-menu a:focus-visible {
    background: transparent !important;

    color: var(--green) !important;

    outline: 0 !important;

    box-shadow: none !important;

    text-decoration: underline !important;

    text-underline-offset: 3px;
  }

  .site-header
    .nav .sub-menu a:active {
    color: var(--green) !important;

    opacity: .72;
  }
}


/* =========================================================
   Remove decorative hero shapes
   ========================================================= */

.hero::before,
.hero::after {
  content: none !important;

  display: none !important;
}

.leaf-flourish {
  display: none !important;
}


/* =========================================================
   Individual blog article
   ========================================================= */

body.single-post .single-post-hero {
  padding: 80px 0 64px;

  text-align: center;
}

body.single-post
  .single-post-hero .container {
  width:
    min(900px, calc(100% - 48px));
}

body.single-post
  .single-post-hero .blog-meta {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 6px;

  width: 100%;

  max-width: none;

  margin: 0 auto 14px;

  color: var(--green);

  font-size: 13px;

  font-weight: 800;

  line-height: 1.5;

  letter-spacing: .08em;

  text-transform: uppercase;
}

body.single-post
  .single-post-hero h1 {
  max-width: 820px;

  margin: 0 auto 18px;

  font-family: var(--serif);

  font-size:
    clamp(42px, 5vw, 68px);

  line-height: 1.08;
}

body.single-post
  .single-post-intro {
  max-width: 700px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 18px;

  line-height: 1.7;
}

body.single-post
  .single-post-article {
  width: min(900px, 100%);

  margin: 0 auto;
}

body.single-post
  .single-post-image {
  display: grid;

  place-items: center;

  width: min(760px, 100%);

  margin: 0 auto 46px;

  padding: 18px;

  overflow: hidden;

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 24px;

  box-shadow: var(--shadow);
}

body.single-post
  .single-post-image img {
  display: block;

  width: auto;

  max-width: 100%;

  height: auto;

  max-height: 680px;

  margin: 0 auto;

  border-radius: 16px;

  object-fit: contain;
}

body.single-post
  .single-post-content {
  width: min(760px, 100%);

  margin: 0 auto;

  color: var(--ink);

  font-size: 18px;

  line-height: 1.8;
}

body.single-post
  .single-post-content > :first-child {
  margin-top: 0;
}

body.single-post
  .single-post-content h2 {
  margin: 44px 0 18px;

  font-family: var(--serif);

  font-size:
    clamp(30px, 4vw, 42px);

  line-height: 1.15;
}

body.single-post
  .single-post-content h3 {
  margin: 34px 0 16px;

  font-family: var(--serif);

  font-size:
    clamp(25px, 3vw, 32px);

  line-height: 1.2;
}

body.single-post
  .single-post-content p {
  margin: 0 0 22px;
}

body.single-post
  .single-post-content ul,
body.single-post
  .single-post-content ol {
  margin: 0 0 30px;

  padding-left: 30px;
}

body.single-post
  .single-post-content li {
  margin-bottom: 9px;

  padding-left: 4px;
}

body.single-post
  .single-post-content a {
  color: var(--green);

  font-weight: 700;

  text-decoration: underline;

  text-underline-offset: 3px;
}

body.single-post
  .single-post-content img {
  height: auto;

  margin: 30px auto;

  border-radius: 16px;
}

body.single-post
  .single-post-footer {
  width: min(760px, 100%);

  margin: 48px auto 0;

  padding-top: 24px;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 14px;

  line-height: 1.7;
}

body.single-post
  .single-post-footer p {
  margin: 7px 0;
}

body.single-post
  .single-post-footer a {
  color: var(--green);

  font-weight: 700;
}

body.single-post
  .single-post-navigation {
  display: flex;

  justify-content: space-between;

  gap: 30px;

  width: min(900px, 100%);

  margin: 52px auto 0;

  padding-top: 28px;

  border-top: 1px solid var(--line);
}

body.single-post
  .single-post-navigation a {
  color: var(--green);

  font-weight: 800;
}

body.single-post .next-post {
  margin-left: auto;

  text-align: right;
}

@media (max-width: 700px) {

  body.single-post
    .single-post-hero {
    padding: 56px 0 42px;
  }

  body.single-post
    .single-post-hero .container {
    width:
      min(900px, calc(100% - 30px));
  }

  body.single-post
    .single-post-hero h1 {
    font-size:
      clamp(38px, 12vw, 48px);
  }

  body.single-post
    .single-post-intro {
    font-size: 17px;
  }

  body.single-post
    .single-post-image {
    margin-bottom: 34px;

    padding: 10px;

    border-radius: 18px;
  }

  body.single-post
    .single-post-image img {
    border-radius: 12px;
  }

  body.single-post
    .single-post-content {
    font-size: 17px;
  }

  body.single-post
    .single-post-content h2 {
    margin-top: 36px;
  }

  body.single-post
    .single-post-navigation {
    flex-direction: column;
  }

  body.single-post .next-post {
    margin-left: 0;

    text-align: left;
  }
}


/* =========================================================
   Blog grid alignment
   ========================================================= */

body.blog .blog-grid {
  grid-template-columns:
    repeat(
      auto-fit,
      minmax(280px, 360px)
    );

  justify-content: center;
}

body.blog .blog-card {
  width: 100%;

  max-width: 360px;
}

/* =========================================================
   One-go production hardening additions
   ========================================================= */

/* Anti-bot honeypot: accessible form users never see/interact with it. */
.musmir-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* WooCommerce dynamically generated account address fields. */
body.woocommerce-account .woocommerce-address-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

body.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row-wide {
  grid-column: 1 / -1 !important;
}

@media (max-width: 700px) {
  body.woocommerce-account .woocommerce-address-fields__field-wrapper {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row {
    grid-column: 1 !important;
  }
}
