/* Hypnotist Help store — embedded in new2 (scoped; images under ../img/store/) */
#hypnotist-store,
#hypnotist-store * {
  box-sizing: border-box;
}

#hypnotist-store {
  margin: 0;
  padding: 50px 0 0;
  min-height: 100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #0b1726;
  background-image: url('../img/store/cloudsbg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
}

/* Store chrome — in document flow under site header (not fixed to viewport) */
.header {
  position: sticky;
  top: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 30px;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.logo {
  height: 50px;
  width: auto;
}

.header-title {
  text-align: center;
}
.header-title img {
  height: 60px;
  width: auto;
  max-width: 100%;
}

.cart-container {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  justify-self: end;
  max-width: 200px;
}

.cart-container:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cart-icon {
  width: 24px;
  height: 24px;
  fill: #0b1726;
}

.cart-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.cart-count {
  font-weight: 600;
  font-size: 14px;
  display: inline;
}

.cart-info .cart-total {
  font-size: 16px;
  color: #666;
  display: inline;
  border-top: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Main Content */
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header-search {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.search-input {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  outline: none;
  max-width: 300px;
}

.search-input:focus {
  border-color: #2563eb;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.clear-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #dc2626;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.clear-search-btn:hover {
  background-color: #fef2f2;
  color: #b91c1c;
}


.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px 40px 30px;
}

/* Two columns: left = cart, discount, search, intro; right = product grid (3 columns) */
.store-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

/* Clear fixed site nav (new2 .site-header--fixed, ~56–75px + padding) when scrolling */
.store-sidebar {
  position: sticky;
  top: clamp(4.85rem, calc(14vw + 1.35rem), 6.35rem);
  z-index: 40;
}

/* Single panel: all sidebar tools in one “menu” */
.store-sidebar__menu {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.store-sidebar__section {
  padding: 1rem 1.1rem;
}

.store-sidebar__section + .store-sidebar__section {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.store-sidebar__cart-btn.cart-container {
  max-width: none;
  width: 100%;
  margin: 0;
  justify-content: center;
  cursor: pointer;
  background: #ff9900;
  border: 1px solid #e47911;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(228, 121, 17, 0.35);
}

.store-sidebar__cart-btn.cart-container:hover {
  background: #fa8900;
  border-color: #c56a0f;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(228, 121, 17, 0.45);
}

.store-sidebar__cart-btn .cart-icon {
  fill: #fff;
}

.store-sidebar__cart-btn .cart-count {
  color: #fff;
}

.store-sidebar__cart-btn .cart-info .cart-total {
  color: rgba(255, 255, 255, 0.95) !important;
}

.store-sidebar__search-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: #0b1726;
  margin-bottom: 0.5rem;
}

.store-sidebar__section--search .search-wrapper {
  max-width: none;
}

.store-sidebar__dropdown-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: #0b1726;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.store-session-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.store-session-select {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #0b1726;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.clear-session-filter-btn {
  width: auto;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.clear-session-filter-btn:hover {
  background: #fee2e2;
  border-color: #f87171;
  color: #991b1b;
}

.store-session-select:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.store-sidebar__section--intro .promo-audio {
  margin-top: 0.35rem;
}

.store-products-wrap {
  min-width: 0;
}

@media (max-width: 960px) {
  .store-layout {
    grid-template-columns: 1fr;
  }

  .store-sidebar {
    position: static;
    z-index: auto;
  }
}

.page-title {
  text-align: center;
  margin-bottom: 50px;
  color: #0b1726;
  font-size: 36px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* Product Grid — 3 columns on desktop (was 4) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 50px;
  align-items: start;
}

/* Loading indicator */
.loading-indicator {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  font-size: 18px;
  color: #666;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Load more button */
.load-more-container {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  order: 999;
}

.load-more-btn {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.load-more-btn:hover {
  background: linear-gradient(135deg, #5b21b6, #4c1d95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.load-more-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Checkout button */
.checkout-btn {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  height: 40px;
}

.checkout-btn:hover {
  background: linear-gradient(135deg, #5b21b6, #4c1d95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.checkout-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Checkout modal */
.checkout-modal {
  max-width: 500px;
}

.checkout-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #1e40af;
}

.checkout-info p {
  margin-bottom: 8px;
}

.checkout-info p:last-child {
  margin-bottom: 0;
}

/* Form styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #374151;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input.error {
  border-color: #dc2626;
}

.error-message {
  color: #dc2626;
  font-size: 14px;
  margin-top: 4px;
}

/* Modal actions alignment */
.modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}

.modal-actions .add-to-cart-btn,
.modal-actions .checkout-btn {
  margin-bottom: 0;
  flex: 1;
}

/* Success Modal Styles */
.modal.success-modal {
  max-width: 600px;
  max-height: 80vh;
  background: darkslategrey !important;
  color: white !important;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.success-header {
  padding: 15px 20px 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.success-content {
  padding: 15px 20px;
  text-align: center;
  overflow-y: auto;
  flex: 1;
}

.success-title {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 0 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-message {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.order-details, .download-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.order-details h3, .download-info h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fbbf24;
}

.order-items {
  margin-bottom: 15px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.order-item:last-child {
  border-bottom: none;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  padding-top: 15px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.email-address {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fbbf24;
  margin: 10px 0;
}

.email-note {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.4;
}

.success-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0;
}

.success-btn {
  padding: 5px 12px;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40%;
}

.success-btn.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.success-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.success-btn.secondary {
  background: #374151;
  color: white;
  border: 2px solid #4b5563;
}

.success-btn.secondary:hover {
  background: #4b5563;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .success-modal {
    margin: 20px;
    max-width: calc(100% - 40px);
  }

  .success-content {
    padding: 30px 20px;
  }

  .success-title {
    font-size: 2rem;
  }

  .success-actions {
    justify-content: center;
    margin-bottom: 10px;
  }

  .success-btn {
    padding: 5px 16px;
    font-size: 0.9rem;
    width: 40%;
  }
}

/* Payment modal — two columns: order summary | payment (card, logo, pay) */
.modal.payment-modal {
  width: min(680px, 94vw) !important;
  max-width: 680px !important;
  max-height: 90vh !important;
  display: flex !important;
  flex-direction: column !important;
}

.modal.payment-modal .modal-body {
  overflow-y: auto !important;
  flex: 1 !important;
  max-height: calc(90vh - 5.5rem) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 16px !important;
  text-align: left !important;
}

.payment-modal .modal-body > .payment-summary,
.payment-modal .modal-body > .payment-section {
  flex: 1 1 0;
  min-width: 0;
}

.payment-modal .payment-summary {
  margin-bottom: 0;
}

.payment-modal .payment-section {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.payment-modal .square-logo {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.payment-modal .square-logo img {
  width: 100%;
  max-width: 160px;
  height: auto;
}

.payment-modal .payment-section .payment-modal__pay-actions {
  margin-top: 14px;
  padding: 0;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
}

.payment-modal .payment-section .payment-modal__pay-actions .checkout-btn {
  flex: 0 1 auto;
  width: 100%;
  max-width: 260px;
}

.payment-modal .payment-summary h3,
.payment-modal .payment-section h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.payment-modal .payment-summary,
.payment-modal .payment-section {
  padding: 14px;
}

.payment-modal #card-container {
  min-height: 150px;
  padding: 12px;
}

/* Square card message styling */
.sq-card-message {
  color: #dc2626 !important;
  font-size: 14px !important;
  margin-top: 8px !important;
  padding: 8px 12px !important;
  background: #fef2f2 !important;
  border: 1px solid #fecaca !important;
  border-radius: 6px !important;
}

.sq-card-message.sq-card-message--success {
  color: #059669 !important;
  background: #f0fdf4 !important;
  border-color: #bbf7d0 !important;
}

/* Responsive design for payment modal */
@media (max-width: 1200px) {
  .modal.payment-modal {
    width: min(680px, 94vw) !important;
    max-width: 94vw !important;
    margin: 10px !important;
  }
}

@media (max-width: 640px) {
  .modal.payment-modal {
    width: 94vw !important;
    max-width: 94vw !important;
    margin: 10px !important;
    max-height: 90vh !important;
  }

  .modal.payment-modal .modal-body {
    flex-direction: column !important;
    gap: 12px !important;
    max-height: calc(90vh - 5.5rem) !important;
  }

  .payment-modal .modal-body > .payment-summary,
  .payment-modal .modal-body > .payment-section {
    flex: none !important;
    width: 100%;
  }
}

.payment-summary {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.payment-summary h3 {
  margin-bottom: 16px;
  color: #374151;
  font-size: 18px;
}

.order-items {
  margin-bottom: 16px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid #e5e7eb;
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-name {
  flex: 1;
  font-weight: 500;
}

.order-item-price {
  font-weight: 600;
  color: #374151;
}

.order-item-remove {
  width: 16px;
  height: 16px;
  cursor: pointer;
  fill: #dc2626;
  margin-left: 12px;
  transition: all 0.3s ease;
}

.order-item-remove:hover {
  fill: #b91c1c;
  transform: scale(1.1);
}

.payment-modal .order-total {
  display: block;
  width: 100%;
  border-top: 2px solid #374151;
  padding-top: 12px;
  text-align: right;
}

.payment-modal .total-line {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #374151 !important;
}

.payment-section {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.payment-section h3 {
  margin-bottom: 16px;
  color: #374151;
  font-size: 18px;
}

#card-container {
  min-height: 200px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 16px;
  background: white;
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  margin-bottom: 4px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  border-radius: 10px;
  background: #fff;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.25;
  color: #0b1726;
  text-align: center;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0;
  text-align: center;
}
.product-price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 4px 0 6px;
}
.product-price.discounted {
  color: #dc2626;
  text-decoration: line-through;
  font-size: 20px;
  margin: 0;
}
.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.new-price {
  font-size: 24px;
  font-weight: 700;
  color: #16a34a;
  margin: 0;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.add-to-cart-btn.remove-from-cart {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.add-to-cart-btn.remove-from-cart:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Free Order Message */
.free-order-message {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 20px 0;
  text-align: center;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.free-order-content h3 {
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: bold;
}

.free-order-content p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
}

/* Bonus Discount Message */
.bonus-discount-message {
  color: #dc2626;
  font-weight: bold;
  text-align: center;
  margin: 15px 0;
  padding: 10px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 8px;
  border: 2px solid #dc2626;
  font-size: 14px;
}

/* Cart Discount Line */
.cart-discount-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  margin: 10px 0 5px 0;
  border-top: 1px solid #e5e7eb;
  color: #dc2626;
  font-weight: 600;
  font-size: 14px;
}

.cart-discount-line span:last-child {
  color: #dc2626;
  font-weight: bold;
}

/* Cart Total */
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  margin: 5px 0 15px 0;
  border-top: 2px solid #7c3aed;
  font-weight: bold;
  font-size: 16px;
  color: #7c3aed;
}

.cart-total span:last-child {
  font-size: 18px;
  font-weight: 700;
}

.product-description {
  font-size: 13px;
  line-height: 1.45;
  color: #666;
  margin: 6px 0 0;
  flex-grow: 0;
}

/* Three-section bar */
.promo-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  margin: 10px auto 10px auto;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}
.promo-bar .bar-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding-top: 10px;
}
.promo-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1726;
  text-shadow: 0 1px 2px rgba(255,255,255,0.7);
  text-transform: capitalize;
  margin: 0;
}
.promo-subtitle {
  font-size: 12px;
  color: #374151;
  line-height: 1.3;
  margin: 0;
}
.promo-audio {
  width: 100%;
  height: 40px;
}
.promo-bar .bar-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.discount-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1726;
  text-shadow: 0 1px 2px rgba(255,255,255,0.7);
  text-transform: capitalize;
  margin: 0;
}
.discount-subtitle {
  font-size: 12px;
  color: #374151;
  line-height: 1.3;
  margin: 0;
}
.discount-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.discount-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
}
.discount-apply-btn {
  padding: 8px 16px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.discount-apply-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-1px);
}
.promo-bar .bar-center img {
  height: 150px;
  width: 150px;
  display: block;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .header {
    padding: 0 20px;
  }
  
  .main-content {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .cart-container {
    padding: 8px 16px;
  }
  
  .header {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    min-height: 80px;
    padding: 10px 20px;
    gap: 10px;
  }
  
  .header-center {
    flex-direction: column;
    gap: 10px;
    order: 2;
  }
  
  .search-input {
    font-size: 16px; /* Prevents zoom on iOS */
    max-width: 100%;
  }
}

/* COMPLETELY NEW MOBILE HEADER - Only appears on mobile */
@media (max-width: 768px) {
  #hypnotist-store {
    padding-top: 0;
  }
  
  /* Hide the desktop header completely on mobile */
  .header {
    display: none !important;
  }
  
  /* Create new mobile header structure */
  .mobile-header {
    position: sticky;
    top: 0;
    left: auto;
    right: auto;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 3px 20px 8px 20px; /* Reduced padding: 3px top, 8px bottom */
    display: flex;
    flex-direction: column;
    gap: 6px; /* Reduced gap between rows */
    min-height: 100px; /* Reduced header height */
  }
  
  /* Row 1: 50-50 split - headTitle (left) + cart (right) */
  .mobile-header-row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding-top: 2px; /* Reduced from 5px to 2px */
  }
  
  /* Row 2: Audio Hypnosis logo - centered */
  .mobile-header-row2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .mobile-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .mobile-header-logo img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
  }
  
  .mobile-header-title {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .mobile-header-title img {
    height: 35px; /* Shrunk to fit 50% left side */
    max-width: 100%;
    object-fit: contain;
  }
  
  .mobile-header-cart {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .mobile-header-cart:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  
  .mobile-header-cart .cart-icon {
    width: 18px;
    height: 18px;
    fill: #0b1726;
  }
  
  .mobile-header-cart .cart-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }
  
  .mobile-header-cart .cart-count {
    font-weight: 600;
    font-size: 11px;
  }
  
  .mobile-header-cart .cart-total {
    font-size: 12px;
    color: #666;
  }
  
  /* Row 3: Search bar 80% width */
  .mobile-header-row3 {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .mobile-header-search {
    width: 80%;
    position: relative;
  }
  
  .mobile-header-search .search-input {
    width: 100%;
    padding: 6px 10px;
    font-size: 16px; /* Prevents zoom on iOS */
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    outline: none;
  }
  
  .mobile-header-search .search-input:focus {
    border-color: #7c3aed;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
  }
}

/* Hide mobile header on desktop */
@media (min-width: 769px) {
  .mobile-header {
    display: none !important;
  }
}

/* Responsive: stack promo bar on small screens */
@media (max-width: 800px) {
  .promo-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 92vw;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .promo-bar .bar-left,
  .promo-bar .bar-right,
  .promo-bar .bar-center {
    justify-content: center;
    text-align: center;
  }
  .promo-bar .bar-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .promo-bar .bar-center img {
    width: 300px;
    height: 300px;
    object-fit: contain;
  }
  
  .discount-input-group {
    margin-bottom: 10px;
  }
}

/* Modal (Empty Cart) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 200ms ease;
}
.modal-overlay.show {
  display: flex;
  opacity: 1;
}
.modal {
  width: min(500px, 92vw);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 22px 22px 18px 22px;
  transform: translateY(10px) scale(0.98);
  transition: transform 220ms ease;
  backdrop-filter: blur(8px);
  position: relative;
}
.modal-overlay.show .modal {
  transform: translateY(0) scale(1);
}
.modal-header {
  font-size: 20px;
  font-weight: 700;
  color: #0b1726;
  margin-top: 10px;
  margin-bottom: 8px;
  text-align: center;
}
.modal-body {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 16px;
}
.modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 0;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #0b1726;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: all 0.2s ease;
}
.modal-close:hover {
  transform: rotate(90deg);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Cart Modal */
.cart-modal {
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-info {
  display: flex;
  align-items: center;
  flex: 1;
}
.cart-item-name {
  font-weight: 600;
  color: #0b1726;
  flex: 1;
}
.cart-item-price {
  font-weight: 700;
  color: #2563eb;
  margin-left: 12px;
}
.cart-item-remove {
  width: 20px;
  height: 20px;
  fill: #dc2626;
  cursor: pointer;
  margin-left: 12px;
  transition: all 0.2s ease;
  opacity: 0.7;
  flex: 0 0 auto;
  display: inline-block;
  transform-origin: center;
}
.cart-item-remove:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Prevent modal body horizontal scroll due to inner transforms */
.modal-body {
  overflow-x: hidden;
}
.cart-item-price.free {
  color: #16a34a;
}
.cart-item-price.discounted {
  color: #dc2626;
}
.cart-subtotal {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #0b1726;
}
.cart-discount-info {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  padding: 12px;
  margin: 12px 0;
  font-size: 14px;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cart-discount-info.sitewide {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  color: #1d4ed8;
}
.cart-discount-info.bogo {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  color: #7c3aed;
}
.cart-discount-remove {
  width: 20px;
  height: 20px;
  cursor: pointer;
  fill: #dc2626;
  transition: all 0.3s ease;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.cart-discount-remove:hover {
  fill: #b91c1c;
  transform: translateY(-50%) scale(1.1);
}

/* Footer */
.footer {
  background: #2d3748;
  color: #e2e8f0;
  padding: 40px 0;
  margin-top: 60px;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.footer-section h3 {
  color: #f7fafc;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-section a {
  color: #90cdf4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #63b3ed;
  text-decoration: underline;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer {
    padding: 30px 0;
  }
}
