/* TrumpRx Pharmaceuticals — E-commerce UI */

.store-container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .store-container { padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: #1e1e1c;
  color: #f5f4eb;
}
.btn-primary:hover { background: #2a2a27; }
.btn-secondary {
  background: transparent;
  color: #1e1e1c;
  border: 1px solid rgba(30, 30, 28, 0.2);
}
.btn-secondary:hover { background: rgba(30, 30, 28, 0.05); }
.btn-accent {
  background: #b8860b;
  color: #fff;
}
.btn-accent:hover { background: #9a7209; }
.btn-sm { height: 2.25rem; padding: 0 1rem; font-size: 0.8125rem; }
.btn-block { width: 100%; }

/* Product cards */
.product-card {
  display: flex;
  flex-direction: column;
  background: #f5f4eb;
  border: 1px solid rgba(30, 30, 28, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  height: 100%;
}
.product-card:hover {
  box-shadow: 0 8px 30px rgba(30, 30, 28, 0.08);
  border-color: rgba(30, 30, 28, 0.18);
}
.product-card__media {
  aspect-ratio: 4/3;
  background: #e6e4d7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
}
.product-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: #1e1e1c;
  text-decoration: none;
}
.product-card__title:hover { text-decoration: underline; }
.product-card__generic {
  font-size: 0.8125rem;
  color: rgba(30, 30, 28, 0.55);
  margin-top: 0.25rem;
}
.product-card__price-row {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-card__price {
  font-family: ui-monospace, monospace;
  font-size: 1.125rem;
  font-weight: 600;
}
.product-card__actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(30, 30, 28, 0.08);
  border-bottom: 1px solid rgba(30, 30, 28, 0.08);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(30, 30, 28, 0.65);
}
.trust-bar__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #b8860b;
}

/* Cart */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(30, 30, 28, 0.5);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(30, 30, 28, 0.1);
}
.cart-table td {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(30, 30, 28, 0.08);
  vertical-align: middle;
}
.cart-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-product__img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #e6e4d7;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.qty-input {
  width: 4rem;
  height: 2.5rem;
  text-align: center;
  border: 1px solid rgba(30, 30, 28, 0.15);
  border-radius: 0.5rem;
  background: #f5f4eb;
  font-family: ui-monospace, monospace;
}

/* Checkout */
.checkout-grid {
  display: grid;
  gap: 2rem;
}
.checkout-grid--checkout {
  grid-template-areas:
    "summary"
    "form";
}
.checkout-grid--checkout .order-summary {
  grid-area: summary;
}
.checkout-grid--checkout .checkout-grid__form {
  grid-area: form;
}
@media (min-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr 380px;
    align-items: start;
  }
  .checkout-grid--checkout {
    grid-template-areas: "form summary";
    grid-template-columns: 1fr 380px;
  }
}
.checkout-panel {
  background: #fff;
  border: 1px solid rgba(30, 30, 28, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .checkout-panel { padding: 2rem; }
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: #1e1e1c;
}
.form-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid rgba(30, 30, 28, 0.15);
  border-radius: 0.75rem;
  background: #f5f4eb;
  font-size: 0.9375rem;
  color: #1e1e1c;
}
.form-input:focus {
  outline: 2px solid #1e1e1c;
  outline-offset: 1px;
}
.form-input.is-error { border-color: #b91c1c; }
.form-error {
  font-size: 0.8125rem;
  color: #b91c1c;
  margin-top: 0.25rem;
}
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
  .form-row--3 { grid-template-columns: 2fr 1fr 1fr; }
}

/* Payment options */
.payment-option {
  display: block;
  border: 2px solid rgba(30, 30, 28, 0.12);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 0.75rem;
}
.payment-option:hover { border-color: rgba(30, 30, 28, 0.25); }
.payment-option:has(input:checked) {
  border-color: #1e1e1c;
  background: rgba(30, 30, 28, 0.03);
}
.payment-option input { margin-right: 0.75rem; accent-color: #1e1e1c; }
.payment-option__title { font-weight: 600; font-size: 0.9375rem; }
.payment-option__desc { font-size: 0.8125rem; color: rgba(30, 30, 28, 0.6); margin-top: 0.25rem; }

.bank-details {
  background: #1e1e1c;
  color: #f5f4eb;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1rem;
}
.bank-details dt {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-top: 0.75rem;
}
.bank-details dt:first-child { margin-top: 0; }
.bank-details dd {
  font-family: ui-monospace, monospace;
  font-size: 1rem;
  margin: 0.125rem 0 0;
  word-break: break-word;
}

/* Order summary sidebar */
.order-summary {
  position: static;
}
@media (min-width: 1024px) {
  .order-summary {
    position: sticky;
    top: 6rem;
  }
}
.order-summary__line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.order-summary__total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid rgba(30, 30, 28, 0.1);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Flash alerts */
.flash {
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.flash--success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.flash--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 4px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.125rem;
  text-align: center;
  background: #b8860b;
  color: #fff;
  border-radius: 9999px;
}

/* Page headers */
.page-header {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(30, 30, 28, 0.08);
  margin-bottom: 2rem;
}
.page-header__title {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-header__subtitle {
  margin-top: 0.5rem;
  color: rgba(30, 30, 28, 0.65);
}

/* Breadcrumb */
.breadcrumb {
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  color: rgba(30, 30, 28, 0.55);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { text-decoration: underline; }

/* Product detail */
.product-detail {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}
.product-detail__gallery {
  background: #e6e4d7;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  max-height: 320px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(30, 30, 28, 0.08);
}
@media (min-width: 768px) {
  .product-detail__gallery {
    max-height: 400px;
  }
}
@media (min-width: 1024px) {
  .product-detail__gallery {
    max-height: 480px;
    max-width: 520px;
    aspect-ratio: 1;
  }
}
.product-detail__gallery img {
  width: auto;
  height: auto;
  max-height: 240px;
  max-width: 90%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .product-detail__gallery img {
    max-height: 320px;
  }
}
@media (min-width: 1024px) {
  .product-detail__gallery img {
    max-height: 400px;
  }
}
.product-detail__title {
  font-family: Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
}
.product-detail__actions .qty-field {
  flex: 0 0 auto;
}
.product-detail__actions .btn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 1 1 100%;
}
@media (min-width: 640px) {
  .product-detail__actions .btn-actions {
    flex: 1 1 auto;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  border: 1px solid rgba(30, 30, 28, 0.15);
}
.badge--gold { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.badge--green { background: #dcfce7; color: #166534; }

/* Steps */
.checkout-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
  font-family: ui-monospace, monospace;
}
.checkout-steps span {
  opacity: 0.4;
}
.checkout-steps span.is-active {
  opacity: 1;
  font-weight: 600;
}
.checkout-steps span.is-done { opacity: 0.7; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border: 1px dashed rgba(30, 30, 28, 0.15);
  border-radius: 1rem;
}
.empty-state__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

/* How it works — horizontal cards on desktop */
.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .how-it-works__steps {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    margin-top: 3.5rem;
  }
  .how-it-works__steps .checkout-panel {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* Footer store */
.footer-store {
  background: #1e1e1c;
  color: #f5f4eb;
  margin-top: 4rem;
}
.footer-store a { color: #f5f4eb; opacity: 0.8; }
.footer-store a:hover { opacity: 1; }

.footer-store__columns {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-store__columns {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem 2.5rem;
  }
  .footer-store__columns > div {
    flex: 1 1 140px;
    min-width: 0;
  }
}
@media (min-width: 1200px) {
  .footer-store__columns--wide {
    flex-wrap: nowrap;
    gap: 2rem;
  }
}

/* Home content sections */
.home-content-section {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .home-content-section {
    padding: 5.5rem 0;
  }
}
.home-content-section__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .home-content-section__inner {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }
  .home-content-section--reverse .home-content-section__inner {
    flex-direction: row-reverse;
  }
  .home-content-section__media,
  .home-content-section__body {
    flex: 1 1 0;
    min-width: 0;
  }
}
.home-content-section__media {
  width: 100%;
  max-width: 420px;
}
.home-content-section__img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: 1rem;
}
.home-content-section__eyebrow {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b8860b;
}
.home-content-section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-top: 0.75rem;
  color: #1e1e1c;
}
.home-content-section__text {
  margin-top: 1rem;
  color: rgba(30, 30, 28, 0.78);
  line-height: 1.7;
  font-size: 0.9375rem;
}
@media (min-width: 640px) {
  .home-content-section__text {
    font-size: 1rem;
  }
}
.home-content-section__list {
  margin-top: 1.25rem;
  padding-left: 0;
  list-style: none;
}
.home-content-section__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(30, 30, 28, 0.85);
}
.home-content-section__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #b8860b;
  font-weight: 700;
}
.home-content-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Home price comparison grid */
.home-compare__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .home-compare__grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .home-compare__card {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
  }
}
@media (min-width: 1024px) {
  .home-compare__grid {
    flex-wrap: nowrap;
  }
  .home-compare__card {
    flex: 1 1 0;
  }
}
.home-compare__card {
  display: block;
  text-decoration: none;
  padding: 1.25rem;
}
.home-compare__thumb {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.browse-internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(30, 30, 28, 0.08);
  font-size: 0.8125rem;
}
.browse-internal-links a {
  color: rgba(30, 30, 28, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.browse-internal-links a:hover {
  color: #1e1e1c;
}

/* Hero store */
.hero-store {
  background: linear-gradient(135deg, #1e1e1c 0%, #2d2d28 50%, #1a1a18 100%);
  color: #f5f4eb;
  position: relative;
  overflow: hidden;
}
.hero-store::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 90% 50%, rgba(184, 134, 11, 0.12), transparent);
  pointer-events: none;
}

/* ==========================================================================
   Global layout & responsive utilities
   ========================================================================== */

.store-body {
  overflow-x: hidden;
}

.page-section {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .page-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }
}

.store-container--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 639px) {
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-group .btn {
    width: 100%;
  }
}

.prose-store {
  color: rgba(30, 30, 28, 0.8);
  line-height: 1.7;
}
.prose-store section + section {
  margin-top: 2rem;
}
.prose-store h2 {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1e1e1c;
}
.prose-store p {
  margin-top: 1rem;
}
.prose-store a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .breadcrumb {
    white-space: normal;
  }
}

/* Search bar overflow fix */
.search-cluster input[type="search"] {
  min-width: 0;
}

/* Navbar mobile */
.nav-mobile-search {
  display: block;
  padding: 0 1.5rem 1rem;
  border-bottom: 1px solid rgba(30, 30, 28, 0.08);
  background: inherit;
}
@media (min-width: 1024px) {
  .nav-mobile-search {
    display: none;
  }
}
header.nav--hero,
header[data-navbar].nav--hero {
  background: rgba(30, 30, 28, 0.85);
  backdrop-filter: blur(8px);
}
@media (min-width: 1024px) {
  header.nav--hero,
  header[data-navbar].nav--hero {
    background: transparent;
    backdrop-filter: none;
  }
}

/* Browse toolbar */
.browse-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .browse-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Product grid */
.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-card__media img {
    padding: 0.75rem;
  }
  .product-card__actions .btn {
    width: 100%;
  }
}

/* Cart: desktop table / mobile cards */
.cart-desktop {
  display: none;
}
.cart-mobile {
  display: block;
}
@media (min-width: 768px) {
  .cart-desktop {
    display: block;
  }
  .cart-mobile {
    display: none;
  }
}

.cart-mobile-item {
  background: #fff;
  border: 1px solid rgba(30, 30, 28, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.cart-mobile-item__top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cart-mobile-item__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #e6e4d7;
  border-radius: 0.5rem;
  padding: 0.35rem;
  flex-shrink: 0;
}
.cart-mobile-item__meta {
  flex: 1;
  min-width: 0;
}
.cart-mobile-item__name {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.3;
}
.cart-mobile-item__generic {
  font-size: 0.8125rem;
  color: rgba(30, 30, 28, 0.55);
  margin-top: 0.25rem;
}
.cart-mobile-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(30, 30, 28, 0.08);
}
.cart-mobile-item__remove {
  font-size: 0.8125rem;
  color: rgba(30, 30, 28, 0.5);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.cart-mobile-item__remove:hover {
  color: #b91c1c;
}

.cart-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .cart-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cart-footer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 640px) {
  .cart-footer__actions {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
}
@media (max-width: 639px) {
  .cart-footer__actions .btn {
    width: 100%;
  }
}

/* Checkout steps */
.checkout-steps {
  flex-wrap: wrap;
  row-gap: 0.25rem;
}
@media (max-width: 400px) {
  .checkout-steps {
    font-size: 0.75rem;
  }
}

.checkout-success-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .checkout-success-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.confirmation-hero {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .confirmation-hero {
    padding: 2rem;
  }
}

/* Hero homepage */
.hero-store {
  min-height: 70vh;
}
@media (min-width: 768px) {
  .hero-store {
    min-height: 88vh;
  }
}
.hero-store__title {
  font-family: Georgia, serif;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 479px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
  }
}

.trust-bar--stack-mobile {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .trust-bar--stack-mobile {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
}

/* Footer */
.footer-store .store-container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-store .store-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.footer-store__email {
  word-break: break-all;
}

/* Featured header */
.featured-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .featured-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (max-width: 639px) {
  .product-detail__actions .btn-actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }
}

.page-header {
  padding: 1.25rem 0 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .page-header {
    padding: 2rem 0 1.5rem;
    margin-bottom: 2rem;
  }
}

.empty-state {
  padding: 2.5rem 1.25rem;
}
@media (min-width: 768px) {
  .empty-state {
    padding: 4rem 2rem;
  }
}
