.golden-cart-template {
  --gold: #c89b3c;
  --gold-dark: #9b7222;
  --gold-soft: #f8f1e3;
  --gold-border: #e8d3a4;
  --text: #1d1d1f;
  --muted: #747474;
  --border: #ece7dc;
  --surface: #ffffff;
  --soft: #faf9f6;
  --danger: #c14848;
  --shadow: 0 16px 45px rgba(40, 31, 13, 0.08);
}

.golden-cart-template * {
  box-sizing: border-box;
}

.golden-cart-template {
  scroll-behavior: smooth;
}

.golden-cart-template {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
}

.golden-cart-template button,
.golden-cart-template input {
  font: inherit;
}

.golden-cart-template button,
.golden-cart-template a {
  -webkit-tap-highlight-color: transparent;
}

.golden-cart-template a {
  color: inherit;
  text-decoration: none;
}

.golden-cart-template button {
  cursor: pointer;
}

.golden-cart-template .container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}


.golden-cart-template .checkout-progress {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.golden-cart-template .checkout-progress .container {
  display: flex;
  justify-content: center;
}

.golden-cart-template .checkout-steps {
  width: min(100%, 560px);
  min-height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.golden-cart-template .checkout-steps i {
  width: clamp(24px, 5vw, 75px);
  height: 1px;
  background: var(--border);
  margin: 0 8px 23px;
}

.golden-cart-template .step {
  display: grid;
  place-items: center;
  min-width: 78px;
  color: #aaa;
}

.golden-cart-template .step span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  font-size: 13px;
  background: #fff;
}

.golden-cart-template .step p {
  margin: 7px 0 0;
  font-size: 11px;
  white-space: nowrap;
}

.golden-cart-template .step.active {
  color: var(--gold-dark);
}

.golden-cart-template .step.active span {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.golden-cart-template .page {
  padding-block: 52px 80px;
}

.golden-cart-template .page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.golden-cart-template .eyebrow {
  display: block;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.golden-cart-template .page-heading h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
}

.golden-cart-template .page-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.golden-cart-template .cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.golden-cart-template .cart-card,
.golden-cart-template .summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.golden-cart-template .cart-card {
  overflow: hidden;
}

.golden-cart-template .card-heading {
  min-height: 86px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.golden-cart-template .card-heading h2,
.golden-cart-template .summary-card h2 {
  margin: 0;
  font-size: 18px;
}

.golden-cart-template .card-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.golden-cart-template .text-button {
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.golden-cart-template .text-button.danger {
  color: var(--danger);
}

.golden-cart-template .cart-item {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 20px;
  padding: 24px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.golden-cart-template .cart-item + .cart-item {
  border-top: 1px solid var(--border);
}

.golden-cart-template .cart-item.removing {
  opacity: 0;
  transform: translateX(-15px);
}

.golden-cart-template .product-image {
  min-height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  background: var(--soft);
  overflow: hidden;
}


.golden-cart-template .product-image svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.golden-cart-template .image-one {
  background: #fbf8f0;
}

.golden-cart-template .image-two {
  background: #f6f3ed;
}

.golden-cart-template .image-three {
  background: #fcf8f2;
}

.golden-cart-template .product-info {
  min-width: 0;
}

.golden-cart-template .product-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.golden-cart-template .product-category {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
}

.golden-cart-template .product-top h3 {
  margin: 0;
  font-size: 16px;
}

.golden-cart-template a.remove-btn {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: grid !important;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: #9a9a9a !important;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  transition: 0.2s ease;
}

.golden-cart-template .remove-btn .remove-icon {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  line-height: 1;
}

.golden-cart-template a.remove-btn:hover {
  color: var(--danger);
  border-color: #e6b9b9;
  background: #fffafa;
}

.golden-cart-template .product-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 11px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
}

.golden-cart-template .product-meta span {
  color: #444;
}

.golden-cart-template .product-actions {
  margin-top: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

/* Fixed-size quantity controller. Explicit pixel values and !important
   prevent the active theme and WooCommerce button rules from distorting it. */
.golden-cart-template .product-actions .golden-quantity {
  direction: rtl !important;
  display: grid !important;
  grid-template-columns: 38px 44px 38px !important;
  grid-template-rows: 36px !important;
  align-items: stretch !important;
  justify-items: stretch !important;
  width: 122px !important;
  min-width: 122px !important;
  max-width: 122px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #ece7dc !important;
  border-radius: 11px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
}

.golden-cart-template .product-actions .golden-quantity > .qty-btn {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: #faf9f6 !important;
  color: #4b4b4b !important;
  box-shadow: none !important;
  transform: none !important;
  font-family: Tahoma, "Segoe UI", Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-indent: 0 !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.golden-cart-template .product-actions .golden-quantity > .qty-btn.plus {
  border-left: 1px solid #ece7dc !important;
}

.golden-cart-template .product-actions .golden-quantity > .qty-btn.minus {
  border-right: 1px solid #ece7dc !important;
}

.golden-cart-template .product-actions .golden-quantity > .qty-btn::before,
.golden-cart-template .product-actions .golden-quantity > .qty-btn::after {
  display: none !important;
  content: none !important;
}

.golden-cart-template .product-actions .golden-quantity > .qty-btn > span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  font: inherit !important;
  line-height: 20px !important;
  pointer-events: none !important;
}

.golden-cart-template .product-actions .golden-quantity > .qty-btn:hover,
.golden-cart-template .product-actions .golden-quantity > .qty-btn:focus-visible {
  background: #f8f1e3 !important;
  color: #9b7222 !important;
}

.golden-cart-template .product-actions .golden-quantity > .qty-btn:disabled {
  cursor: not-allowed !important;
  color: #b9b9b9 !important;
  background: #f5f5f5 !important;
  opacity: 1 !important;
}

.golden-cart-template .product-actions .golden-quantity > .quantity {
  direction: ltr !important;
  display: block !important;
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.golden-cart-template .product-actions .golden-quantity input.qty,
.golden-cart-template .product-actions .golden-quantity input.qty-input {
  direction: ltr !important;
  display: block !important;
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  appearance: textfield !important;
  -moz-appearance: textfield !important;
  background: #ffffff !important;
  color: #1d1d1f !important;
  box-shadow: none !important;
  font-family: Tahoma, "Segoe UI", Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 36px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.golden-cart-template .product-actions .golden-quantity input.qty::-webkit-outer-spin-button,
.golden-cart-template .product-actions .golden-quantity input.qty::-webkit-inner-spin-button {
  margin: 0 !important;
  -webkit-appearance: none !important;
}

.golden-cart-template .price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.golden-cart-template .price strong {
  font-size: 17px;
}

.golden-cart-template .price span {
  color: var(--muted);
  font-size: 10px;
}

.golden-cart-template .summary-card {
  position: sticky;
  top: 110px;
  padding: 24px;
}

.golden-cart-template .summary-card > h2 {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.golden-cart-template .coupon-box {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.golden-cart-template .coupon-box label {
  display: block;
  margin-bottom: 8px;
  color: #444;
  font-size: 12px;
  font-weight: 700;
}

.golden-cart-template .coupon-row {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 8px;
}

.golden-cart-template .coupon-row input {
  min-width: 0;
  height: 43px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 11px;
  outline: 0;
  background: #fff;
  font-size: 12px;
  direction: ltr;
  text-align: left;
  text-transform: uppercase;
}

.golden-cart-template .coupon-row input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.12);
}

.golden-cart-template .coupon-row button {
  height: 43px;
  border: 1px solid var(--gold);
  border-radius: 11px;
  background: #fff;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.golden-cart-template .coupon-row button:hover {
  background: var(--gold-soft);
}

.golden-cart-template #couponMessage {
  min-height: 18px;
  margin: 7px 0 0;
  font-size: 10px;
}

.golden-cart-template #couponMessage.success {
  color: #2d8754;
}

.golden-cart-template #couponMessage.error {
  color: var(--danger);
}

.golden-cart-template .summary-lines {
  padding: 18px 0 8px;
  border-bottom: 1px solid var(--border);
}

.golden-cart-template .summary-lines > div,
.golden-cart-template .total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.golden-cart-template .summary-lines > div {
  margin-bottom: 12px;
}

.golden-cart-template .summary-lines span {
  color: var(--muted);
  font-size: 12px;
}

.golden-cart-template .summary-lines p {
  margin: 0;
  font-size: 11px;
}

.golden-cart-template .summary-lines strong {
  font-size: 13px;
}

.golden-cart-template .gold-text {
  color: var(--gold-dark);
  font-weight: 700;
}

.golden-cart-template .discount {
  color: #2d8754;
}

.golden-cart-template .total-row {
  padding: 19px 0;
}

.golden-cart-template .total-row > span {
  font-size: 13px;
  font-weight: 800;
}

.golden-cart-template .total-row p {
  margin: 0;
  color: var(--gold-dark);
  font-size: 11px;
}

.golden-cart-template .total-row strong {
  font-size: 20px;
}

.golden-cart-template .checkout-button,
.golden-cart-template .primary-button {
  min-height: 50px;
  border: 0;
  border-radius: 13px;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 9px 24px rgba(155, 114, 34, 0.18);
  transition: 0.2s ease;
}

.golden-cart-template .checkout-button {
  width: 100%;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.golden-cart-template .checkout-button:hover,
.golden-cart-template .primary-button:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.golden-cart-template .checkout-button:disabled {
  cursor: not-allowed;
  background: #c9c9c9;
  box-shadow: none;
  transform: none;
}

.golden-cart-template .empty-state {
  padding: 75px 24px;
  text-align: center;
}

.golden-cart-template .empty-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid var(--gold-border);
  border-radius: 22px;
  background: var(--gold-soft);
  }

.golden-cart-template .empty-state h2 {
  margin: 0;
  font-size: 21px;
}

.golden-cart-template .empty-state p {
  margin: 8px auto 22px;
  color: var(--muted);
  font-size: 12px;
}

.golden-cart-template .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 12px;
}

.golden-cart-template .toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 12px 17px;
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  background: #fff;
  color: #333;
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.golden-cart-template .toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .golden-cart-template .cart-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .golden-cart-template .cart-item {
    grid-template-columns: 105px 1fr;
  }
}

@media (max-width: 780px) {
  .golden-cart-template .container {
    width: min(100% - 28px, 680px);
  }
.golden-cart-template .page {
    padding-block: 32px 56px;
  }

  .golden-cart-template .page-heading {
    align-items: start;
  }

  .golden-cart-template .cart-layout {
    grid-template-columns: 1fr;
  }

  .golden-cart-template .summary-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .golden-cart-template .checkout-steps {
    min-height: 94px;
    padding: 14px 0;
  }

  .golden-cart-template .step {
    min-width: 68px;
  }

  .golden-cart-template .checkout-steps i {
    width: clamp(18px, 7vw, 48px);
  }

  .golden-cart-template .product-image svg {
    width: 46px;
    height: 46px;
  }

  .golden-cart-template .container {
    width: min(100% - 22px, 520px);
  }

  .golden-cart-template .page-heading {
    display: block;
  }

  .golden-cart-template .page-heading p {
    font-size: 12px;
  }

  .golden-cart-template .cart-card,
  .golden-cart-template .summary-card {
    border-radius: 18px;
  }

  .golden-cart-template .card-heading {
    min-height: 78px;
    padding: 18px;
  }

  .golden-cart-template .cart-item {
    grid-template-columns: 84px 1fr;
    gap: 13px;
    padding: 18px;
  }

  .golden-cart-template .product-image {
    min-height: 102px;
    border-radius: 14px;
  }

.golden-cart-template .product-top h3 {
    font-size: 14px;
  }

  .golden-cart-template .product-meta {
    display: grid;
    gap: 2px;
    margin-top: 7px;
    font-size: 10px;
  }

  .golden-cart-template .product-actions {
    align-items: center;
    gap: 10px;
    margin-top: 13px;
  }

  .golden-cart-template .price {
    display: block;
    text-align: left;
    line-height: 1.25;
  }

  .golden-cart-template .price strong {
    display: block;
    font-size: 14px;
  }

  .golden-cart-template .summary-card {
    padding: 20px;
  }
}

@media (max-width: 395px) {
  .golden-cart-template .cart-item {
    grid-template-columns: 1fr;
  }

  .golden-cart-template .product-image {
    min-height: 145px;
  }

  .golden-cart-template .product-actions {
    align-items: end;
  }
}


.golden-cart-template .fee-row strong,
.golden-cart-template .tax-row strong {
  font-size: 13px;
}

.golden-cart-template .coupon-status-links span {
  display: block;
}

.golden-cart-collaterals {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
}

.golden-cart-collaterals:empty {
  display: none;
}

.golden-cart-template .woocommerce-error,
.golden-cart-template .woocommerce-info,
.golden-cart-template .woocommerce-message {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto;
}


.golden-cart-template .cart-empty.woocommerce-info {
  display: none;
}

.golden-cart-template .golden-cart-extension-output:empty {
  display: none;
}

.golden-cart-template .golden-cart-extension-output {
  margin-top: 12px;
}

.golden-cart-collaterals .cross-sells {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.golden-cart-collaterals .cross-sells > h2 {
  margin: 0 0 18px;
  font-size: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .golden-cart-template *,
  .golden-cart-template *::before,
  .golden-cart-template *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


.golden-cart-template .empty-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* WooCommerce integration without changing the original visual design. */
.golden-cart-template {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

.golden-cart-template .woocommerce-cart-form {
  margin: 0;
}

.golden-cart-template .product-image > a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.golden-cart-template .product-image img {
  width: 100%;
  height: 132px;
  display: block;
  object-fit: contain;
  padding: 10px;
}

.golden-cart-template .product-meta:empty {
  display: none;
}

.golden-cart-template .product-meta dl.variation {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 11px 0 0;
  padding: 0;
}

.golden-cart-template .product-meta dl.variation dt,
.golden-cart-template .product-meta dl.variation dd {
  float: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
}

.golden-cart-template .product-meta dl.variation dt {
  color: #444;
}

.golden-cart-template .product-meta dl.variation dd + dt {
  margin-right: 14px;
}

.golden-cart-template .product-meta p,
.golden-cart-template .product-meta .backorder_notification {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.golden-cart-template .price .woocommerce-Price-amount,
.golden-cart-template .summary-card .woocommerce-Price-amount {
  font: inherit;
  color: inherit;
}

.golden-cart-template .price .woocommerce-Price-currencySymbol,
.golden-cart-template .summary-card .woocommerce-Price-currencySymbol,
.golden-cart-template .price .tax_label,
.golden-cart-template .summary-card .tax_label {
  display: none;
}

.golden-cart-template .coupon-status-links a {
  margin-right: 5px;
  color: var(--danger);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.golden-cart-template .coupon-row input:disabled,
.golden-cart-template .coupon-row button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.golden-cart-template .golden-cart-core-actions {
  display: none;
}

.golden-cart-template.is-submitting {
  cursor: progress;
}

.golden-cart-template.is-submitting button,
.golden-cart-template.is-submitting input,
.golden-cart-template.is-submitting a.checkout-button {
  pointer-events: none;
}

.golden-cart-template .woocommerce-notices-wrapper,
.golden-cart-template + .woocommerce-notices-wrapper {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto;
}

@media (max-width: 560px) {
  .golden-cart-template .product-image img {
    height: 102px;
  }

  .golden-cart-template .product-meta dl.variation {
    display: grid;
    gap: 2px;
    margin-top: 7px;
  }
}

@media (max-width: 395px) {
  .golden-cart-template .product-image img {
    height: 145px;
  }
}

/* Hide quantity controls injected by the active theme/WooCommerce scripts.
   The Golden Cart already provides its own fixed left/right controls. */
.golden-cart-template .product-actions .golden-quantity > .quantity::before,
.golden-cart-template .product-actions .golden-quantity > .quantity::after,
.golden-cart-template .product-actions .golden-quantity > .quantity > button,
.golden-cart-template .product-actions .golden-quantity > .quantity > .plus,
.golden-cart-template .product-actions .golden-quantity > .quantity > .minus,
.golden-cart-template .product-actions .golden-quantity > .quantity > .qty-button,
.golden-cart-template .product-actions .golden-quantity > .quantity > .quantity-button,
.golden-cart-template .product-actions .golden-quantity > .quantity > [class*="quantity-plus"],
.golden-cart-template .product-actions .golden-quantity > .quantity > [class*="quantity-minus"],
.golden-cart-template .product-actions .golden-quantity > .quantity > [class*="qty-plus"],
.golden-cart-template .product-actions .golden-quantity > .quantity > [class*="qty-minus"] {
  display: none !important;
  content: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
