.abc-banner-calculator {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
  container-type: inline-size;
}

.abc-banner-calculator *,
.abc-banner-calculator *::before,
.abc-banner-calculator *::after {
  box-sizing: border-box;
}

.abc-banner-calculator__header {
  margin-bottom: 28px;
}

.abc-banner-calculator__header h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.abc-banner-calculator__header p {
  margin: 0;
  max-width: 720px;
  color: #475569;
  font-size: 1.02rem;
}

.abc-banner-grid {
  display: grid;
  gap: 16px;
}

.abc-banner-grid--one {
  grid-template-columns: 1fr;
}

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

.abc-banner-calculator label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.abc-banner-calculator label span {
  font-weight: 700;
  color: #0f172a;
}

.abc-banner-calculator input,
.abc-banner-calculator select {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #d0d7de;
  border-radius: 14px;
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.abc-banner-calculator input:focus,
.abc-banner-calculator select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.abc-sticker-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 390px);
  gap: 28px;
  align-items: start;
}

.abc-sticker-layout__controls {
  display: grid;
  gap: 24px;
}

.abc-sticker-section {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #f8fafc;
}

.abc-sticker-section__head {
  margin-bottom: 18px;
}

.abc-sticker-section__head h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.abc-sticker-section__head p {
  margin: 0;
  color: #64748b;
}

.abc-sticker-size-options,
.abc-sticker-quantity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.abc-sticker-chip,
.abc-sticker-quantity-option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid #dbe3ea;
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.abc-sticker-chip:hover,
.abc-sticker-quantity-option:hover {
  border-color: #94a3b8;
  transform: translateY(-1px);
  font-weight: 700;
}

.abc-sticker-chip:hover .abc-sticker-chip__label,
.abc-sticker-chip:hover .abc-sticker-chip__meta,
.abc-sticker-quantity-option:hover .abc-sticker-quantity-option__label,
.abc-sticker-quantity-option:hover .abc-sticker-quantity-option__meta,
.abc-sticker-chip:focus-visible .abc-sticker-chip__label,
.abc-sticker-chip:focus-visible .abc-sticker-chip__meta,
.abc-sticker-quantity-option:focus-visible .abc-sticker-quantity-option__label,
.abc-sticker-quantity-option:focus-visible .abc-sticker-quantity-option__meta {
  font-weight: 700;
}

.abc-sticker-chip:focus-visible,
.abc-sticker-quantity-option:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.abc-sticker-chip.is-active,
.abc-sticker-quantity-option.is-active {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.abc-sticker-chip__label,
.abc-sticker-quantity-option__label {
  font-weight: 800;
}

.abc-sticker-chip__meta,
.abc-sticker-quantity-option__meta {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.35;
}

.abc-sticker-layout__summary {
  min-width: 0;
}

.abc-sticker-custom-size-grid,
.abc-sticker-custom-quantity-grid,
.abc-sticker-upload-grid {
  margin-top: 18px;
}

.abc-sticker-order-card {
  position: sticky;
  top: 24px;
  padding: 24px;
  border: 1px solid #dbe3ea;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.08);
}

.abc-sticker-order-card__price-wrap {
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.abc-sticker-order-card__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.abc-sticker-order-card__price {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.abc-sticker-order-card__meta {
  margin-top: 10px;
  color: #475569;
  font-weight: 600;
}

.abc-sticker-order-card__rows {
  display: grid;
  gap: 12px;
  padding: 18px 0;
}

.abc-sticker-order-card__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  color: #334155;
}

.abc-sticker-order-card__row span {
  color: #64748b;
}

.abc-sticker-order-card__row strong {
  text-align: right;
  max-width: 68%;
  overflow-wrap: anywhere;
}

.abc-banner-alert {
  margin-top: 16px;
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
}

.abc-banner-alert p {
  margin: 0 0 8px;
}

.abc-banner-alert p:last-child {
  margin-bottom: 0;
}

.abc-banner-actions {
  margin-top: 18px;
}

.abc-banner-actions--stacked {
  display: grid;
  gap: 10px;
}

.abc-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.abc-banner-button--full {
  width: 100%;
}

.abc-banner-actions__note {
  margin: 0;
  color: #64748b;
  font-size: 0.94rem;
}

.abc-cart-artwork-preview,
.abc-cart-artwork-thumb {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid #dbe3ea;
  border-radius: 10px;
  background: #fff;
}

.abc-cart-artwork-thumb {
  width: 96px;
  height: 96px;
}

@container (max-width: 900px) {
  .abc-sticker-layout {
    grid-template-columns: 1fr;
  }

  .abc-sticker-order-card {
    position: static;
  }
}

@container (max-width: 640px) {
  .abc-sticker-size-options,
  .abc-sticker-quantity-grid,
  .abc-banner-grid--two {
    grid-template-columns: 1fr;
  }

  .abc-sticker-order-card__row {
    flex-direction: column;
  }

  .abc-sticker-order-card__row strong {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .abc-banner-calculator {
    padding: 20px;
    border-radius: 20px;
  }

  .abc-sticker-section {
    padding: 18px;
  }

  .abc-banner-grid--two {
    grid-template-columns: 1fr;
  }

  .abc-sticker-order-card__row {
    flex-direction: column;
  }

  .abc-sticker-order-card__row strong {
    text-align: left;
  }
}

.site-header .site-branding .custom-logo-link,
#site-header .site-branding .custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-header .site-branding .custom-logo-link::after,
#site-header .site-branding .custom-logo-link::after {
  content: "Sierra Stickers";
  color: #000;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.site-header .site-branding .custom-logo,
#site-header .site-branding .custom-logo {
  width: 58px;
  max-width: 58px;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .site-header .site-branding .custom-logo-link,
  #site-header .site-branding .custom-logo-link {
    gap: 8px;
  }

  .site-header .site-branding .custom-logo-link::after,
  #site-header .site-branding .custom-logo-link::after {
    font-size: 18px;
  }

  .site-header .site-branding .custom-logo,
  #site-header .site-branding .custom-logo {
    width: 42px;
    max-width: 42px;
  }
}

.entry-title,
.page .entry-title,
.single .entry-title {
  display: none !important;
}

.site-footer.dynamic-footer,
#site-footer.site-footer {
  display: none !important;
}

.sierra-site-footer {
  margin-top: 48px;
  background: #5d2ca8;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.sierra-site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 38px;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: start;
}

.sierra-site-footer__brand {
  display: grid;
  gap: 14px;
}

.sierra-site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
}

.sierra-site-footer__logo {
  width: 56px;
  height: auto;
  border-radius: 12px;
  background: #fff;
}

.sierra-site-footer__brand-text {
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.sierra-site-footer__tagline {
  margin: 0;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
}

.sierra-site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sierra-site-footer__links h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1rem;
}

.sierra-site-footer__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sierra-site-footer__links a {
  color: rgba(255, 255, 255, 0.92) !important;
  text-decoration: none;
}

.sierra-site-footer__links a:hover,
.sierra-site-footer__links a:focus-visible,
.sierra-site-footer__logo-link:hover,
.sierra-site-footer__logo-link:focus-visible {
  color: #fff !important;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .sierra-site-footer__inner,
  .sierra-site-footer__links {
    grid-template-columns: 1fr;
  }

  .sierra-site-footer__inner {
    padding: 30px 18px 34px;
  }
}
