:root {
  --primary-blue: #0052cc;
  --secondary-purple: #7c3aed;
  --accent-pink: #ec4899;
  --light-blue: #e0f2fe;
  --light-pink: #fce4ec;
  --bg: #ffffff;
  --panel: #f8fafc;
  --panel-2: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #ec4899;
  --accent-2: #0052cc;
}

.disclaimer-banner {
  background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
  padding: 0.75rem 1.2rem;
  padding-right: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #78350f;
  border-bottom: 2px solid #f59e0b;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-banner p {
  margin: 0;
}

.disclaimer-banner strong {
  font-weight: 600;
}

.banner-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #78350f;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.banner-close:hover {
  opacity: 0.7;
}

/* Discount Popup */
.discount-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.discount-popup.active {
  opacity: 1;
  visibility: visible;
}

.discount-popup-content {
  background: white;
  border-radius: 1.2rem;
  padding: 2.5rem;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 82, 204, 0.3);
  position: relative;
  animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.8) translateY(-20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #64748b;
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.popup-close:hover {
  color: #0052cc;
}

.popup-header {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #0052cc, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.popup-text {
  font-size: 1.1rem;
  color: var(--text);
  margin: 1rem 0;
  font-weight: 500;
}

.discount-code-display {
  background: linear-gradient(135deg, #0052cc, #ec4899);
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  padding: 1.2rem;
  border-radius: 0.8rem;
  letter-spacing: 0.1em;
  margin: 1.5rem 0;
  font-family: 'Courier New', monospace;
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.25);
}

.popup-subtext {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

@media (max-width: 720px) {
  .discount-popup-content {
    margin: 1rem;
    padding: 1.5rem;
  }

  .discount-code-display {
    font-size: 1.8rem;
    padding: 1rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--bg) 50%, var(--light-pink) 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.08);
}

.logo-img {
  height: 2rem;
  width: auto;
}

.brand {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 0.9rem;
}

.nav-links a,
.cart-pill {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.cart-pill {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
  color: white;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

main {
  padding: 1rem;
}

.hero {
  display: grid;
  gap: 1rem;
  padding: 2rem 0 1rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0.2rem 0 0.8rem;
}

.eyebrow {
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
  color: white;
}

.btn-secondary {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: white;
}

.hero-card,
.product-card,
.testimonial-section,
.footer {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(236, 72, 153, 0.15);
  border-radius: 1.2rem;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(0, 82, 204, 0.05);
}

.product-badge {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(236, 72, 153, 0.1));
  color: var(--primary-blue);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.select-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.strength-select {
  border: 2px solid var(--primary-blue);
  border-radius: 999px;
  padding: 0.7rem 0.9rem;
  background: white;
  color: var(--text);
  font-weight: 600;
}

.section {
  padding: 1.2rem 0;
}

.section-heading h2 {
  margin-top: 0.3rem;
  font-size: 1.45rem;
}

.feature-grid,
.product-grid {
  display: grid;
  gap: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid rgba(0, 82, 204, 0.1);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.08);
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(236, 72, 153, 0.2);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.12);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-stars {
  font-size: 1.2rem;
  color: #fbbf24;
  letter-spacing: 0.1em;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.95rem;
}

.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.review-meta {
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(0, 82, 204, 0.05);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  display: inline-block;
}

.feature-grid article {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.5), rgba(252, 228, 236, 0.5));
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.delivery-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
  color: white;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 82, 204, 0.2);
}

.delivery-banner p {
  margin: 0;
  font-size: 1.05rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.add-btn,
.signup-form button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
  color: white;
  padding: 0.6rem 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.add-btn:hover:not(:disabled),
.signup-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 82, 204, 0.3);
}

blockquote {
  margin: 0;
  font-size: 1.05rem;
}

blockquote footer {
  margin-top: 0.7rem;
  color: var(--muted);
}

.footer {
  margin: 0 1rem 1rem;
}

.signup-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.signup-form input {
  flex: 1 1 220px;
  border: 2px solid var(--primary-blue);
  border-radius: 999px;
  padding: 0.7rem 0.9rem;
  background: white;
  color: var(--text);
}

@media (min-width: 720px) {
  main {
    padding: 1.5rem 2rem 2rem;
  }

  .hero {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.view-info-btn {
  width: 100%;
  border: 0;
  border-radius: 0.6rem;
  background: rgba(0, 82, 204, 0.08);
  color: var(--primary-blue);
  padding: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 0.8rem;
  transition: background 0.2s;
}

.view-info-btn:hover {
  background: rgba(0, 82, 204, 0.15);
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 82, 204, 0.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text);
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(236, 72, 153, 0.1);
  border-radius: 50%;
}

.modal-poster {
  color: var(--text);
}

.modal-poster h2 {
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
}

.modal-poster .subtitle {
  color: var(--secondary-purple);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.nutrition-guide {
  margin-top: 1.5rem;
}

.guide-section {
  margin: 1.5rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.3), rgba(252, 228, 236, 0.3));
  border-radius: 0.8rem;
  border-left: 4px solid var(--primary-blue);
}

.guide-section h4 {
  color: var(--primary-blue);
  margin-top: 0;
}

.guide-section ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.guide-section li {
  margin: 0.5rem 0;
}

.guide-tips {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
  color: white;
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin-top: 1.5rem;
}

.guide-tips p {
  margin: 0.8rem 0;
}

.mt1-info,
.klow-info {
  margin-top: 1.5rem;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.info-box {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.4), rgba(252, 228, 236, 0.4));
  padding: 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 82, 204, 0.2);
}

.info-box h4 {
  color: var(--primary-blue);
  margin-top: 0;
}

.info-box ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.info-box li {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.peptides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.peptide-item {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(236, 72, 153, 0.08));
  padding: 1rem;
  border-radius: 0.8rem;
  border-left: 4px solid var(--primary-blue);
}

.peptide-item h4 {
  color: var(--primary-blue);
  margin: 0 0 0.5rem 0;
}

.peptide-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.klow-info h3,
.mt1-info h3 {
  color: var(--primary-blue);
  margin-top: 1.5rem;
}

.klow-info ul,
.mt1-info ul {
  padding-left: 1.5rem;
}

.klow-info li,
.mt1-info li {
  margin: 0.6rem 0;
}

.modal-poster li,
.mt1-info li {
  margin: 0.6rem 0;
}

.cart-container {
  max-width: 900px;
  margin: 0 auto;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.3), rgba(252, 228, 236, 0.3));
  border-radius: 1rem;
}

.empty-state p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.cart-table {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(236, 72, 153, 0.15);
  margin-bottom: 2rem;
}

.cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
  color: white;
  font-weight: 700;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(236, 72, 153, 0.1);
  align-items: center;
}

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

.remove-btn {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0 0.2rem;
  transition: color 0.2s;
}

.remove-btn:hover {
  color: #dc2626;
}

.cart-summary {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(236, 72, 153, 0.15);
  margin-bottom: 2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(236, 72, 153, 0.1);
  font-size: 1rem;
}

.summary-row.total {
  border: none;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  padding: 1rem 0 0 0;
}

.checkout-section {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(236, 72, 153, 0.15);
  margin-bottom: 2rem;
}

.checkout-section h3 {
  color: var(--primary-blue);
  margin-top: 0;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--primary-blue);
  border-radius: 0.6rem;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.payment-info {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.5), rgba(252, 228, 236, 0.5));
  padding: 1rem;
  border-radius: 0.6rem;
  border-left: 4px solid var(--primary-blue);
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 1.5rem;
}

.discount-section {
  margin: 1.2rem 0;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.4), rgba(252, 228, 236, 0.4));
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 82, 204, 0.15);
}

.discount-section label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.discount-input-row {
  display: flex;
  gap: 0.5rem;
}

.discount-input-row input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid var(--primary-blue);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.discount-input-row input:focus {
  outline: none;
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.discount-input-row button {
  padding: 0.75rem 1.2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.discount-input-row button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
}

.discount-message {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.discount-message.success {
  color: #10b981;
}

.discount-message.error {
  color: #dc2626;
}

/* Floating Contact Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 150;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.4s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.telegram-btn {
  background: #0088cc;
}

.telegram-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--primary-blue);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 140;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.4s ease-out;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s ease;
}

.cookie-consent.hidden {
  display: none;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex: 1;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-btn:not(.secondary) {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
  color: white;
}

.cookie-btn:not(.secondary):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
}

.cookie-btn.secondary {
  background: transparent;
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
}

.cookie-btn.secondary:hover {
  background: rgba(0, 82, 204, 0.05);
}

/* Low Stock Warning */
.stock-warning {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #f97316;
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(236, 72, 153, 0.05));
  padding: 3rem 2rem;
  margin-top: 4rem;
  border-top: 2px solid rgba(0, 82, 204, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(0, 82, 204, 0.1);
}

.footer-section h3 {
  color: var(--primary-blue);
  margin-top: 0;
  font-size: 1.2rem;
}

.footer-section p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.75rem 0;
}

.footer-section a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.footer-section a:hover {
  text-decoration: underline;
}

.disclaimer-section {
  background: linear-gradient(135deg, #fef3c7 0%, rgba(252, 228, 236, 0.5) 100%);
  border: 2px solid #f59e0b;
}

.disclaimer-section h3 {
  color: #78350f;
}

.disclaimer-section p {
  color: #78350f;
}

.signup-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.signup-form input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid var(--primary-blue);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  background: white;
  color: var(--text);
}

.signup-form input:focus {
  outline: none;
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.signup-form button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.signup-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 82, 204, 0.1);
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .cart-header,
  .cart-item-row {
    grid-template-columns: 1fr;
  }

  .cart-header span:not(:first-child),
  .cart-item-row > *:not(:first-child) {
    display: none;
  }

  .cart-header::after,
  .cart-item-row::after {
    content: attr(data-label);
    font-size: 0.8rem;
    color: var(--muted);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .signup-form {
    flex-direction: column;
  }
}
