/*
Theme Name: Donacos
Theme URI: https://hatdieudonacos.vn
Author: BunnyDV
Author URI: https://bunnydv.com
Description: Theme bán hạt điều Donacos được phát triển bởi BunnyDV.
Version: 1.1.2
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: donacos
*/

:root {
  --cream: #FFF7E8;
  --cashew: #7A4A24;
  --green: #2F6B3F;
  --white: #FFFFFF;
  --gold: #D9A441;
  --dark: #3A2415;
  --border: #E8D8BE;
  --muted: #7B6B5B;
  --shadow: 0 18px 45px rgba(58, 36, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 76px;
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  color: var(--dark);
  background: #fffaf0;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
  min-height: 76px;
  background: rgba(255, 247, 232, 0.94);
  border-bottom: 1px solid rgba(232, 216, 190, 0.85);
  backdrop-filter: blur(14px);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}

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

.site-header.is-sticky-ready {
  background: rgba(255, 247, 232, 0.98);
}

.site-header.is-sticky-hidden {
  transform: translateY(-110%);
}

.site-header.is-sticky-visible {
  transform: translateY(0);
  box-shadow: 0 14px 30px rgba(58, 36, 21, 0.1);
}

.navbar {
  min-height: 76px;
}

.navbar-nav {
  align-items: center;
  gap: 2px;
}

.navbar-nav .menu-item {
  position: relative;
  list-style: none;
}

.submenu-toggle {
  display: none;
}

.brand-mark {
  font-weight: 800;
  color: var(--cashew);
  letter-spacing: 0;
}

.brand-mark::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 8px;
  border-radius: 50% 50% 50% 12%;
  background: var(--gold);
  box-shadow: 7px 2px 0 rgba(122, 74, 36, 0.25);
  transform: rotate(-25deg);
}

.brand-mark .custom-logo {
  max-height: 48px;
  width: auto;
}

.nav-link {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding-inline: 0.9rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cashew);
}

.navbar-nav .menu-item-has-children > .nav-link {
  padding-right: 1.6rem !important;
}

.navbar-nav .menu-item-has-children > .nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.55rem;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.navbar-nav .sub-menu {
  min-width: 220px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: rgba(255, 250, 240, 0.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(58, 36, 21, 0.12);
}

@media (min-width: 992px) {
  .navbar-nav .sub-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 30;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .navbar-nav .sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
  }

  .navbar-nav .sub-menu .sub-menu {
    top: -10px;
    left: calc(100% + 10px);
    transform: translate(8px, 0);
  }

  .navbar-nav .menu-item:hover > .sub-menu,
  .navbar-nav .menu-item:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .navbar-nav .sub-menu .menu-item:hover > .sub-menu,
  .navbar-nav .sub-menu .menu-item:focus-within > .sub-menu {
    transform: translate(0, 0);
  }

  .navbar-nav .menu-item-has-children:hover > .nav-link::after,
  .navbar-nav .menu-item-has-children:focus-within > .nav-link::after {
    transform: translateY(-35%) rotate(225deg);
  }
}

.navbar-nav .sub-menu .nav-link {
  display: block;
  min-width: 0;
  padding: 0.65rem 0.8rem !important;
  border-radius: 10px;
  color: var(--dark);
  white-space: nowrap;
}

.navbar-nav .sub-menu .nav-link:hover,
.navbar-nav .sub-menu .nav-link:focus {
  color: var(--cashew);
  background: var(--cream);
}

.btn {
  border-radius: 999px;
  min-height: 46px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-contact,
.btn-buy {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(47, 107, 63, 0.18);
}

.btn-contact:hover,
.btn-buy:hover {
  background: #255b34;
  color: var(--white);
}

.header-cart-link {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-right: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--cashew);
  box-shadow: 0 12px 22px rgba(122, 74, 36, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.header-cart-link-mobile {
  display: none;
}

.header-cart-link:hover {
  border-color: var(--cashew);
  color: var(--green);
  transform: translateY(-2px);
}

.header-cart-link.is-cart-bumped {
  animation: cartBump 0.42s ease;
}

@keyframes cartBump {

  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.14);
  }
}

.cart-bag-icon {
  position: relative;
  width: 18px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 5px 5px 7px 7px;
}

.cart-bag-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 12px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.cart-count {
  position: absolute;
  right: -5px;
  top: -6px;
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--cream);
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.btn-primary-soft {
  background: var(--cashew);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(122, 74, 36, 0.18);
}

.btn-primary-soft:hover {
  background: #633b1d;
  color: var(--white);
}

.btn-outline-soft {
  border: 1px solid var(--border);
  color: var(--cashew);
  background: var(--white);
}

.btn-outline-soft:hover {
  border-color: var(--cashew);
  background: #fff3dc;
  color: var(--cashew);
}

.hero-section {
  background: var(--cream);
  padding: 88px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
}

figcaption {
  font-size: 12px;
  color: #64748b;
  text-align: center;
  margin-top: 5px;
  font-style: italic;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

table th,
table thead th,
table thead td {
  background-color: #f1f5f9a8;
  font-weight: 600;
  color: var(--text);
}

table th,
table td {
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--dark);
  font-weight: 800;
  letter-spacing: 0;
}


@media (min-width: 992px) {
  h1 {
      font-size: clamp(1.25rem, 5vw, 2.3rem) !important;
      line-height: 1.05;
      margin-bottom: 22px;
    }
    
    h2 {
      font-size: clamp(0.8rem, 3vw, 1.5rem) !important;
      line-height: 1.15;
    }
    
    h3 {
      font-size: clamp(0.75rem, 2.5vw, 1.25rem) !important;
      line-height: 1.25;
    }
    
    h4 {
      font-size: clamp(0.72rem, 2vw, 1.1rem) !important;
      line-height: 1.35;
    }
    
    h5 {
      font-size: clamp(0.7rem, 1.8vw, 1rem) !important;
      line-height: 1.45;
    }
    
    h6 {
      font-size: clamp(0.68rem, 1.5vw, 0.9rem) !important;
      line-height: 1.5;
    }
}


.hero-text,
.section-desc,
.section-heading p,
.page-hero p,
.detail-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-image-wrap {
  position: relative;
  padding: 14px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-image,
.detail-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
}

.hero-stats {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: -28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-stats div {
  text-align: center;
}

.hero-stats strong {
  display: block;
  color: var(--cashew);
  font-size: 1.25rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.section-pad {
  padding: 45px 0;
}

.section-cream,
.page-hero {
  background: var(--cream);
}

.page-hero {
  padding: 72px 0 54px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
}

.review-card,
.content-panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(58, 36, 21, 0.08);
}

.quality-section {
  background: #ede8df;
}

.quality-section .section-heading {
  margin-bottom: 24px;
}

.quality-section h2 {
  color: #ad5630;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.quality-card {
  min-height: 392px;
  padding: 28px 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--dark);
  text-align: center;
}

.quality-icon {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.quality-card h3 {
  margin-bottom: 14px;
  color: #ad5630;
  font-size: 1.15rem;
}

.quality-card p {
  margin-bottom: 0;
  color: #3f2114;
  font-size: 0.93rem;
  line-height: 1.72;
}

.quality-link {
  margin-top: 30px;
  text-align: center;
}

.quality-link a {
  color: #ad5630;
  font-weight: 500;
}

.quality-link a:hover {
  color: var(--cashew);
}

.intro-floating-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  margin: 0;
}

.intro-floating-product::before {
  content: "";
  position: absolute;
  width: min(72%, 440px);
  height: min(72%, 360px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.34), rgba(47, 107, 63, 0.14) 44%, rgba(255, 247, 232, 0) 72%);
  filter: blur(18px);
}

.intro-floating-product img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  filter: drop-shadow(0 30px 34px rgba(58, 36, 21, 0.18));
  animation: floatProduct 5.2s ease-in-out infinite;
}

@keyframes floatProduct {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(58, 36, 21, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-products-carousel {
  margin-top: 34px;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

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

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  height: 220px;
}

.product-media {
  display: block;
  position: relative;
  margin-bottom: 18px;
}

.product-media img {
  margin-bottom: 0;
}

.product-media .product-category {
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin-bottom: 0;
  background: rgba(255, 241, 212, 0.94);
  box-shadow: 0 10px 20px rgba(58, 36, 21, 0.14);
}

.product-category {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff1d4;
  color: var(--cashew);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-card h2,
.product-card h3 {
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

.product-card h2 a:hover,
.product-card h3 a:hover {
  color: var(--cashew);
}

.product-card p {
  color: var(--muted);
  line-height: 1.65;
  min-height: 55px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  margin-top: auto;
}

.product-bottom strong {
  color: var(--cashew);
  white-space: nowrap;
}

.product-bottom .btn {
  min-height: 42px;
  padding: 0.62rem 0.9rem;
  font-size: 0.86rem;
}

.donacos-card-cart-form {
  flex: 0 0 auto;
  margin: 0;
}

.donacos-card-cart-form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.review-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(58, 36, 21, 0.08);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.75;
}

.review-slider {
  max-width: 1160px;
  margin: 34px auto 0;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.review-card p {
  margin-bottom: 22px;
}

.review-footer {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff1d4;
  box-shadow: 0 8px 18px rgba(58, 36, 21, 0.12);
}

.review-card cite {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.review-card cite strong,
.review-card cite span {
  display: block;
}

.review-card cite strong {
  color: var(--cashew);
}

.review-stars {
  color: #d9a441;
  font-size: 0.95rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.faq-wrap {
  width: 100%;
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  background: var(--white);
}

.accordion-button {
  font-weight: 800;
  color: var(--dark);
  background: var(--white);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--cashew);
  background: #fff3dc;
}

.accordion-body {
  color: var(--muted);
  line-height: 1.7;
}

.contact-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: start;
  min-height: 430px;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-box h2,
.contact-box .eyebrow,
.contact-box p,
.contact-info p {
  color: var(--white);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-box .btn-outline-soft {
  border-color: transparent;
}

.site-footer {
  padding: 56px 0 24px;
  background: #24170f;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer .brand-mark,
.site-footer h2 {
  color: var(--white);
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-brand {
  display: inline-block !important;
  margin-bottom: 16px !important;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.filter-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--white);
  color: var(--cashew);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover {
  transform: translateY(-2px);
}

.filter-chip.active {
  background: var(--cashew);
  color: var(--white);
}

.product-item.is-hidden {
  display: none;
}

.woocommerce-pagination {
  margin-top: 38px;
  text-align: center;
}

.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
  list-style: none;
}

.woocommerce-pagination ul.page-numbers li {
  border: 0;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--cashew);
  font-weight: 800;
}

.woocommerce-pagination .page-numbers.current,
.woocommerce-pagination .page-numbers:hover {
  background: var(--cashew);
  color: var(--white);
}

.shop-empty-state {
  max-width: 760px;
  margin: 0 auto;
  padding: 46px 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  text-align: center;
}

.shop-empty-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff1d4;
  color: var(--cashew);
  font-size: 1.55rem;
  font-weight: 800;
}

.shop-empty-state h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.shop-empty-state p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.7;
}

.shop-empty-state .hero-actions {
  justify-content: center;
}

.detail-image-frame,
.content-panel {
  position: relative;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-gallery {
  overflow: hidden;
}

.gallery-main {
  position: relative;
}

.gallery-main-image {
  transition: opacity 0.28s ease;
}

.gallery-main-image.is-switching {
  opacity: 0.35;
}

.gallery-category {
  position: absolute;
  left: 18px;
  bottom: 104px;
  z-index: 3;
  margin-bottom: 0;
  background: rgba(255, 241, 212, 0.95);
  box-shadow: 0 10px 20px rgba(58, 36, 21, 0.14);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232, 216, 190, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--cashew);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.gallery-arrow:hover {
  background: var(--cashew);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow-prev {
  left: 18px;
}

.gallery-arrow-next {
  right: 18px;
}

.gallery-thumbs {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  background: transparent;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.gallery-thumb img {
  width: 100%;
  height: 58px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 11px;
}

.breadcrumb-soft {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.breadcrumb-soft a {
  color: var(--cashew);
}

.product-detail-summary {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
}

.product-detail-summary h1 {
  margin-bottom: 18px;
}

.product-detail-summary .detail-desc {
  min-height: 64px;
  margin-bottom: 10px;
}

.detail-price {
  margin: 18px 0;
  color: var(--cashew);
  font-size: 1.25rem;
  font-weight: 800;
}

.detail-price .amount {
  color: var(--cashew);
}

.detail-info,
.clean-list {
  padding-left: 0;
  list-style: none;
}

.detail-info {
  min-height: 58px;
}

.detail-info li,
.clean-list li {
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7e8;
  color: var(--muted);
}

.product-detail-actions {
  margin-top: auto;
  flex-wrap: wrap;
}

.donacos-cart-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 420px);
  gap: 12px;
}

.donacos-cart-actions .btn {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.donacos-add-to-cart {
  background: var(--white);
}

.donacos-add-to-cart:disabled {
  opacity: 0.72;
  cursor: progress;
}

.donacos-buy-now {
  box-shadow: 0 16px 30px rgba(47, 107, 63, 0.18);
}

.content-panel {
  width: 100%;
  padding: 34px;
}

.detail-content-panel {
  min-height: 100%;
}

.detail-content-panel .section-desc>*:last-child {
  margin-bottom: 0;
}

.detail-content-panel .section-desc ul,
.detail-content-panel .section-desc ol {
  margin: 18px 0;
}

.detail-content-panel .section-desc li {
  margin-bottom: 8px;
}

.detail-sidebar {
  display: grid;
  gap: 20px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(58, 36, 21, 0.08);
}

.sidebar-card h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

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

.sidebar-info {
  margin: 18px 0;
}

.sidebar-info p {
  margin-bottom: 8px;
}

.related-list {
  display: grid;
  gap: 14px;
}

.related-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fffaf0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(58, 36, 21, 0.1);
}

.related-item img {
  width: 78px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
}

.related-item strong,
.related-item small {
  display: block;
}

.related-item strong {
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.4;
}

.related-item small {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 600;
}

.related-item small .amount {
  color: var(--muted);
}

.related-post-placeholder {
  width: 78px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1d4, #f6d7a7);
}

.sidebar-latest-posts {
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.sidebar-latest-posts h2 {
  margin-bottom: 18px;
}

.latest-post-featured {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.latest-post-featured img,
.latest-post-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
}

.latest-post-placeholder,
.latest-post-thumb-placeholder {
  background: linear-gradient(135deg, #fff1d4, #f6d7a7);
}

.latest-post-featured strong {
  display: block;
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.35;
}

.latest-post-list {
  display: grid;
}

.latest-post-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.latest-post-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.latest-post-item img,
.latest-post-thumb-placeholder {
  width: 86px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.latest-post-item strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--dark);
  font-size: 0.9rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-section {
  background: #fffaf0;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 30px;
  align-items: start;
}

.blog-layout > * {
  min-width: 0;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(58, 36, 21, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(58, 36, 21, 0.1);
}

.blog-card-media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--cream);
}

.blog-card-media img,
.blog-card-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-placeholder {
  background: linear-gradient(135deg, #fff1d4, #f6d7a7);
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-card-meta span,
.blog-card-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cream);
}

.blog-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.3;
}

.blog-card h2 a:hover {
  color: var(--cashew);
}

.blog-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-read-more {
  color: var(--green);
  font-weight: 800;
}

.blog-read-more:hover {
  color: var(--cashew);
}

.blog-sidebar {
  display: grid;
  gap: 18px;
}

.blog-category-list {
  display: grid;
  gap: 10px;
}

.blog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(232, 216, 190, 0.85);
  border-radius: 14px;
  background: var(--cream);
  color: var(--dark);
  font-weight: 800;
}

.blog-category-list a:hover {
  border-color: var(--cashew);
  color: var(--cashew);
}

.blog-category-list small {
  display: inline-flex;
  min-width: 28px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.78rem;
}

.blog-pagination {
  margin-top: 26px;
}

.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--cashew);
  font-weight: 800;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--cashew);
  color: var(--white);
}

.blog-empty-state {
  padding: 44px 28px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  text-align: center;
}

.blog-empty-state span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  font-weight: 900;
}

.blog-empty-state h2 {
  margin-bottom: 8px;
}

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

.single-content-section {
  background: #fffaf0;
}

.article-panel {
  max-width: 100%;
  min-width: 0;
  padding: 28px;
}

.page-panel {
  padding-top: 38px;
}

.article-featured-image {
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 24px;
  background: var(--cream);
}

.article-featured-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-header {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.article-header h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.article-meta span,
.article-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cream);
}

.article-meta a {
  color: var(--cashew);
}

.article-content {
  max-width: 100%;
  min-width: 0;
  color: var(--dark);
  line-height: 1.85;
  overflow-wrap: break-word;
}

.article-content>* {
  max-width: 100%;
  margin-bottom: 18px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 32px;
  margin-bottom: 14px;
  line-height: 1.28;
}

.article-content p,
.article-content li {
  color: var(--muted);
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.article-content table,
.article-content pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.article-content pre {
  white-space: pre-wrap;
}

.not-found-section {
  background: #fffaf0;
}

.not-found-panel {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 42px 34px;
  text-align: center;
}

.not-found-image {
  width: min(100%, 620px);
  margin: 0 auto 26px;
  object-fit: contain;
}

.not-found-content {
  max-width: 620px;
  margin: 0 auto;
}

.not-found-content h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.not-found-content p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.not-found-actions {
  justify-content: center;
}

.contact-page-section {
  background: #fffaf0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.contact-page-grid > * {
  min-width: 0;
}

.contact-main-card,
.contact-info-panel {
  padding: 34px;
}

.contact-main-card h2,
.contact-info-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.contact-main-card p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.contact-note-box {
  padding: 22px;
  border-radius: 22px;
  background: var(--cream);
}

.contact-note-box h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.contact-note-box ul {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-note-box li {
  margin-bottom: 8px;
}

.contact-info-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-info-item {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(232, 216, 190, 0.9);
  border-radius: 18px;
  background: var(--cream);
}

.contact-info-item strong {
  color: var(--cashew);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-info-item a:hover {
  color: var(--green);
}

.contact-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-social-list a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cashew);
  font-weight: 800;
}

.contact-social-list a:hover {
  background: var(--green);
  color: var(--white);
}

.article-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  background: var(--cream);
  color: var(--dark);
  font-weight: 700;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.random-posts-section {
  background: var(--cream);
}

.random-posts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.random-post-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(58, 36, 21, 0.08);
}

.random-post-media {
  display: block;
  overflow: hidden;
  background: var(--cream);
}

.random-post-media img,
.random-post-media .blog-card-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.random-post-content {
  padding: 14px;
}

.random-post-content time {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.random-post-content h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.random-post-content h3 a:hover {
  color: var(--cashew);
}

.random-products-section {
  background: #fffaf0;
}

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

.random-products-grid .product-card img {
  max-height: 180px;
}

.random-product-bottom {
  display: grid;
  gap: 10px;
}

.random-product-bottom .btn {
  width: 100%;
}

.donacos-thankyou-order {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.donacos-thankyou-order .woocommerce-thankyou-order-received {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.donacos-order-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 100%;
  padding: 16px 0 22px;
  margin: 0 0 18px;
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.donacos-order-overview::before,
.donacos-order-overview::after {
  display: none;
}

.donacos-order-overview li {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(232, 216, 190, 0.9);
  border-radius: 16px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.donacos-order-overview span,
.donacos-order-overview strong {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.donacos-order-overview strong {
  margin-top: 5px;
  color: var(--dark);
  font-size: 0.94rem;
  text-transform: none;
}

.donacos-order-details {
  width: 100%;
  max-width: 100%;
  margin-top: 28px;
}

.donacos-order-details__title,
.donacos-order-details .woocommerce-order-details__title,
.donacos-receiver-details .woocommerce-column__title {
  margin-bottom: 14px;
  color: var(--dark);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.25;
}

.donacos-order-details-table {
  width: 100%;
  max-width: 100%;
  display: table;
  overflow: hidden;
  border: 1px solid var(--border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  background: var(--white);
  table-layout: fixed;
}

.donacos-order-details-table th,
.donacos-order-details-table td {
  padding: 14px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  vertical-align: top;
  overflow-wrap: anywhere;
}

.donacos-order-details-table tr > :last-child {
  border-right: 0;
}

.donacos-order-details-table tbody tr:last-child td,
.donacos-order-details-table tfoot tr:last-child th,
.donacos-order-details-table tfoot tr:last-child td {
  border-bottom: 0;
}

.donacos-order-details-table thead th {
  background: rgba(255, 250, 240, 0.85);
  font-weight: 900;
}

.donacos-order-details-table .product-name {
  width: 68%;
}

.donacos-order-details-table .product-total {
  width: 32%;
}

.donacos-order-details-table .product-total,
.donacos-order-details-table td.product-total {
  text-align: right;
}

.donacos-order-details-table tfoot th {
  background: rgba(255, 250, 240, 0.55);
  font-weight: 900;
}

.donacos-order-details-table tfoot td {
  font-weight: 800;
}

.donacos-receiver-details {
  margin-top: 24px;
}

.donacos-receiver-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.donacos-receiver-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.3fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--cream);
}

.donacos-receiver-row span {
  color: var(--cashew);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.donacos-receiver-row strong,
.donacos-receiver-row a {
  min-width: 0;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.donacos-receiver-row a:hover {
  color: var(--green);
}

.donacos-payment-page-wrap {
  width: 100%;
}

.donacos-sepay-payment {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.donacos-sepay-payment .section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.donacos-sepay-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.donacos-sepay-qr-card,
.donacos-sepay-info-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 52px rgba(82, 50, 24, 0.09);
}

.donacos-sepay-qr-card {
  display: grid;
  gap: 18px;
  place-items: center;
}

.donacos-sepay-qr {
  width: min(430px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 14px;
  border: 1px solid rgba(232, 216, 190, 0.9);
  border-radius: 24px;
  background: #fff;
}

.donacos-sepay-download {
  min-width: 180px;
  justify-content: center;
}

.donacos-sepay-info-card {
  display: grid;
  gap: 18px;
}

.donacos-sepay-info-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.25;
}

.donacos-sepay-copy-list {
  display: grid;
  gap: 12px;
}

.donacos-sepay-copy-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(232, 216, 190, 0.72);
  border-radius: 16px;
  background: var(--cream);
}

.donacos-sepay-copy-row span {
  color: var(--cashew);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.donacos-sepay-copy-row strong {
  min-width: 0;
  color: var(--dark);
  overflow-wrap: anywhere;
}

.donacos-copy-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--brown);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.donacos-copy-button:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.donacos-sepay-alert {
  padding: 16px 18px;
  border: 1px solid rgba(223, 166, 55, 0.42);
  border-radius: 18px;
  background: #fff4d8;
  color: var(--dark);
  line-height: 1.7;
}

.donacos-sepay-status {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(45, 117, 67, 0.09);
  color: var(--green);
}

.donacos-sepay-status.is-confirmed {
  background: rgba(45, 117, 67, 0.14);
}

.donacos-sepay-spinner {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 3px solid rgba(45, 117, 67, 0.18);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: donacos-spin 0.9s linear infinite;
}

@keyframes donacos-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .donacos-sepay-payment .section-heading {
    margin-bottom: 22px;
  }

  .donacos-sepay-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .donacos-sepay-qr-card,
  .donacos-sepay-info-card {
    padding: 18px;
    border-radius: 22px;
  }

  .donacos-sepay-qr {
    width: min(310px, 100%);
    border-radius: 18px;
  }

  .donacos-sepay-copy-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .donacos-copy-button {
    width: 100%;
  }
}

.cart-page-wrap {
  width: 100%;
}

.donacos-cart-section {
  background: #fffaf0;
  padding-top: 6px;
}

.donacos-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.6fr);
  gap: 28px;
  align-items: start;
}

.donacos-cart-layout.is-empty {
  display: none;
}

.donacos-cart-layout.is-cart-empty .donacos-cart-actions-row {
  display: none;
}

.donacos-cart-layout > * {
  min-width: 0;
}

.donacos-cart-panel,
.donacos-checkout-sticky {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.donacos-cart-panel {
  padding: 30px;
}

.donacos-cart-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.donacos-cart-panel-head .eyebrow {
  margin-bottom: 8px;
}

.donacos-cart-panel-head h2,
.donacos-checkout-sticky h2 {
  margin-bottom: 0;
}

.donacos-cart-panel-head > strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--cashew);
  white-space: nowrap;
}

.donacos-cart-items {
  display: grid;
  gap: 16px;
}

.donacos-inline-empty-cart {
  display: none;
  margin: 0;
  padding: 28px 18px;
}

.donacos-inline-empty-cart.is-visible {
  display: grid;
}

.donacos-cart-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) minmax(185px, auto);
  gap: 18px;
  align-items: center;
  max-height: 520px;
  padding: 16px;
  border: 1px solid rgba(232, 216, 190, 0.88);
  border-radius: 22px;
  background: #fffdf8;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.42s ease, max-height 0.42s ease, margin 0.42s ease, padding 0.42s ease;
  will-change: opacity, transform, max-height;
}

.donacos-cart-item.is-updating {
  border-color: rgba(47, 107, 63, 0.28);
  opacity: 0.72;
}

.donacos-cart-item.is-removing {
  max-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  border-color: transparent;
  opacity: 0;
  transform: translateX(72px);
  pointer-events: none;
}

.donacos-cart-thumb {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--cream);
}

.donacos-cart-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.donacos-cart-info h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.35;
}

.donacos-cart-info h3 a:hover {
  color: var(--cashew);
}

.donacos-cart-price {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--cashew);
}

.donacos-cart-info p {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.donacos-cart-controls {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.donacos-cart-qty {
  display: inline-grid;
  grid-template-columns: 38px 56px 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
}

.cart-qty-btn {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--cashew);
  font-size: 1.1rem;
  font-weight: 900;
}

.cart-qty-btn:hover {
  background: var(--cream);
}

.donacos-cart-qty .quantity {
  display: block;
}

.donacos-cart-qty input.qty {
  width: 56px;
  height: 38px;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  background: transparent;
  color: var(--dark);
  text-align: center;
  font-weight: 800;
  appearance: textfield;
}

.donacos-cart-qty input.qty::-webkit-outer-spin-button,
.donacos-cart-qty input.qty::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.donacos-cart-line-total {
  display: grid;
  gap: 2px;
  text-align: right;
}

.donacos-cart-line-total span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.donacos-cart-line-total strong {
  color: var(--dark);
  font-size: 1.05rem;
}

.donacos-cart-remove {
  color: #9b4a28;
  font-size: 0.86rem;
  font-weight: 800;
}

.donacos-cart-remove:hover {
  color: var(--green);
}

.donacos-cart-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.donacos-update-cart-button {
  display: none;
  min-height: 46px;
  padding: 0.72rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--cashew);
  font-weight: 800;
}

.donacos-update-cart-button:hover {
  border-color: var(--cashew);
  background: #fff3dc;
}

.donacos-checkout-sticky {
  position: sticky;
  top: 104px;
  padding: 30px;
}

.donacos-checkout-sticky .eyebrow {
  margin-bottom: 10px;
}

.donacos-cart-checkout-form {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.donacos-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.donacos-form-grid label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.donacos-form-grid span {
  color: var(--cashew);
  font-size: 0.84rem;
  font-weight: 800;
}

.donacos-form-grid input,
.donacos-form-grid select,
.donacos-form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--dark);
  font: inherit;
  outline: none;
}

.donacos-form-grid textarea {
  min-height: 92px;
  resize: vertical;
}

.donacos-form-grid input:focus,
.donacos-form-grid select:focus,
.donacos-form-grid textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.16);
}

.donacos-field-full {
  grid-column: 1 / -1;
}

.donacos-payment-methods {
  display: grid;
  gap: 12px;
}

.donacos-payment-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fffdf8;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.donacos-payment-choice.is-active {
  border-color: rgba(47, 107, 63, 0.46);
  background: #f7fff5;
  box-shadow: 0 10px 24px rgba(47, 107, 63, 0.1);
}

.donacos-payment-choice input {
  margin-top: 4px;
  accent-color: var(--green);
}

.donacos-payment-choice strong,
.donacos-payment-choice small {
  display: block;
}

.donacos-payment-choice strong {
  color: var(--dark);
  line-height: 1.35;
}

.donacos-payment-choice small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.donacos-order-summary {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: var(--cream);
}

.donacos-order-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.donacos-order-summary span {
  color: var(--muted);
  font-weight: 700;
}

.donacos-summary-value,
.donacos-summary-value strong {
  color: var(--dark);
  font-size: 1.12rem;
  font-weight: 900;
}

.donacos-summary-value .includes_tax {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.donacos-terms-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.donacos-terms-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.donacos-terms-check a {
  color: var(--cashew);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.donacos-payment-submit {
  width: 100%;
  min-height: 54px;
  min-width: 220px;
  justify-content: center;
}

.donacos-payment-submit:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.donacos-cart-flyer {
  position: fixed;
  z-index: 2200;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(58, 36, 21, 0.22);
  pointer-events: none;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.72s ease;
}

.donacos-cart-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2300;
  display: grid;
  gap: 12px;
  width: min(calc(100vw - 32px), 420px);
  padding: 22px 24px;
  border: 1px solid rgba(232, 216, 190, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(58, 36, 21, 0.22);
  color: var(--dark);
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -44%) scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s ease;
  backdrop-filter: blur(12px);
}

.donacos-cart-popup::before {
  content: "";
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(47, 107, 63, 0.2);
}

.donacos-cart-popup::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: 15px;
  height: 8px;
  border-bottom: 3px solid var(--white);
  border-left: 3px solid var(--white);
  transform: translateX(-50%) rotate(-45deg);
}

.donacos-cart-popup.is-error::before {
  background: #b42318;
}

.donacos-cart-popup.is-error::after {
  content: "!";
  top: 28px;
  width: auto;
  height: auto;
  border: 0;
  color: var(--white);
  font-weight: 900;
  transform: translateX(-50%);
}

.donacos-cart-popup.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.donacos-cart-popup strong {
  font-size: 1rem;
  line-height: 1.55;
}

.donacos-cart-popup a {
  justify-self: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--cashew);
  font-weight: 800;
}

.donacos-cart-popup a:hover {
  background: var(--green);
  color: var(--white);
}

.donacos-empty-cart-popup {
  position: fixed;
  inset: 0;
  z-index: 2290;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 250, 240, 0.62);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  backdrop-filter: blur(4px);
}

.donacos-empty-cart-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.donacos-empty-cart-panel {
  width: min(100%, 760px);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  body {
    padding-top: 74px;
  }

  .site-header,
  .navbar {
    min-height: 74px;
  }

  .admin-bar .site-header {
    top: 0;
  }

  .site-header {
    z-index: 1040;
  }

  .navbar {
    position: relative;
    padding: 0;
  }

  .navbar > .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 10px;
    min-height: 74px;
    padding-top: 0;
    padding-bottom: 0;
    position: static;
  }

  .navbar-brand {
    min-width: 0;
    margin: 0;
  }

  .brand-mark {
    display: inline-flex;
    align-items: center;
    min-height: 74px;
  }

  .navbar-toggler {
    align-self: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-color: var(--border);
    border-radius: 10px;
    box-shadow: none;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.22);
  }

  .navbar-nav {
    align-items: stretch;
  }

  .navbar-collapse {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    z-index: 1041;
    width: auto;
    max-height: calc(100vh - 74px);
    min-width: 0;
    padding: 0 12px;
    overflow-y: auto;
    background: rgba(255, 247, 232, 0.98);
    border-top: 1px solid rgba(232, 216, 190, 0.8);
    border-bottom: 1px solid rgba(232, 216, 190, 0.88);
    box-shadow: 0 18px 34px rgba(58, 36, 21, 0.13);
    transform-origin: top;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    padding-top: 12px;
    padding-bottom: 18px;
  }

  .navbar-collapse.collapsing {
    height: auto !important;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .navbar-collapse.collapse.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .admin-bar .navbar-collapse {
    top: 0;
    max-height: calc(100vh - 120px);
  }

  .navbar-collapse.collapse:not(.show) {
    display: none;
  }

  .navbar-collapse .btn-contact {
    width: 100%;
    margin-top: 10px;
  }

  .header-cart-link-mobile {
    display: inline-grid;
    justify-self: end;
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 999px;
  }

  .navbar-collapse .header-cart-link-desktop {
    display: none;
  }

  .navbar-collapse .header-cart-link {
    width: 100%;
    height: 44px;
    margin: 10px 0 0;
    border-radius: 14px;
  }

  .navbar-nav .menu-item-has-children {
    display: grid;
    grid-template-columns: 1fr 40px;
    align-items: center;
  }

  .navbar-nav .menu-item-has-children > .nav-link {
    padding-right: 0.9rem !important;
  }

  .navbar-nav .menu-item-has-children > .nav-link::after {
    display: none;
  }

  .submenu-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-left: auto;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--dark);
  }

  .submenu-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .menu-item.is-submenu-open > .submenu-toggle::before {
    transform: translateY(2px) rotate(225deg);
  }

  .navbar-nav .sub-menu {
    grid-column: 1 / -1;
    display: none;
    margin: 4px 0 8px 14px;
    padding: 6px;
    border-radius: 12px;
    box-shadow: none;
  }

  .navbar-nav .menu-item.is-submenu-open > .sub-menu {
    display: block;
  }

  .navbar-nav .sub-menu .menu-item-has-children {
    grid-template-columns: 1fr 34px;
  }

  .navbar-nav .sub-menu .nav-link {
    white-space: normal;
  }

  .hero-section {
    padding-top: 40px;
    padding-bottom: 5px;
  }

  .hero-stats {
    position: static;
    margin-top: 14px;
  }

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

  .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .random-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .random-posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 25px 0 0px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  #wpadminbar {
    min-width: 0;
  }

  .section-pad {
    padding: 25px 0;
  }

  .single-content-section .container {
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    overflow: hidden;
  }

  .single-content-section .blog-layout {
    width: 100%;
    max-width: 100%;
    gap: 18px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: absolute;
  }

  .intro-floating-product {
    min-height: 320px;
    margin-top: 18px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-detail-summary {
    min-height: auto;
    justify-content: flex-start;
  }

  .product-detail-summary .detail-desc,
  .detail-info {
    min-height: 0;
  }

  .product-detail-actions {
    margin-top: 18px;
  }

  .donacos-cart-actions {
    grid-column: 1 / -1;
    width: 100%;
    gap: 8px;
  }

  .donacos-cart-actions .btn {
    min-height: 48px;
    padding-inline: 0.45rem;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .blog-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .blog-card h2 {
    font-size: 1.05rem;
  }

  .blog-card p {
    font-size: 0.92rem;
    -webkit-line-clamp: 4;
  }

  .article-panel {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    border-radius: 22px;
  }

  .not-found-panel {
    min-height: auto;
    padding: 24px 14px;
  }

  .not-found-image {
    width: min(100%, 360px);
    margin-bottom: 18px;
  }

  .not-found-content h1 {
    font-size: 1.7rem;
  }

  .contact-main-card,
  .contact-info-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .contact-action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-note-box {
    padding: 18px;
  }

  .contact-social-list a {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .article-featured-image {
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .article-header h1 {
    font-size: 1.65rem;
  }

  .article-meta {
    gap: 7px;
    font-size: 0.78rem;
  }

  .article-meta span,
  .article-meta time {
    min-width: 0;
    max-width: 100%;
    padding: 6px 10px;
    overflow-wrap: anywhere;
  }

  .article-content {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .random-posts-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .featured-products-carousel {
    margin-top: 24px;
  }

  .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .random-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-card {
    padding: 10px;
    border-radius: 18px;
  }

  .product-card img {
    aspect-ratio: 1 / 0.82;
    border-radius: 14px;
    margin-bottom: 0;
  }

  .product-card img {
    height: 150px;
  }

  .product-media {
    margin-bottom: 12px;
  }

  .product-category {
    margin-bottom: 8px;
    padding: 4px 9px;
    font-size: 0.68rem;
  }

  .product-media .product-category {
    left: 8px;
    bottom: 8px;
    margin-bottom: 0;
  }

  .product-card h2,
  .product-card h3 {
    display: -webkit-box;
    margin-bottom: 7px;
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-card p {
    display: -webkit-box;
    min-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 12px;
  }

  .product-bottom strong {
    font-size: 0.78rem;
  }

  .product-bottom .btn {
    width: 100%;
    min-height: 36px;
    padding: 0.52rem 0.7rem;
    font-size: 0.72rem;
  }

  .filter-chips {
    gap: 10px;
  }

  .filter-chip {
    flex: 1 1 calc(50% - 10px);
    padding-inline: 12px;
    font-size: 0.9rem;
  }

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

  .quality-card {
    min-height: auto;
  }

  .review-slider {
    margin-top: 24px;
  }

  .review-track {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .review-card {
    min-height: 140px;
    padding: 18px;
    border-radius: 18px;
  }

  .review-card p {
    display: -webkit-box;
    margin-bottom: 14px;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .review-footer {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .review-avatar {
    width: 42px;
    height: 42px;
  }

  .review-card cite {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .review-stars {
    font-size: 0.72rem;
    letter-spacing: 0;
  }

  .contact-box {
    padding: 24px;
    border-radius: 22px;
  }

  section#gioi-thieu {
    padding: 60px 0;
  }

  .reveal.is-visible {
    text-align: center !important;
  }
}

@media (max-width: 991.98px) {
  .donacos-cart-layout {
    grid-template-columns: 1fr;
  }

  .donacos-checkout-sticky {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .donacos-cart-section .section-heading {
    margin-bottom: 24px;
  }

  .donacos-cart-section .section-heading p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .donacos-cart-panel,
  .donacos-checkout-sticky {
    padding: 18px;
    border-radius: 22px;
  }

  .donacos-cart-panel-head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .donacos-cart-panel-head > strong {
    justify-self: start;
  }

  .donacos-cart-item {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px;
    border-radius: 18px;
  }

  .donacos-cart-thumb {
    border-radius: 14px;
  }

  .donacos-cart-info h3 {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 4px;
    font-size: 0.94rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .donacos-cart-info p {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }

  .donacos-cart-price {
    margin-bottom: 5px;
    font-size: 0.86rem;
  }

  .donacos-cart-controls {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch;
    gap: 10px;
    padding-top: 8px;
  }

  .donacos-cart-line-total {
    text-align: left;
  }

  .donacos-cart-remove {
    justify-self: end;
  }

  .donacos-cart-actions-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .donacos-cart-actions-row .btn,
  .donacos-update-cart-button {
    width: 100%;
  }

  .donacos-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .donacos-payment-choice {
    padding: 12px;
  }

  .donacos-order-summary {
    padding: 14px;
  }

  .donacos-payment-submit {
    width: 100%;
    min-width: 0;
  }

  .donacos-order-overview {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 12px;
  }

  .donacos-order-details-table {
    table-layout: auto;
  }

  .donacos-order-details-table th,
  .donacos-order-details-table td {
    padding: 11px 10px;
    font-size: 0.86rem;
  }

  .donacos-order-details-table .product-name {
    width: 58%;
  }

  .donacos-order-details-table .product-total {
    width: 42%;
  }

  .donacos-receiver-card {
    padding: 12px;
  }

  .donacos-receiver-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px;
  }
}

/******Contact-form*******/

