/*
  SchedulHub Gifts — visual identity for the gifting vertical.
  Warm Celebration tone: soft cream base, coral/blush primary, warm gold accent,
  rounded/friendly headings. Deliberately light and warm — the opposite register
  from Rides' dark ink/brass chauffeur theme — since gifting is occasion-driven
  and celebratory rather than premium-formal.
*/
:root {
  --gifts-cream: #fdf6f0;
  --gifts-cream-soft: #f7ebe1;
  --gifts-surface: #ffffff;
  --gifts-coral: #dd5c53;
  --gifts-coral-dark: #c14840;
  --gifts-gold: #c28a2e;
  --gifts-gold-dark: #9c6f22;
  --gifts-espresso: #2e2420;
  --gifts-muted: #6f5f57;
  --gifts-border: rgba(221, 92, 83, 0.24);
}

.gifts-page {
  background: var(--gifts-cream);
  color: var(--gifts-espresso);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.gifts-page h1,
.gifts-page h2,
.gifts-page h3,
.gifts-page .gifts-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--gifts-espresso);
}

.gifts-eyebrow {
  color: var(--gifts-coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}

.gifts-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(212, 162, 76, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(232, 116, 108, 0.12) 0%, transparent 65%),
    var(--gifts-cream);
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--gifts-border);
}

.gifts-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.18;
  margin-bottom: 20px;
}

.gifts-nav-brand {
  font-size: 1.4rem;
}

.gifts-nav-actions {
  gap: 20px;
}

.gifts-hero-cta {
  gap: 16px;
}

.gifts-hero p.lead {
  color: var(--gifts-muted);
  font-size: 1.1rem;
  max-width: 540px;
}

/* Decorative confetti dots — no photography needed */
.gifts-hero-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.gifts-confetti-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: gifts-confetti-float 4.5s ease-in-out infinite;
}
.gifts-confetti-dot.d1 { top: 18%; right: 10%; width: 14px; height: 14px; background: var(--gifts-gold); animation-delay: 0s; }
.gifts-confetti-dot.d2 { top: 40%; right: 22%; width: 10px; height: 10px; background: var(--gifts-coral); animation-delay: 1.1s; }
.gifts-confetti-dot.d3 { top: 62%; right: 6%; width: 8px; height: 8px; background: var(--gifts-gold-dark); animation-delay: 2.2s; }
.gifts-confetti-dot.d4 { top: 30%; right: 34%; width: 12px; height: 12px; background: var(--gifts-coral); animation-delay: 0.6s; }
@keyframes gifts-confetti-float {
  0%   { transform: translateY(20px) scale(0.8); opacity: 0; }
  20%  { opacity: 0.9; }
  80%  { opacity: 0.9; }
  100% { transform: translateY(-40px) scale(1); opacity: 0; }
}

.gifts-hero-giftmark {
  position: absolute;
  right: 6%;
  bottom: 4%;
  font-size: clamp(120px, 15vw, 240px);
  color: transparent;
  -webkit-text-stroke: 1px var(--gifts-border);
  opacity: 0.6;
}

/* Search / occasion widget layered on the hero */
.gifts-search-widget {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gifts-border);
  border-radius: 14px;
  padding: 24px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(58, 46, 42, 0.08);
}
.gifts-search-widget label {
  color: var(--gifts-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

.gifts-field {
  position: relative;
  margin-bottom: 10px;
}
.gifts-field i.gifts-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gifts-coral);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
}
.gifts-search-widget .form-select,
.gifts-search-widget .form-control,
.gifts-filter-bar .form-select,
.gifts-filter-bar .form-control {
  background-color: var(--gifts-surface);
  border: 1px solid var(--gifts-border);
  color: var(--gifts-espresso);
  height: 48px;
  border-radius: 10px;
  font-size: 0.92rem;
  padding: 0 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.gifts-field .form-select,
.gifts-field .form-control {
  padding-left: 40px;
}
.gifts-search-widget .form-select,
.gifts-filter-bar .form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23e8746c' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px 7px;
  padding-right: 38px;
}
.gifts-search-widget .form-select:hover,
.gifts-search-widget .form-control:hover,
.gifts-filter-bar .form-select:hover,
.gifts-filter-bar .form-control:hover {
  border-color: rgba(232, 116, 108, 0.45);
}
.gifts-search-widget .form-select:focus,
.gifts-search-widget .form-control:focus,
.gifts-filter-bar .form-select:focus,
.gifts-filter-bar .form-control:focus {
  border-color: var(--gifts-coral);
  box-shadow: 0 0 0 3px rgba(232, 116, 108, 0.15);
  background-color: var(--gifts-surface);
  color: var(--gifts-espresso);
}
.gifts-search-btn {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Trust / stat strip */
.gifts-stat-strip {
  border-top: 1px solid var(--gifts-border);
  border-bottom: 1px solid var(--gifts-border);
  background: var(--gifts-cream-soft);
}
.gifts-stat {
  text-align: center;
  padding: 32px 10px;
}
.gifts-stat .gifts-stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  color: var(--gifts-coral);
  font-weight: 600;
  line-height: 1;
}
.gifts-stat .gifts-stat-label {
  color: var(--gifts-muted);
  font-size: 0.85rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-gifts-primary {
  background: var(--gifts-coral);
  border: 1px solid var(--gifts-coral);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-gifts-primary:hover {
  background: var(--gifts-coral-dark);
  border-color: var(--gifts-coral-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-gifts-outline {
  background: transparent;
  border: 1px solid var(--gifts-border);
  color: var(--gifts-espresso);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-gifts-outline:hover {
  border-color: var(--gifts-coral);
  color: var(--gifts-coral);
}

.gifts-occasion-card {
  background: var(--gifts-surface);
  border: 1px solid var(--gifts-border);
  border-radius: 12px;
  padding: 30px 26px;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.gifts-occasion-card:hover {
  transform: translateY(-6px);
  border-color: var(--gifts-coral);
  box-shadow: 0 16px 34px rgba(58, 46, 42, 0.1);
}
.gifts-occasion-card i {
  color: var(--gifts-coral);
  font-size: 1.7rem;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.25s ease;
}
.gifts-occasion-card:hover i {
  transform: scale(1.15) rotate(-4deg);
}
.gifts-occasion-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.gifts-occasion-card p {
  color: var(--gifts-muted);
  margin-bottom: 0;
  font-size: 14px;
}

/* Browse page filter bar */
.gifts-filter-bar {
  background: var(--gifts-surface);
  border: 1px solid var(--gifts-border);
  border-top: 3px solid var(--gifts-coral);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 10px 28px rgba(58, 46, 42, 0.06);
}
.gifts-filter-bar label {
  color: var(--gifts-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}
.gifts-filter-bar .btn-gifts-outline {
  height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gifts-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gifts-muted);
}

.gifts-vendor-card {
  background: var(--gifts-surface);
  border: 1px solid var(--gifts-border);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.gifts-vendor-card:hover {
  border-color: var(--gifts-coral);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(58, 46, 42, 0.1);
}
.gifts-vendor-card .gifts-vendor-banner {
  width: 100%;
  height: 130px;
  object-fit: cover;
  background: var(--gifts-cream-soft);
}
.gifts-vendor-card .gifts-vendor-body {
  padding: 20px;
}
.gifts-vendor-card .gifts-vendor-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--gifts-surface);
  margin-top: -46px;
  margin-bottom: 12px;
  background: var(--gifts-surface);
}
.gifts-vendor-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--gifts-espresso);
}
.gifts-vendor-card .gifts-vendor-meta {
  color: var(--gifts-muted);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.gifts-vendor-card .gifts-vendor-badge {
  display: inline-block;
  background: rgba(232, 116, 108, 0.12);
  color: var(--gifts-coral-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin: 2px 4px 2px 0;
}

.gifts-section {
  padding: 76px 0;
}
.gifts-section-alt {
  background: var(--gifts-cream-soft);
}

.gifts-modal .modal-content {
  background: var(--gifts-surface);
  color: var(--gifts-espresso);
  border: 1px solid var(--gifts-border);
}
.gifts-modal .form-control,
.gifts-modal .form-select {
  background-color: var(--gifts-cream);
  border: 1px solid var(--gifts-border);
  color: var(--gifts-espresso);
  height: 48px;
  border-radius: 10px;
  font-size: 0.92rem;
  padding: 0 16px;
}
.gifts-modal .form-control:focus,
.gifts-modal .form-select:focus {
  border-color: var(--gifts-coral);
  box-shadow: 0 0 0 3px rgba(232, 116, 108, 0.15);
  background-color: var(--gifts-surface);
  color: var(--gifts-espresso);
}
.gifts-modal .form-control::placeholder {
  color: var(--gifts-muted);
  opacity: 1;
}
/* Same specificity as .gifts-modal .form-control above, so without this the icon and
   placeholder text overlap inside modals (login/register) — carhire.css has the same
   override for .rides-modal .rides-field, this was missed when gifts.css was written. */
.gifts-modal .gifts-field .form-control,
.gifts-modal .gifts-field .form-select {
  padding-left: 40px;
}
.gifts-modal label {
  color: var(--gifts-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

/* Sector hub card, matches the .sector-rides card already on the main landing page */
.sector-hub-card.sector-gifts {
  background: linear-gradient(135deg, var(--gifts-coral) 0%, var(--gifts-gold) 100%);
  border: 1px solid var(--gifts-gold);
}

/* Illustration frame — replaces the old placeholder/fallback image pattern now that
   real artwork exists at www/assets/gifts/svgs (undraw.co illustrations, recolored to
   the coral accent). Soft blob background behind the SVG for visual depth. */
.gifts-illustration-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 20px;
}
.gifts-illustration-frame::before {
  content: '';
  position: absolute;
  inset: 8%;
  background: radial-gradient(ellipse at center, var(--gifts-cream-soft) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.gifts-illustration-frame img,
.gifts-illustration-frame svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 420px;
}

.gifts-occasion-card .gifts-occasion-illustration {
  width: 100%;
  max-width: 150px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* "Shop by Occasion" visual strip */
.gifts-occasion-strip-card {
  background: var(--gifts-surface);
  border: 1px solid var(--gifts-border);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.gifts-occasion-strip-card:hover {
  transform: translateY(-4px);
  border-color: var(--gifts-coral);
  box-shadow: 0 12px 26px rgba(46, 36, 32, 0.1);
}
.gifts-occasion-strip-card img {
  width: 100%;
  max-width: 96px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 10px;
}
.gifts-occasion-strip-card span {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gifts-espresso);
}

.gifts-empty-state img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 16px;
}

.gifts-modal-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 6px;
}

/* Vendor tenant/shop banner — named .gifts-shop-banner (not .gifts-vendor-banner,
   which is already the small <img> strip inside .gifts-vendor-card on the browse
   grid) to avoid two unrelated things sharing one class. */
.gifts-shop-banner {
  background: var(--gifts-surface);
  border-bottom: 1px solid var(--gifts-border);
  padding: 40px 0;
}
.gifts-shop-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.gifts-shop-banner-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid var(--gifts-border);
  background: var(--gifts-cream-soft);
  flex-shrink: 0;
}
.gifts-shop-banner h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 6px;
}
.gifts-shop-banner p {
  color: var(--gifts-muted);
  max-width: 640px;
  margin-bottom: 0;
}

/* Product / gift-package cards on the vendor shop page */
.gifts-product-card {
  background: var(--gifts-surface);
  border: 1px solid var(--gifts-border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.gifts-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gifts-coral);
  box-shadow: 0 14px 30px rgba(58, 46, 42, 0.1);
}
.gifts-product-card.gifts-package-card {
  border-color: var(--gifts-gold);
}
.gifts-product-image-wrap {
  position: relative;
  height: 180px;
  background: var(--gifts-cream-soft);
}
.gifts-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gifts-product-badge {
  position: absolute;
  top: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
}
.gifts-product-badge.gifts-badge-out { left: 10px; background: rgba(46, 36, 32, 0.75); }
.gifts-product-badge.gifts-badge-delivery { right: 10px; background: var(--gifts-coral); }
.gifts-product-badge.gifts-badge-package { left: 10px; background: var(--gifts-gold-dark); }
.gifts-product-details {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.gifts-product-title {
  font-size: 1rem;
  margin-bottom: 6px;
}
.gifts-product-desc {
  color: var(--gifts-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
  flex: 1 1 auto;
}
.gifts-package-includes {
  color: var(--gifts-muted);
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.gifts-package-includes strong {
  color: var(--gifts-espresso);
}
.gifts-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}
.gifts-product-price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--gifts-coral-dark);
  font-size: 1.05rem;
}
.gifts-product-stock {
  font-size: 0.78rem;
  white-space: nowrap;
}
.gifts-product-stock.in-stock { color: #4a8b5c; }
.gifts-product-stock.out-of-stock { color: #b3433c; }
.gifts-product-options {
  margin-bottom: 12px;
}
.gifts-product-option {
  margin-bottom: 8px;
}
.gifts-product-option label {
  display: block;
  color: var(--gifts-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.gifts-product-option-select {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--gifts-border);
  background-color: var(--gifts-surface);
  color: var(--gifts-espresso);
  font-size: 0.85rem;
  padding: 0 12px;
}
.gifts-product-action {
  margin-top: auto;
}

/* Cart modal + floating cart button — themes the markup cart-api.js (shared,
   unmodified) generates into #cartItems: .cart-item-card, .quantity-controls,
   .remove-item. Scoped under .gifts-page so it never touches other sectors. */
.gifts-page #cartModal .modal-content {
  border: none;
  border-radius: 16px;
  background: var(--gifts-surface);
}
.gifts-page #cartModal .btn-close {
  background: var(--gifts-cream-soft);
  border-radius: 50%;
}
.gifts-page .cart-item-card {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px 15px;
  border: 1px solid var(--gifts-border);
  border-radius: 12px;
  background: var(--gifts-cream);
}
.gifts-page .cart-item-card:last-child {
  margin-bottom: 0;
}
.gifts-page .cart-item-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
  border: 1px solid var(--gifts-border);
  flex-shrink: 0;
}
.gifts-page .cart-item-details {
  flex: 1 1 auto;
  min-width: 0;
}
.gifts-page .cart-item-title {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--gifts-espresso);
}
.gifts-page .cart-item-variant {
  margin: 0 0 4px 0;
}
.gifts-page .cart-item-price {
  margin: 0 0 4px 0;
  color: var(--gifts-muted);
  font-size: 13px;
}
.gifts-page .cart-item-total {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--gifts-coral-dark) !important;
}
.gifts-page .quantity-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 12px;
  flex-shrink: 0;
}
.gifts-page .quantity-controls input {
  width: 46px;
  text-align: center;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--gifts-border);
  font-size: 14px;
  padding: 0;
}
.gifts-page .quantity-controls button {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 6px;
  border: 1px solid var(--gifts-border);
  background: var(--gifts-surface);
  color: var(--gifts-espresso);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.gifts-page .quantity-controls button:hover {
  background: var(--gifts-cream-soft);
  border-color: var(--gifts-coral);
  color: var(--gifts-coral);
}
.gifts-page .remove-item {
  border: 1px solid rgba(221, 92, 83, 0.3);
  color: var(--gifts-coral-dark);
  background: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.gifts-page .remove-item:hover {
  background: var(--gifts-coral);
  border-color: var(--gifts-coral);
  color: #fff;
}
.gifts-page .cart-summary {
  background: var(--gifts-cream-soft);
  border-radius: 10px;
  padding: 15px;
}

.gifts-floating-cart {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}
.gifts-floating-cart button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gifts-coral);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(221, 92, 83, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
}
.gifts-floating-cart button:hover {
  transform: scale(1.05);
  background: var(--gifts-coral-dark);
}
.gifts-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gifts-gold-dark);
  color: #fff;
  border-radius: 50%;
  min-width: 20px;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  border: 2px solid var(--gifts-surface);
  padding: 1px 4px;
}

.gifts-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}
.gifts-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 6px;
  border-radius: 10px;
  border: 1px solid var(--gifts-border);
  color: var(--gifts-espresso);
  text-decoration: none;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.gifts-pagination li a:hover {
  border-color: var(--gifts-coral);
  color: var(--gifts-coral);
}
.gifts-pagination li.active a {
  background: var(--gifts-coral);
  border-color: var(--gifts-coral);
  color: #fff;
}

/* Mobile: the desktop values above (120px hero padding, 20px nav gaps, 380px
   illustration min-height) were tuned for wide viewports and left huge dead
   space / cramped nav on phones since no breakpoint existed for this page. */
@media (max-width: 767.98px) {
  .gifts-hero {
    padding: 48px 0 44px;
  }

  .gifts-hero-giftmark {
    font-size: 80px;
    opacity: 0.3;
  }

  .gifts-nav-brand {
    font-size: 1.1rem;
  }

  .gifts-nav-actions {
    gap: 10px;
  }

  .gifts-nav-actions .btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .gifts-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .gifts-hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .gifts-search-widget {
    padding: 18px;
    margin-top: 24px;
  }

  .gifts-illustration-frame {
    min-height: 200px;
    padding: 10px;
  }

  .gifts-section {
    padding: 48px 0;
  }

  .gifts-shop-banner {
    padding: 28px 0;
  }

  .gifts-shop-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .gifts-floating-cart {
    bottom: 16px;
    right: 16px;
  }

  .gifts-floating-cart button {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .gifts-page .cart-item-card {
    flex-wrap: wrap;
  }

  .gifts-page .quantity-controls {
    margin-left: 79px;
  }
}
