/* ============================================================
   PetalLoops — UI Components
   ============================================================ */

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 12px rgba(45,45,45,0.06);
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(45,45,45,0.1);
  border-bottom: 1px solid rgba(232,180,184,0.25);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--gradient-rose);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-rose);
  transition: transform var(--transition-spring);
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(-10deg) scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-dark);
}

.nav-logo-tagline {
  font-family: var(--font-script);
  font-size: var(--text-xs);
  color: var(--color-rose-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-dark-mid);
  text-decoration: none;
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-rose);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-rose-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--color-dark-mid);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  position: relative;
  background: transparent;
  border: none;
}

.nav-icon-btn:hover {
  background: var(--color-blush);
  color: var(--color-rose-dark);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--color-rose-dark);
  color: white;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.cart-count.visible { display: flex; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  transition: transform var(--transition-slow);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}

.nav-mobile.open { transform: translateY(0); }

.nav-mobile .nav-link {
  font-size: var(--text-base);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-gray-light);
  display: block;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-rose);
  color: white;
  box-shadow: var(--shadow-rose);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(232,180,184,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--color-rose-dark);
  border: 2px solid var(--color-rose);
}

.btn-secondary:hover {
  background: var(--color-blush);
  border-color: var(--color-rose-dark);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--gradient-teal);
  color: white;
  box-shadow: var(--shadow-teal);
}

.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(107,174,214,0.5);
}

.btn-dark {
  background: var(--color-dark);
  color: white;
}

.btn-dark:hover {
  background: var(--color-dark-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-dark);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn-xl { padding: var(--space-5) var(--space-10); font-size: var(--text-lg); }
.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* ── Product Card ─────────────────────────────────────────── */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--color-blush);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.product-card-actions {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  opacity: 0;
  transform: translateX(12px);
  transition: all var(--transition-base);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  color: var(--color-dark);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.product-action-btn:hover {
  background: var(--color-rose-dark);
  color: white;
  transform: scale(1.1);
}

.product-action-btn.active {
  background: var(--color-rose-dark);
  color: white;
}

.product-card-body {
  padding: var(--space-4);
}

.product-card-category {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-rose-dark);
  margin-bottom: var(--space-1);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.rating-count {
  font-size: var(--text-xs);
  color: var(--color-gray);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.product-price-current {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-dark);
}

.product-price-original {
  font-size: var(--text-sm);
  text-decoration: line-through;
  color: var(--color-gray);
}

.product-add-cart {
  height: 38px;
  padding: 0 var(--space-4);
  border-radius: var(--radius-full);
  background: var(--gradient-rose);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  box-shadow: var(--shadow-rose);
}

.product-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,180,184,0.5);
}

/* ── Feature Strip Cards ──────────────────────────────────── */
.feature-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto var(--space-4);
  transition: transform var(--transition-spring);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-icon-rose { background: var(--color-rose-light); }
.feature-icon-teal { background: var(--color-teal-light); }
.feature-icon-sage { background: var(--color-sage-light); }
.feature-icon-gold { background: rgba(212,168,83,0.15); }

.feature-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-gray);
}

/* ── Testimonial Card ─────────────────────────────────────── */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--color-rose-light);
  line-height: 1;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-dark-mid);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-dark);
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--color-gray);
}

/* ── Form Elements ────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark);
}

.form-label .required { color: var(--color-rose-dark); }

.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-rose);
  box-shadow: 0 0 0 4px rgba(232,180,184,0.15);
}

.form-control::placeholder { color: var(--color-gray); }

.form-control.error { border-color: #E53E3E; }
.form-control.success { border-color: var(--color-sage-dark); }

.form-hint {
  font-size: var(--text-xs);
  color: var(--color-gray);
}

.form-error-msg {
  font-size: var(--text-xs);
  color: #E53E3E;
  font-weight: 500;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
}

/* ── Cart Drawer ──────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 420px;
  max-width: 100vw;
  background: var(--color-white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,0.12);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: var(--text-lg);
  transition: background var(--transition-fast);
  color: var(--color-dark-mid);
}

.cart-close-btn:hover { background: var(--color-blush); color: var(--color-rose-dark); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
}

.cart-empty {
  text-align: center;
  padding: var(--space-12) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.cart-empty-icon {
  font-size: 64px;
  line-height: 1;
}

.cart-empty h4 {
  font-size: var(--text-xl);
}

.cart-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-cream);
  margin-bottom: var(--space-3);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.cart-item-name {
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1.3;
}

.cart-item-price {
  font-size: var(--text-sm);
  color: var(--color-rose-dark);
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 600;
  transition: all var(--transition-fast);
  background: var(--color-white);
}

.qty-btn:hover { background: var(--color-rose-light); border-color: var(--color-rose); }

.qty-value { font-size: var(--text-sm); font-weight: 600; min-width: 20px; text-align: center; }

.cart-item-remove {
  font-size: var(--text-base);
  color: var(--color-gray);
  cursor: pointer;
  transition: color var(--transition-fast);
  align-self: flex-start;
  padding: var(--space-1);
}

.cart-item-remove:hover { color: #E53E3E; }

.cart-drawer-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--color-gray-light);
  flex-shrink: 0;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-bottom: var(--space-2);
}

.cart-summary-row.total {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-dark);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-gray-light);
  margin-top: var(--space-2);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo-name { color: white; }
.footer-brand .nav-logo-tagline { color: var(--color-rose); }
.footer-brand .nav-logo-mark { box-shadow: none; }

.footer-about {
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  border: none;
}

.social-btn:hover {
  background: var(--color-rose-dark);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-link:hover {
  color: var(--color-rose);
  transform: translateX(4px);
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-newsletter p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

.newsletter-form {
  display: flex;
  gap: var(--space-2);
}

.newsletter-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus {
  border-color: var(--color-rose);
  background: rgba(255,255,255,0.12);
}

.footer-bottom {
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-4);
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-rose);
}

/* ── Filter Tabs ──────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-10);
}

.filter-tab {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gray-light);
  background: white;
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--color-dark-mid);
}

.filter-tab:hover {
  border-color: var(--color-rose);
  color: var(--color-rose-dark);
  background: var(--color-blush);
}

.filter-tab.active {
  background: var(--gradient-rose);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-rose);
}

/* ── Step Progress ────────────────────────────────────────── */
.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-10);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 20px);
  width: 80px;
  height: 2px;
  background: var(--color-gray-light);
}

.step-item.complete:not(:last-child)::after {
  background: var(--color-rose);
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-gray);
  transition: all var(--transition-base);
}

.step-item.active .step-circle {
  background: var(--gradient-rose);
  color: white;
  box-shadow: var(--shadow-rose);
}

.step-item.complete .step-circle {
  background: var(--color-sage-dark);
  color: white;
}

.step-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-gray);
  white-space: nowrap;
}

.step-item.active .step-label { color: var(--color-rose-dark); font-weight: 600; }
.step-item.complete .step-label { color: var(--color-sage-dark); }

/* ── Promotional Banner ───────────────────────────────────── */
.promo-banner {
  background: var(--color-dark);
  color: white;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.has-promo .navbar { top: 40px; }
body.has-promo { padding-top: 40px; }

.promo-banner a {
  color: var(--color-gold);
  text-decoration: underline;
  margin-left: var(--space-2);
}

/* ── Responsive nav ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  .step-item:not(:last-child)::after { width: 40px; }

  .cart-drawer { width: 100vw; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
