/* ============================================================
   TAVAZO — UI Components
   Buttons, Cards, Forms, Badges, Breadcrumbs, etc.
   ============================================================ */

/* ═══════════════════════════════════════════════
   BUTTONS — Apple Glass UI Style
   Frosted glass, soft radius, subtle shadows
   ═══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Gold Primary — frosted gold glass */
.btn--gold {
  background: rgba(194, 158, 83, 0.85);
  color: #fff;
  border-color: rgba(194, 158, 83, 0.6);
  box-shadow: 0 4px 16px rgba(194, 158, 83, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--gold:hover {
  background: rgba(194, 158, 83, 1);
  border-color: rgba(194, 158, 83, 0.8);
  box-shadow: 0 6px 24px rgba(194, 158, 83, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  color: #fff;
}

.btn--gold:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(194, 158, 83, 0.2);
}

/* Teal Primary — frosted teal glass */
.btn--teal {
  background: rgba(16, 117, 113, 0.85);
  color: #fff;
  border-color: rgba(16, 117, 113, 0.5);
  box-shadow: 0 4px 16px rgba(16, 117, 113, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn--teal:hover {
  background: rgba(16, 117, 113, 1);
  box-shadow: 0 6px 24px rgba(16, 117, 113, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  color: #fff;
}

/* Outline Gold — glass border */
.btn--outline-gold {
  background: rgba(194, 158, 83, 0.06);
  color: var(--tavazo-gold);
  border-color: rgba(194, 158, 83, 0.4);
}

.btn--outline-gold:hover {
  background: rgba(194, 158, 83, 0.15);
  border-color: rgba(194, 158, 83, 0.7);
  color: var(--tavazo-gold);
  transform: translateY(-1px);
}

/* Outline Teal — glass border */
.btn--outline-teal {
  background: rgba(16, 117, 113, 0.06);
  color: var(--tavazo-teal);
  border-color: rgba(16, 117, 113, 0.3);
}

.btn--outline-teal:hover {
  background: rgba(16, 117, 113, 0.12);
  border-color: rgba(16, 117, 113, 0.5);
  color: var(--tavazo-teal-darker);
  transform: translateY(-1px);
}

/* White outline — frosted glass on dark backgrounds */
.btn--outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* Button sizes */
.btn--sm {
  padding: 9px 20px;
  font-size: 11px;
}

.btn--lg {
  padding: 16px 40px;
  font-size: 13px;
}

/* Shimmer sweep on hover */
.btn--shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn--shimmer:hover::before {
  left: 100%;
}

/* Instagram gradient button */
.btn--instagram {
  border-radius: 50px;
  backdrop-filter: blur(12px);
}


/* ═══════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════ */

/* ── Product Card — Ajmal-inspired luxury ── */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tavazo-gold), transparent);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(194, 158, 83, 0.3);
  border-color: var(--tavazo-gold);
}

/* Image area — patterned background, product floats freely */
.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #F5F2EE;
  background-image: url('../assets/svg/arabesque-pattern.svg');
  background-size: 120px 120px;
  background-repeat: repeat;
  background-position: center;
}

.product-card__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tavazo-gold), transparent);
  z-index: 2;
}

/* Pattern overlay with slight opacity */
.product-card__image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 242, 238, 0.75);
  z-index: 0;
}

.product-card__image {
  width: 85%;
  height: 85%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  margin: 7.5% auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

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

/* Wishlist heart — top right, always visible */
.product-card__wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: #bbb;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.product-card__wishlist:hover {
  color: #C0392B;
  background: #fff;
  transform: scale(1.15);
}

.product-card__wishlist svg {
  width: 16px;
  height: 16px;
}

/* Overlay on hover with quick actions */
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 117, 113, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: background var(--transition-base);
}

.product-card:hover .product-card__overlay {
  background: rgba(16, 117, 113, 0.15);
}

.product-card__quick-action {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--tavazo-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
  cursor: pointer;
}

.product-card:hover .product-card__quick-action {
  transform: translateY(0);
  opacity: 1;
}

.product-card:hover .product-card__quick-action:nth-child(2) {
  transition-delay: 0.05s;
}

.product-card:hover .product-card__quick-action:nth-child(3) {
  transition-delay: 0.1s;
}

.product-card__quick-action:hover {
  background: var(--tavazo-gold);
  color: var(--tavazo-white);
}

/* Badges — differentiated colors */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-card__badge--sale {
  background: #C0392B;
  color: #fff;
}

.product-card__badge--new {
  background: var(--tavazo-teal);
  color: #fff;
}

.product-card__badge--featured,
.product-card__badge--bestseller {
  background: var(--tavazo-gold);
  color: #1A1A1A;
}

/* Card Body — Ajmal-inspired centered layout */
.product-card__body {
  padding: 20px 16px 16px;
  text-align: center;
}

/* Category meta line — uppercase, small */
.product-card__category {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #999;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Title — Cormorant Garamond italic, elegant */
.product-card__title {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--tavazo-charcoal);
  margin-bottom: 10px;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__title a:hover {
  color: var(--tavazo-gold);
}

.product-card__weight {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Rating stars */
.product-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}

.product-card__star {
  color: var(--tavazo-gold);
  font-size: 13px;
}

.product-card__star--empty {
  color: #ddd;
}

.product-card__review-count {
  font-size: 11px;
  color: #bbb;
  margin-left: 6px;
}

/* Price — gold, prominent */
.product-card__price {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 600;
  color: var(--tavazo-gold);
  margin-bottom: 4px;
}

.product-card__price-original {
  font-size: 14px;
  color: #ccc;
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}

/* Add to cart — premium bottom bar */
.product-card__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--tavazo-teal);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-top: 1px solid rgba(194, 158, 83, 0.2);
  border-radius: 0 0 12px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: static;
  transform: none;
}

.product-card__add-to-cart svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.product-card:hover .product-card__add-to-cart {
  transform: none;
}

.product-card__add-to-cart:hover {
  background: var(--tavazo-teal-darker);
  color: #fff;
}


/* ═══════════════════════════════════════════════
   CATEGORY CARDS (circular)
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   CATEGORY CARDS — Circular with gold ring
   ═══════════════════════════════════════════════ */

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 16px;
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px);
}

/* No overlays needed */
.category-card::before,
.category-card::after {
  display: none;
}

/* Circular image container with gold ring */
.category-card__image-wrap,
.category-card__image-ring {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(#F5F2EE, #F5F2EE) padding-box,
              linear-gradient(135deg, var(--tavazo-gold), rgba(194, 158, 83, 0.3), var(--tavazo-gold)) border-box;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.category-card:hover .category-card__image-wrap,
.category-card:hover .category-card__image-ring {
  border-color: transparent;
  background: linear-gradient(#F5F2EE, #F5F2EE) padding-box,
              linear-gradient(135deg, var(--tavazo-gold), var(--tavazo-teal), var(--tavazo-gold)) border-box;
  box-shadow: 0 8px 32px rgba(194, 158, 83, 0.2);
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.1);
}

/* Content below circle */
.category-card__content {
  text-align: center;
  position: static;
  padding: 0;
}

/* Gold line hidden for circle style */
.category-card__gold-line {
  display: none;
}

/* Category name */
.category-card__name {
  position: static;
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--tavazo-charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.category-card:hover .category-card__name {
  color: var(--tavazo-gold);
  transform: none;
}

/* Product count */
.category-card__count {
  position: static;
  font-size: 10px;
  color: var(--tavazo-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}

/* Arrow hidden for circle style */
.category-card__arrow {
  display: none;
}


/* ═══════════════════════════════════════════════
   FORM INPUTS
   ═══════════════════════════════════════════════ */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--tavazo-charcoal);
  margin-bottom: var(--space-sm);
  letter-spacing: var(--ls-wide);
}

.form-input {
  width: 100%;
  padding: 12px 0;
  font-size: var(--fs-base);
  color: var(--tavazo-charcoal);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--tavazo-gray-lighter);
  transition: border-color var(--transition-base);
  outline: none;
}

.form-input:focus {
  border-bottom-color: var(--tavazo-gold);
}

.form-input::placeholder {
  color: var(--tavazo-gray-light);
}

/* Boxed input variant */
.form-input--boxed {
  padding: 14px 18px;
  border: 1px solid var(--tavazo-gray-lighter);
  border-radius: var(--radius-sm);
  background: var(--tavazo-white);
}

.form-input--boxed:focus {
  border-color: var(--tavazo-gold);
  box-shadow: 0 0 0 3px rgba(var(--tavazo-gold-rgb), 0.1);
}

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

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}


/* ═══════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-size: var(--fs-sm);
  color: var(--tavazo-gray);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.breadcrumb__item a {
  color: var(--tavazo-gray);
  transition: color var(--transition-fast);
}

.breadcrumb__item a:hover {
  color: var(--tavazo-gold);
}

.breadcrumb__separator {
  color: var(--tavazo-gold);
  font-size: 10px;
}

.breadcrumb__item--active {
  color: var(--tavazo-charcoal);
  font-weight: var(--fw-medium);
}


/* ═══════════════════════════════════════════════
   STAR RATINGS
   ═══════════════════════════════════════════════ */

.star-rating {
  display: inline-flex;
  gap: 2px;
}

.star-rating__icon {
  width: 16px;
  height: 16px;
  color: var(--tavazo-gold);
}

.star-rating__icon--empty {
  color: var(--tavazo-gray-lighter);
}


/* ═══════════════════════════════════════════════
   QUANTITY SELECTOR
   ═══════════════════════════════════════════════ */

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--tavazo-gray-lighter);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-selector__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-md);
  color: var(--tavazo-charcoal);
  background: var(--tavazo-cream);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.qty-selector__btn:hover {
  background: var(--tavazo-gold);
  color: var(--tavazo-white);
}

.qty-selector__input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--tavazo-gray-lighter);
  border-right: 1px solid var(--tavazo-gray-lighter);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  outline: none;
  -moz-appearance: textfield;
}

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


/* ═══════════════════════════════════════════════
   PRICE DISPLAY
   ═══════════════════════════════════════════════ */

.price {
  font-weight: var(--fw-bold);
  color: var(--tavazo-teal);
}

.price--lg {
  font-size: var(--fs-2xl);
}

.price__currency {
  font-size: 0.7em;
  font-weight: var(--fw-medium);
  vertical-align: super;
}

.price__original {
  color: var(--tavazo-gray-light);
  text-decoration: line-through;
  font-weight: var(--fw-regular);
  font-size: 0.8em;
  margin-left: var(--space-sm);
}


/* ═══════════════════════════════════════════════
   TESTIMONIAL CARD
   ═══════════════════════════════════════════════ */

.testimonial-card {
  background: linear-gradient(180deg, #fff 0%, #FDFBF7 100%);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
  border-top: 3px solid var(--tavazo-gold);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* Corner ornament on testimonials */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 40px;
  height: 40px;
  background-image: url('../assets/svg/corner-ornament.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--tavazo-gold);
}

.testimonial-card__quote-icon {
  font-size: 56px;
  color: var(--tavazo-gold);
  opacity: 0.2;
  font-family: var(--font-heading);
  line-height: 0.8;
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--tavazo-charcoal-light);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-card__author {
  font-weight: var(--fw-semibold);
  color: var(--tavazo-charcoal);
  font-size: var(--fs-base);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--avatar-color, var(--tavazo-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: 2px solid rgba(194, 158, 83, 0.3);
}

.testimonial-card__avatar::before {
  content: attr(data-initial);
}

.testimonial-card__role {
  font-size: var(--fs-sm);
  color: var(--tavazo-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.testimonial-card__role svg {
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   TAGS / BADGES
   ═══════════════════════════════════════════════ */

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  border-radius: 50px;
}

.tag--gold {
  background-color: rgba(var(--tavazo-gold-rgb), 0.1);
  color: var(--tavazo-gold-dark);
}

.tag--teal {
  background-color: rgba(var(--tavazo-teal-rgb), 0.1);
  color: var(--tavazo-teal);
}


/* ═══════════════════════════════════════════════
   TOOLTIP
   ═══════════════════════════════════════════════ */

[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  background: var(--tavazo-charcoal);
  color: var(--tavazo-white);
  font-size: var(--fs-xs);
  white-space: nowrap;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

[data-tooltip]:hover::after {
  opacity: 1;
}


/* ═══════════════════════════════════════════════
   ORDER MODAL — 3-channel ordering
   ═══════════════════════════════════════════════ */

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.order-modal--open {
  display: flex;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 30, 0.6);
  backdrop-filter: blur(4px);
  animation: orderModalFade 0.25s ease-out;
}

.order-modal__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, #fff 0%, #FDFBF7 100%);
  border-radius: 16px;
  border-top: 4px solid var(--tavazo-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 36px 32px 28px;
  text-align: center;
  animation: orderModalRise 0.3s cubic-bezier(0.25, 1.25, 0.5, 1);
}

.order-modal__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-image: url('../assets/svg/corner-ornament.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.order-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--tavazo-charcoal);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-modal__close:hover {
  background: var(--tavazo-cream);
  color: var(--tavazo-gold);
}

.order-modal__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  color: var(--tavazo-charcoal);
  margin-bottom: 6px;
  line-height: 1.2;
}

.order-modal__subtitle {
  font-size: 13px;
  color: var(--tavazo-gray);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.order-modal__divider {
  width: 60px;
  height: 1px;
  background: var(--tavazo-gold);
  margin: 0 auto 20px;
  opacity: 0.4;
}

.order-channel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 12px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.order-channel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.order-channel-btn svg,
.order-channel-btn img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.order-channel-btn--whatsapp {
  background: #25D366;
}

.order-channel-btn--whatsapp:hover {
  background: #20ba5a;
  color: #fff;
}

.order-channel-btn--deliveroo {
  background: #00CCBC;
}

.order-channel-btn--deliveroo:hover {
  background: #00b8a9;
  color: #fff;
}

.order-channel-btn--instashop {
  background: #FF6900;
}

.order-channel-btn--instashop:hover {
  background: #e05c00;
  color: #fff;
}

@keyframes orderModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes orderModalRise {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .order-modal__panel { padding: 30px 22px 22px; }
  .order-modal__title { font-size: 22px; }
  .order-channel-btn { font-size: 12px; padding: 12px 16px; }
}


/* ═══════════════════════════════════════════════
   PRODUCT DETAIL MODAL (Quick View + Order)
   ═══════════════════════════════════════════════ */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-modal--open { display: flex; }

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 25, 0.65);
  backdrop-filter: blur(6px);
  animation: orderModalFade 0.25s ease-out;
}

.product-modal__panel {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  background: #fff;
  border-radius: 18px;
  border-top: 4px solid var(--tavazo-gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: orderModalRise 0.35s cubic-bezier(0.25, 1.25, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #eee;
  color: var(--tavazo-charcoal);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.product-modal__close:hover {
  background: var(--tavazo-gold);
  color: #fff;
  transform: rotate(90deg);
}

.product-modal__layout {
  display: grid;
  grid-template-columns: 45% 55%;
  overflow-y: auto;
  flex: 1;
}

.product-modal__media {
  position: relative;
  background-color: #F5F2EE;
  background-image: url('../assets/svg/arabesque-pattern.svg');
  background-size: 140px 140px;
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 320px;
}

.product-modal__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 242, 238, 0.7);
}

.product-modal__image {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.15));
}

.product-modal__content {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
}

.product-modal__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tavazo-gold);
  margin-bottom: 8px;
}

.product-modal__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  font-style: italic;
  color: var(--tavazo-charcoal);
  margin-bottom: 12px;
  line-height: 1.15;
}

.product-modal__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tavazo-gold);
  margin-bottom: 18px;
}

.product-modal__stars {
  display: inline-flex;
  gap: 1px;
}

.product-modal__rating-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--tavazo-charcoal);
  margin-left: 4px;
}

.product-modal__description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--tavazo-charcoal-light);
  margin-bottom: 24px;
}

.product-modal__channels-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tavazo-gray);
  margin-bottom: 12px;
}

.product-modal__channels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.product-modal__channel-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-modal__channel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.product-modal__channel-btn svg { width: 22px; height: 22px; }

.product-modal__channel-btn--whatsapp { background: #25D366; }
.product-modal__channel-btn--whatsapp:hover { background: #20ba5a; color: #fff; }

.product-modal__channel-btn--deliveroo { background: #00CCBC; }
.product-modal__channel-btn--deliveroo:hover { background: #00b8a9; color: #fff; }

.product-modal__channel-btn--instashop { background: #FF6900; }
.product-modal__channel-btn--instashop:hover { background: #e05c00; color: #fff; }

.product-modal__note {
  font-size: 12px;
  color: var(--tavazo-gray);
  text-align: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0eae0;
}

.product-modal__note a {
  color: var(--tavazo-gold);
  text-decoration: none;
  font-weight: 600;
}

.product-modal__note a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .product-modal__panel { max-width: 100%; max-height: 95vh; }
  .product-modal__layout { grid-template-columns: 1fr; }
  .product-modal__media { min-height: 240px; padding: 24px; }
  .product-modal__content { padding: 24px 22px; }
  .product-modal__title { font-size: 24px; }
  .product-modal__description { font-size: 14px; }
}

@media (max-width: 480px) {
  .product-modal { padding: 0; }
  .product-modal__panel { border-radius: 0; max-height: 100vh; height: 100vh; }
  .product-modal__channels { grid-template-columns: 1fr; }
  .product-modal__channel-btn { flex-direction: row; padding: 14px 16px; gap: 10px; font-size: 13px; }
}

/* Quick View hint badge inside cards */
.product-card__view-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--tavazo-charcoal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.product-card.view-product-btn,
.product-card .view-product-btn { cursor: pointer; }

.product-card.view-product-btn:hover .product-card__view-hint,
.product-card:hover .product-card__view-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Numeric rating beside stars */
.product-card__rating-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--tavazo-charcoal);
  margin-left: 6px;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile fixes
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .btn { padding: 13px 26px; font-size: 11px; min-height: 44px; }
  .btn--lg { padding: 15px 34px; font-size: 12px; min-height: 48px; }
  .product-card__body { padding: 16px 14px 14px; }
  .product-card__title { font-size: 17px; }
  .product-card__price { font-size: 18px; }
  .testimonial-card { padding: var(--space-lg); }
  .product-card__wishlist { width: 30px; height: 30px; top: 10px; right: 10px; }
}

/* Form input focus glow */
.form-input:focus,
.form-input--boxed:focus,
.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--tavazo-gold);
  box-shadow: 0 0 0 3px rgba(194, 158, 83, 0.15);
  outline: none;
}

@media (max-width: 480px) {
  .btn { padding: 11px 20px; font-size: 10px; letter-spacing: 0.06em; }
  .btn--lg { padding: 13px 28px; font-size: 11px; }
  .btn--sm { padding: 8px 16px; font-size: 10px; }
  .product-card { border-radius: 8px; }
  .product-card__body { padding: 14px 12px 12px; }
  .product-card__category { font-size: 8px; }
  .product-card__title { font-size: 15px; }
  .product-card__price { font-size: 16px; }
  .product-card__add-to-cart { padding: 12px; font-size: 10px; }
  .testimonial-card { padding: var(--space-md); }
  .testimonial-card__text { font-size: var(--fs-sm); }
  .qty-selector__btn { width: 32px; height: 32px; }
}
