:root {
  --greenix: #38b09d;
  --greenix-dark: #247f72;
  --greenix-light: #4dc9b5;
  --greenix-soft: rgba(56, 176, 157, 0.12);
  --ink: #122033;
  --muted: #6b7280;
  --card: #ffffff;
  --border: #e8f1ef;
  --danger: #b91c1c;
  --success: #15803d;
  --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.shop-page,
.cart-page,
.checkout-page,
.thank-you-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 176, 157, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(56, 176, 157, 0.08), transparent 35%),
    linear-gradient(180deg, #fbfffe 0%, #f5fbfa 100%);
}

.shop-container,
.cart-container,
.checkout-container,
.thank-you-container {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.shop-bg-orb,
.shop-bg-shape,
.cart-bg-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(56, 176, 157, 0.1);
}

.orb-one,
.shape-one {
  width: 450px;
  height: 450px;
  right: -180px;
  top: -80px;
}

.orb-two,
.shape-two {
  width: 320px;
  height: 320px;
  left: -140px;
  bottom: 200px;
}

.shop-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--greenix-soft);
  color: var(--greenix-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-shop-primary,
.btn-shop-secondary,
.btn-shop-disabled {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-weight: 900;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-shop-primary {
  width: 100%;
  border: 0;
  background: var(--greenix);
  color: #ffffff;
}

.btn-shop-primary:hover {
  background: var(--greenix-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-shop-secondary {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--greenix-dark);
}

.btn-shop-secondary:hover {
  border-color: var(--greenix);
  background: var(--greenix);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-shop-disabled {
  width: 100%;
  border: 0;
  background: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
}

.shop-hero-section {
  padding: 60px 0 30px;
}

.shop-hero-container {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.shop-hero-content,
.shop-hero,
.cart-hero {
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(56, 176, 157, 0.1), rgba(255, 255, 255, 0.96)),
    #ffffff;
  box-shadow: var(--shadow-md);
}

.shop-hero-content {
  padding: 55px;
}

.shop-hero,
.cart-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2.5rem;
}

.compact-store-hero {
  padding: 2.1rem;
}

.shop-hero-content h1,
.shop-hero h1,
.cart-hero h1,
.thank-you-card h1 {
  margin: 20px 0 0.8rem;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.shop-hero p,
.cart-hero p,
.shop-hero-content p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.8;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.hero-btn {
  min-width: 180px;
}

.shop-cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  background: #ffffff;
  color: var(--greenix-dark);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s ease;
}

.shop-cart-link:hover {
  border-color: var(--greenix);
  background: var(--greenix);
  color: #ffffff;
  transform: translateY(-2px);
}

.shop-hero-panel {
  display: grid;
  gap: 20px;
}

.hero-panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-panel-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.hero-panel-card.main {
  min-height: 220px;
  padding: 30px;
}

.hero-panel-card.main span,
.hero-panel-card.mini span {
  color: var(--greenix);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-panel-card.main strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.8rem;
}

.hero-panel-card.main p {
  margin-top: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-panel-card.mini {
  padding: 20px;
}

.hero-panel-card.mini strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--ink);
  font-size: 1.1rem;
}

.shop-main {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}

.shop-toolbar-section {
  margin-bottom: 40px;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.shop-search-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.shop-search-wrap i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #94a3b8;
}

.shop-search-wrap input {
  width: 100%;
  height: 56px;
  padding: 0 20px 0 50px;
  border: 1px solid var(--border);
  border-radius: 18px;
  outline: none;
  background: #ffffff;
  font-weight: 600;
}

.shop-search-wrap input:focus {
  border-color: var(--greenix);
  box-shadow: 0 0 0 0.2rem rgba(56, 176, 157, 0.12);
}

.shop-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-filter-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
  transition: 0.25s;
}

.shop-filter-pill.active,
.shop-filter-pill:hover {
  border-color: var(--greenix);
  background: var(--greenix);
  color: #ffffff;
}

.shop-banner-section {
  margin-bottom: 3rem;
}

#shopBannerCarousel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.shop-banner-img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.shop-category-block {
  margin-bottom: 4rem;
}

.shop-category-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.shop-category-heading span {
  color: var(--greenix);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.shop-category-heading h2 {
  margin: 0.25rem 0 0;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.shop-category-heading p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

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

.shop-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 176, 157, 0.28);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  position: absolute;
  z-index: 4;
  top: 1rem;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-badge.sale {
  right: 1rem;
  border: 1px solid #86efac;
  background: #dcfce7;
  color: var(--success);
}

.product-badge.preorder {
  left: 1rem;
  border: 1px solid #93c5fd;
  background: #dbeafe;
  color: #1d4ed8;
}

.product-image-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f6faf9;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.shop-product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.3s ease;
}

.shop-product-card:hover .product-image-overlay {
  opacity: 1;
}

.quick-action-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: #ffffff;
  color: #111827;
  font-weight: 800;
}

.quick-action-btn.disabled,
.product-cart-btn.disabled {
  background: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.product-topline span {
  color: var(--greenix);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.product-topline small {
  color: #64748b;
  font-weight: 700;
}

.product-topline small.danger {
  color: #dc2626;
}

.product-body h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

.product-body p {
  flex: 1;
  min-height: 80px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-line;
}

.product-description-wrap {
  position: relative;
  margin-bottom: 0.8rem;
}

.product-description {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-line;
  transition: 0.25s ease;
}

.product-description.collapsed {
  display: -webkit-box;
  min-height: unset;
  max-height: 6.8em;
  overflow: hidden;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.product-description.expanded {
  display: block;
  max-height: none;
  overflow: visible;
}

.view-more-btn {
  margin-top: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--greenix);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0;
}

.view-more-btn:hover {
  color: var(--greenix-dark);
  text-decoration: underline;
}

.product-body p.product-description {
  flex: unset;
  min-height: unset;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 20px;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.product-price strong {
  color: var(--greenix);
  font-size: 1.35rem;
}

.product-price span,
.old-price {
  display: block;
  color: #9ca3af;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: line-through;
}

.product-cart-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--greenix);
  color: #ffffff;
  font-size: 1.1rem;
  transition: 0.2s ease;
}

.product-cart-btn:hover {
  background: var(--greenix-dark);
  transform: translateY(-2px);
}

.shop-add-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.compact-cart-form {
  margin-top: 0;
  display: inline-flex;
}

.quantity-row {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 0.5rem;
}

.qty-btn,
.qty-input {
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 0.9rem !important;
  background: #ffffff;
  text-align: center;
  font-weight: 900;
}

.qty-btn {
  color: var(--greenix-dark);
  transition: 0.2s ease;
}

.qty-btn:hover {
  background: var(--greenix-soft);
}

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

.qty-input,
.variant-qty {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

.full-add-btn {
  margin-top: 14px;
}

.shop-empty-state {
  display: grid;
  min-height: 420px;
  place-items: center;
}

.shop-empty-card,
.thank-you-card {
  width: 100%;
  max-width: 680px;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 1.7rem;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.shop-empty-card i {
  margin-bottom: 1rem;
  color: var(--greenix);
  font-size: 2.6rem;
}

.shop-empty-card h2 {
  color: var(--ink);
  font-weight: 900;
}

.shop-empty-card p,
.thank-you-card p {
  color: var(--muted);
}

.cart-card,
.checkout-card,
.checkout-summary-card {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.cart-card {
  padding: 1.4rem;
}

.cart-header-row {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 0.5fr 0.7fr auto;
  gap: 1rem;
  padding: 0 1rem 0.8rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-list {
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 0.5fr 0.7fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1.1rem;
  background: #fbfefd;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-product img {
  width: 76px;
  height: 76px;
  border-radius: 1rem;
  background: #f3f4f6;
  object-fit: cover;
}

.cart-product h3 {
  margin: 0 0 0.25rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.cart-size {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.cart-price,
.cart-total,
.cart-qty {
  color: var(--ink);
  font-weight: 900;
}

.cart-price span {
  display: block;
  color: #98a2b3;
  font-size: 0.82rem;
  text-decoration: line-through;
}

.cart-price strong {
  color: var(--greenix);
}

.cart-remove-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  background: #fee2e2;
  color: var(--danger);
  font-weight: 900;
}

.cart-remove-btn:hover {
  background: #fecaca;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.cart-summary span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.cart-summary strong {
  color: var(--greenix);
  font-size: 1.8rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 1.5rem;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 1.2rem;
}

.checkout-card,
.checkout-summary-card {
  padding: 1.5rem;
}

.checkout-card-header {
  margin-bottom: 1.2rem;
}

.checkout-card-header span {
  color: var(--greenix);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.checkout-card-header h2,
.checkout-summary-card h2 {
  margin: 0.25rem 0 0;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.greenix-input {
  min-height: 46px;
  border: 1px solid rgba(56, 176, 157, 0.18);
  border-radius: 0.9rem;
}

.greenix-input:focus {
  border-color: var(--greenix);
  box-shadow: 0 0 0 0.2rem rgba(56, 176, 157, 0.12);
}

.checkout-option-grid {
  display: grid;
  gap: 0.85rem;
}

.checkout-option {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(56, 176, 157, 0.14);
  border-radius: 1.1rem;
  background: #fbfefd;
  cursor: pointer;
  transition: 0.2s ease;
}

.checkout-option:hover {
  border-color: rgba(56, 176, 157, 0.35);
  transform: translateY(-1px);
}

.checkout-option strong {
  color: var(--ink);
}

.checkout-option p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.shipping-box,
.payment-qr-section {
  margin-top: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(56, 176, 157, 0.14);
  border-radius: 1.2rem;
  background: #f8fbfa;
}

.shipping-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.shipping-header h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.same-address {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 800;
}

.payment-qr-section {
  display: none;
  text-align: center;
}

.payment-qr-section img {
  width: 100%;
  max-width: 280px;
  margin-bottom: 1rem;
  border-radius: 1rem;
}

.checkout-summary-card {
  position: sticky;
  top: 90px;
}

.checkout-order-id {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--greenix-soft);
  color: var(--greenix-dark);
  font-weight: 800;
}

.checkout-order-id strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink);
}

.summary-items {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.summary-item strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.summary-item span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.summary-item p {
  margin: 0;
  color: var(--greenix);
  font-weight: 900;
  white-space: nowrap;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.7rem 0;
  color: var(--ink);
}

.summary-line.discount {
  color: var(--success);
}

.summary-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.summary-total strong {
  color: var(--greenix);
  font-size: 1.6rem;
}

.shop-modal {
  overflow: hidden;
  border: 0;
  border-radius: 1.5rem;
}

.shop-modal .modal-header {
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(56, 176, 157, 0.12), rgba(255, 255, 255, 0.95)),
    #ffffff;
}

.modal-kicker,
.modal-section-title span {
  color: var(--greenix);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.preorder-modal-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.5rem;
}

.preorder-preview {
  text-align: center;
}

.preorder-preview img {
  max-width: 190px;
  margin-bottom: 1rem;
  border-radius: 1rem;
}

.btn-size-chart {
  display: block;
  margin: 0 auto 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  background: #ffffff;
  color: var(--greenix-dark);
  font-weight: 900;
}

.size-chart-image {
  display: block;
  max-width: 100%;
  max-height: 360px;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  object-fit: contain;
}

.modal-section-title {
  margin-bottom: 1rem;
}

.modal-section-title p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.variant-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.9rem;
  background: #fbfefd;
}

.variant-card strong {
  display: block;
  color: var(--ink);
}

.variant-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.variant-qty {
  width: 76px;
  border-radius: 0.8rem;
  text-align: center;
}

.modal-add-btn {
  width: auto;
  min-width: 190px;
}

.shop-toast,
.shop-floating-message {
  position: fixed;
  z-index: 1080;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 300px;
  max-width: 420px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: opacity 0.3s ease;
}

.shop-toast.success,
.shop-floating-message.success {
  border-color: #86efac;
}

.shop-toast.danger,
.shop-floating-message.danger {
  border-color: #fca5a5;
}

.toast-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: var(--greenix);
  color: #ffffff;
  font-weight: 900;
}

.shop-toast.danger .toast-icon,
.shop-floating-message.danger .toast-icon {
  background: #fee2e2;
  color: #991b1b;
}

.shop-toast strong,
.shop-floating-message strong {
  display: block;
  color: var(--ink);
}

.shop-toast span,
.shop-floating-message span {
  color: var(--muted);
  font-size: 0.9rem;
}

.thank-you-container {
  display: grid;
  min-height: 70vh;
  place-items: center;
}

.thank-you-icon {
  display: grid;
  width: 86px;
  height: 86px;
  margin: 0 auto 1.4rem;
  place-items: center;
  border-radius: 999px;
  background: var(--greenix);
  color: #ffffff;
  font-size: 3rem;
}

.thank-you-message {
  display: grid;
  gap: 0.25rem;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 1rem;
}

.thank-you-message.success {
  background: #dcfce7;
  color: var(--success);
}

.thank-you-message.danger {
  background: #fee2e2;
  color: #991b1b;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 1200px) {
  .shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {

  .shop-hero-container,
  .checkout-grid,
  .preorder-modal-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-summary-card {
    position: static;
  }

  .cart-header-row {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .shop-hero,
  .cart-hero {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {

  .shop-container,
  .cart-container,
  .checkout-container {
    padding-top: 2rem;
  }

  .shop-hero-section {
    padding-top: 30px;
  }

  .shop-hero-content,
  .shop-hero,
  .cart-hero,
  .cart-card,
  .checkout-card,
  .checkout-summary-card {
    padding: 1.25rem;
  }

  .shop-hero-content h1,
  .shop-hero h1,
  .cart-hero h1 {
    font-size: 2.5rem;
  }

  .shop-product-grid,
  .variant-grid,
  .hero-panel-row {
    grid-template-columns: 1fr;
  }

  .shop-banner-img {
    height: 220px;
  }

  .shop-category-heading,
  .shipping-header,
  .thank-you-actions,
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .thank-you-actions a,
  .hero-btn,
  .shop-search-wrap,
  .modal-add-btn {
    width: 100%;
  }

  .shop-toast,
  .shop-floating-message {
    right: 1rem;
    left: 1rem;
    min-width: auto;
  }
}