:root {
  --tcc-cream: #F7EFE3;
  --tcc-cream-2: #FFF9F0;
  --tcc-brown: #3A281F;
  --tcc-brown-2: #2B1D17;
  --tcc-sage: #7C8F62;
  --tcc-gold: #C79A4B;
  --tcc-beige: #E8DCCB;
  --tcc-text: #5E5047;
  --tcc-white: #FFFFFF;
  --tcc-shadow: 0 16px 42px rgba(58, 40, 31, 0.12);
}

#tcc-moka-app,
#tcc-moka-app * {
  box-sizing: border-box;
}

#tcc-moka-app {
  width: 100%;
  background: var(--tcc-cream);
  color: var(--tcc-brown);
  font-family: Arial, Helvetica, sans-serif;
}

#tcc-moka-app button,
#tcc-moka-app input,
#tcc-moka-app textarea,
#tcc-moka-app a {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.tcc-loading-card {
  max-width: 420px;
  margin: 80px auto;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  text-align: center;
  box-shadow: var(--tcc-shadow);
}

.tcc-loading-mark {
  font-size: 36px;
  margin-bottom: 10px;
}

.tcc-qr-order-shell {
  width: min(100%, 540px);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--tcc-cream);
  padding-bottom: 120px;
}

.tcc-app-hero {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  box-shadow: var(--tcc-shadow);
  background: var(--tcc-brown);
}

.tcc-app-hero-bg,
.tcc-app-hero-bg img,
.tcc-app-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tcc-app-hero-bg img {
  object-fit: cover;
  display: block;
}

.tcc-app-hero-overlay {
  background: linear-gradient(180deg, rgba(34, 24, 19, 0.18) 0%, rgba(34, 24, 19, 0.58) 56%, rgba(34, 24, 19, 0.88) 100%);
}

.tcc-app-hero-content {
  position: relative;
  z-index: 1;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: var(--tcc-cream);
}

.tcc-app-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(247, 239, 227, 0.20);
  border: 1px solid rgba(247, 239, 227, 0.26);
  color: rgba(247, 239, 227, 0.96);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.tcc-app-hero h1 {
  margin: 0 0 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 35px;
  line-height: 1.04;
  color: var(--tcc-cream);
}

.tcc-app-hero p {
  margin: 0;
  max-width: 420px;
  color: rgba(247, 239, 227, 0.84);
  font-size: 14px;
  line-height: 1.52;
}

.tcc-app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tcc-app-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(247, 239, 227, 0.14);
  color: rgba(247, 239, 227, 0.9);
  border: 1px solid rgba(247, 239, 227, 0.2);
  font-size: 12px;
  font-weight: 800;
}

.tcc-app-main {
  padding: 14px 14px 0;
}

.tcc-search-wrap {
  position: sticky;
  top: 76px;
  z-index: 20;
  margin: -34px 2px 12px;
}

.tcc-search {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(58, 40, 31, 0.12);
  background: #fff;
  color: var(--tcc-brown);
  border-radius: 18px;
  padding: 0 17px;
  font-size: 15px;
  font-weight: 750;
  outline: none;
  box-shadow: 0 14px 34px rgba(58, 40, 31, 0.13);
}

.tcc-search::placeholder {
  color: rgba(94, 80, 71, 0.56);
}

.tcc-row-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin: 16px 2px 11px;
}

.tcc-row-title h2 {
  margin: 0;
  color: var(--tcc-brown);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 23px;
  line-height: 1.15;
}

.tcc-row-title span {
  color: var(--tcc-sage);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.tcc-quick-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 2px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.tcc-quick-scroll::-webkit-scrollbar,
.tcc-category-tabs::-webkit-scrollbar {
  display: none;
}

.tcc-quick-card {
  flex: 0 0 162px;
  position: relative;
  overflow: hidden;
  height: 158px;
  border-radius: 24px;
  background: var(--tcc-brown);
  color: #fff;
  box-shadow: 0 12px 28px rgba(58, 40, 31, 0.15);
  scroll-snap-align: start;
}

.tcc-quick-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.tcc-quick-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.78) 100%);
}

.tcc-quick-info {
  position: absolute;
  z-index: 1;
  left: 13px;
  right: 13px;
  bottom: 13px;
}

.tcc-quick-info span {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(247, 239, 227, 0.86);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
}

.tcc-quick-info strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.12;
  margin-bottom: 7px;
}

.tcc-quick-info div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tcc-quick-info b {
  font-size: 14px;
}

.tcc-quick-info em {
  color: rgba(247, 239, 227, 0.78);
  font-size: 11px;
  font-style: normal;
}

.tcc-quick-add,
.tcc-row-add {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1 !important;
}

.tcc-quick-add {
  position: absolute;
  z-index: 2;
  right: 11px;
  top: 11px;
  border: none;
  background: #fff;
  color: var(--tcc-brown);
  border-radius: 999px;
  min-width: 48px;
  height: 32px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.tcc-category-tabs {
  position: sticky;
  top: 138px;
  z-index: 19;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 11px 0 12px;
  margin: 7px 0 2px;
  background: rgba(247, 239, 227, 0.95);
  backdrop-filter: blur(14px);
  -webkit-overflow-scrolling: touch;
}

.tcc-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(58, 40, 31, 0.12);
  background: #fff;
  color: var(--tcc-text);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(58, 40, 31, 0.06);
}

.tcc-tab.is-active {
  background: var(--tcc-brown);
  color: var(--tcc-cream);
  border-color: var(--tcc-brown);
}

.tcc-menu-list {
  display: grid;
  gap: 9px;
}

.tcc-menu-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 11px;
  align-items: stretch;
  min-height: 102px;
  padding: 9px;
  border: 1px solid rgba(58, 40, 31, 0.09);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(58, 40, 31, 0.07);
  cursor: pointer;
}

.tcc-row-img {
  overflow: hidden;
  border-radius: 17px;
  background: var(--tcc-beige);
}

.tcc-row-img img {
  width: 100%;
  height: 100%;
  min-height: 84px;
  object-fit: cover;
  display: block;
}

.tcc-row-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.tcc-row-copy-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.tcc-row-copy h3 {
  margin: 0;
  color: var(--tcc-brown);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.13;
}

.tcc-row-copy-top span {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(124, 143, 98, 0.11);
  color: var(--tcc-sage);
  font-size: 9.5px;
  font-weight: 900;
  text-transform: uppercase !important;
  letter-spacing: 0.35px !important;
}

.tcc-row-copy p {
  margin: 0;
  color: var(--tcc-text);
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tcc-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tcc-row-bottom strong {
  color: var(--tcc-brown);
  font-size: 15px;
  font-weight: 900;
}

.tcc-row-add {
  border: 1px solid var(--tcc-brown);
  background: #fff;
  color: var(--tcc-brown);
  height: 34px;
  min-width: 64px;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.tcc-row-add:hover,
.tcc-quick-add:hover {
  background: var(--tcc-brown);
  color: var(--tcc-cream);
}

.tcc-inline-qty {
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--tcc-brown);
  color: var(--tcc-cream) !important;
  overflow: hidden;
  height: 34px;
  min-width: 102px;
}

.tcc-inline-qty.small {
  grid-template-columns: 32px 34px 32px;
  height: 34px;
  min-width: 98px;
}

.tcc-inline-qty button {
  height: 100%;
  border: none;
  background: transparent;
  color: var(--tcc-cream) !important;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
}

.tcc-inline-qty b {
  color: var(--tcc-cream) !important;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  opacity: 1 !important;
}

.tcc-empty-list,
.tcc-cart-empty {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  color: var(--tcc-text);
  text-align: center;
  box-shadow: 0 10px 28px rgba(58, 40, 31, 0.07);
}

.tcc-cart-empty strong,
.tcc-cart-empty span {
  display: block;
}

.tcc-cart-empty span {
  margin-top: 6px;
  font-size: 13px;
}

.tcc-wait-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 16px 0 0;
  padding: 16px;
  border-radius: 24px;
  background: var(--tcc-brown);
  color: var(--tcc-cream);
}

.tcc-wait-mini span {
  display: block;
  color: var(--tcc-gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 5px;
}

.tcc-wait-mini strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.2;
}

.tcc-wait-mini a {
  flex: 0 0 auto;
  text-decoration: none;
  border: 1px solid rgba(247, 239, 227, 0.32);
  color: var(--tcc-cream) !important;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 850;
}

.tcc-bottom-cart {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 120px);
  z-index: 9998;
  width: min(calc(100% - 28px), 520px);
  transition: transform 0.25s ease;
}

.tcc-bottom-cart.is-visible {
  transform: translate(-50%, 0);
}

.tcc-cart-summary {
  width: 100%;
  min-height: 66px;
  border-radius: 22px;
  background: var(--tcc-cream-2);
  color: var(--tcc-brown);
  border: 1px solid rgba(58, 40, 31, 0.14);
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  box-shadow: 0 18px 52px rgba(58, 40, 31, 0.28);
  cursor: pointer;
}

.tcc-cart-count {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--tcc-brown);
  color: var(--tcc-cream) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

.tcc-cart-text {
  min-width: 0;
  text-align: left;
}

.tcc-cart-text strong,
.tcc-cart-text small {
  display: block;
}

.tcc-cart-text strong {
  color: var(--tcc-brown) !important;
  font-size: 17px;
  font-weight: 900;
}

.tcc-cart-text small {
  color: var(--tcc-text) !important;
  font-size: 12px;
  margin-top: 2px;
  font-weight: 750;
}

.tcc-cart-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--tcc-gold);
  color: var(--tcc-brown) !important;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.tcc-sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-end;
  justify-content: center;
  background: rgba(32, 22, 17, 0.48);
  padding: 18px;
}

.tcc-sheet-overlay.is-open {
  display: flex;
}

.tcc-sheet {
  position: relative;
  width: min(100%, 520px);
  max-height: min(92vh, 780px);
  overflow-y: auto;
  border-radius: 32px;
  background: var(--tcc-cream);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  animation: tccSheetUp 0.22s ease both;
}

@keyframes tccSheetUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

.tcc-sheet-close {
  position: absolute;
  z-index: 5;
  right: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.94);
  color: var(--tcc-brown);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.tcc-product-hero {
  height: 218px;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  background: var(--tcc-beige);
}

.tcc-product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tcc-product-body,
.tcc-checkout-sheet,
.tcc-success-sheet {
  padding: 22px;
}

.tcc-product-tag,
.tcc-checkout-head span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--tcc-sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.tcc-product-body h3,
.tcc-checkout-head h3,
.tcc-success-sheet h3 {
  margin: 0 0 8px;
  color: var(--tcc-brown);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  line-height: 1.1;
}

.tcc-product-body p,
.tcc-order-note,
.tcc-success-sheet p {
  margin: 0;
  color: var(--tcc-text);
  font-size: 14px;
  line-height: 1.65;
}

.tcc-product-price {
  margin-top: 14px;
  color: var(--tcc-brown);
  font-size: 22px;
  font-weight: 900;
}

.tcc-field {
  margin-top: 18px;
}

.tcc-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--tcc-brown);
  font-size: 13px;
  font-weight: 900;
}

.tcc-segment,
.tcc-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.tcc-segment button,
.tcc-type-card {
  min-height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(58, 40, 31, 0.14);
  background: #fff;
  color: var(--tcc-brown);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.tcc-segment button.is-active,
.tcc-type-card.is-active {
  background: var(--tcc-brown);
  color: var(--tcc-cream);
  border-color: var(--tcc-brown);
}

.tcc-primary-action,
.tcc-secondary-action,
.tcc-story-action {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 18px;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tcc-primary-action {
  background: var(--tcc-brown);
  color: var(--tcc-cream) !important;
  box-shadow: 0 14px 34px rgba(58, 40, 31, 0.18);
}

.tcc-primary-action:disabled {
  opacity: 0.65;
  cursor: wait;
}

.tcc-secondary-action {
  background: transparent;
  color: var(--tcc-brown) !important;
  border: 1px solid rgba(58, 40, 31, 0.18);
  margin-top: 10px;
}

.tcc-story-action {
  background: #fff;
  color: var(--tcc-brown) !important;
  border: 1px solid rgba(58, 40, 31, 0.12);
}

.tcc-sheet-cart-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.tcc-sheet-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(58, 40, 31, 0.10);
  border-radius: 18px;
  background: #fff;
}

.tcc-sheet-cart-item strong,
.tcc-sheet-cart-item span,
.tcc-sheet-cart-item em {
  display: block;
}

.tcc-sheet-cart-item strong {
  color: var(--tcc-brown);
  font-size: 15px;
  line-height: 1.2;
}

.tcc-sheet-cart-item span,
.tcc-sheet-cart-item em {
  color: var(--tcc-text);
  font-size: 12px;
  margin-top: 4px;
  font-style: normal;
}

.tcc-sheet-cart-right {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.tcc-sheet-cart-right > b {
  color: var(--tcc-brown);
  font-size: 15px;
  font-weight: 900;
}

.tcc-input,
.tcc-textarea {
  width: 100%;
  border: 1px solid rgba(58, 40, 31, 0.14);
  border-radius: 17px;
  background: #fff;
  color: var(--tcc-brown);
  outline: none;
  font-size: 15px;
  font-weight: 700;
}

.tcc-input {
  height: 48px;
  padding: 0 14px;
}

.tcc-textarea {
  min-height: 82px;
  resize: vertical;
  padding: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.tcc-error {
  display: none;
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 14px;
  background: #fff0f0;
  color: #a83a3a;
  font-size: 13px;
  font-weight: 800;
}

.tcc-error.is-visible {
  display: block;
}

.tcc-success-sheet {
  text-align: center;
}

.tcc-success-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: var(--tcc-sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
}

.tcc-toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  z-index: 10000;
  transform: translate(-50%, 30px);
  opacity: 0;
  pointer-events: none;
  min-width: 220px;
  max-width: calc(100% - 34px);
  background: var(--tcc-cream-2);
  color: var(--tcc-brown);
  border: 1px solid rgba(58, 40, 31, 0.12);
  border-radius: 18px;
  padding: 13px 16px;
  box-shadow: 0 18px 48px rgba(58, 40, 31, 0.24);
  transition: all 0.2s ease;
}

.tcc-toast strong,
.tcc-toast span {
  display: block;
}

.tcc-toast strong {
  font-size: 13px;
  font-weight: 900;
}

.tcc-toast span {
  color: var(--tcc-text);
  font-size: 12px;
  margin-top: 3px;
  font-weight: 700;
}

.tcc-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media only screen and (min-width: 760px) {
  #tcc-moka-app {
    padding: 24px 0 40px;
  }

  .tcc-qr-order-shell {
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(58, 40, 31, 0.14);
  }

  .tcc-app-hero {
    border-radius: 38px 38px 32px 32px;
  }
}

@media only screen and (max-width: 520px) {
  .tcc-app-hero {
    min-height: 208px;
  }

  .tcc-app-hero-content {
    min-height: 208px;
    padding: 22px 18px;
  }

  .tcc-app-hero h1 {
    font-size: 31px;
  }

  .tcc-app-hero p {
    font-size: 13.5px;
  }

  .tcc-app-main {
    padding-left: 12px;
    padding-right: 12px;
  }

  .tcc-search-wrap {
    top: 70px;
  }

  .tcc-category-tabs {
    top: 132px;
  }

  .tcc-menu-row {
    grid-template-columns: 74px 1fr;
    gap: 10px;
    min-height: 100px;
  }

  .tcc-row-copy h3 {
    font-size: 16.5px;
  }

  .tcc-row-copy-top span {
    display: none;
  }

  .tcc-cart-summary {
    grid-template-columns: 40px 1fr auto;
  }

  .tcc-cart-cta {
    height: 36px;
    padding: 0 13px;
  }

  .tcc-sheet-overlay {
    padding: 10px;
  }

  .tcc-sheet {
    border-radius: 28px;
  }
}


/* v3.5 quantity controls: force visible minus, number and plus */
#tcc-moka-app .tcc-inline-qty,
#tcc-moka-app .tcc-inline-qty.small,
.tcc-sheet .tcc-inline-qty,
.tcc-sheet .tcc-inline-qty.small {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 112px !important;
  min-width: 112px !important;
  max-width: 112px !important;
  height: 38px !important;
  padding: 3px 5px !important;
  border-radius: 999px !important;
  background: var(--tcc-brown) !important;
  color: var(--tcc-cream) !important;
  overflow: visible !important;
  gap: 0 !important;
}

#tcc-moka-app .tcc-inline-qty button,
.tcc-sheet .tcc-inline-qty button {
  flex: 0 0 30px !important;
  width: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 999px !important;
  background: rgba(247, 239, 227, 0.14) !important;
  color: var(--tcc-cream) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 19px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#tcc-moka-app .tcc-inline-qty b,
.tcc-sheet .tcc-inline-qty b {
  flex: 0 0 32px !important;
  width: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  height: 30px !important;
  color: var(--tcc-cream) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  line-height: 30px !important;
  font-weight: 900 !important;
  text-align: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.tcc-sheet-cart-right {
  min-width: 118px !important;
}

.tcc-success-sheet {
  padding-top: 34px !important;
}

.tcc-success-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--tcc-sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
