/* ============================================================
   TAVAZO — Shop & Product Page Styles
   ============================================================ */

/* ═══════════════════════════════════════════════
   SHOP PAGE HERO — with arabesque pattern
   ═══════════════════════════════════════════════ */

.shop-hero {
  position: relative;
  padding: 60px 0 48px;
  background-color: var(--tavazo-teal-darker);
  text-align: center;
  overflow: hidden;
}

.shop-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/svg/hero-pattern.svg');
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.05;
  pointer-events: none;
}

.shop-hero__content {
  position: relative;
  z-index: 1;
}

.shop-hero__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.shop-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.shop-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

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

.shop-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  display: flex;
}

.shop-hero__breadcrumb-current {
  color: var(--tavazo-gold);
}

/* ═══════════════════════════════════════════════
   GENERIC PAGE HERO BANNER
   ═══════════════════════════════════════════════ */

.page-hero {
  position: relative;
  padding: var(--space-4xl) 0;
  background-color: var(--tavazo-teal-darker);
  text-align: center;
  overflow: hidden;
}

/* Image-backed page hero (gift-boxes, etc.) */
.page-hero--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0 100px;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.page-hero--image .page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 30, 30, 0.55) 0%, rgba(11, 30, 30, 0.35) 50%, rgba(11, 30, 30, 0.7) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(11, 30, 30, 0.45) 100%);
  z-index: 0;
}

.page-hero--image .page-hero__title {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero--image .page-hero__subtitle {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.page-hero--image .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: var(--fs-4xl);
  color: var(--tavazo-white);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb {
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-md);
}

.page-hero .breadcrumb__item a {
  color: rgba(255, 255, 255, 0.6);
}

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

.page-hero .breadcrumb__item--active {
  color: var(--tavazo-gold);
}

@media (max-width: 480px) {
  .page-hero { padding: var(--space-3xl) 0; }
  .page-hero__title { font-size: 2rem; line-height: 1.15; }
  .page-hero__subtitle { font-size: 13px; }
  .page-hero--image { padding: var(--space-3xl) 0 var(--space-2xl); }
}

/* Mobile sidebar backdrop overlay */
.shop-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 30, 0.55);
  backdrop-filter: blur(2px);
  z-index: 399;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shop-sidebar-backdrop--visible {
  display: block;
  opacity: 1;
}

.page-hero .breadcrumb__separator {
  color: var(--tavazo-gold);
}

/* Clean bottom — no gold border */
.page-hero::after {
  display: none;
}


/* ═══════════════════════════════════════════════
   SHOP LAYOUT (sidebar + grid)
   ═══════════════════════════════════════════════ */

.shop-section {
  padding: 48px 0 80px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Sidebar / Filters — Clean Ajmal-inspired ── */
.shop-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 0;
  padding: 24px;
  box-shadow: none;
  border-left: 2px solid var(--tavazo-gold);
}

.shop-filter {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.shop-filter:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.shop-filter__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--tavazo-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: none;
  display: block;
  position: relative;
}

.shop-filter__title::after {
  display: none;
}

/* Category filter checkboxes — custom */
.shop-filter__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shop-filter__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  transition: color 0.2s ease;
  padding: 4px 0;
  border-radius: 0;
}

.shop-filter__checkbox:hover {
  color: var(--tavazo-teal);
  background: transparent;
}

.shop-filter__checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 0;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.shop-filter__checkbox input[type="checkbox"]:checked {
  background: var(--tavazo-teal);
  border-color: var(--tavazo-teal);
}

.shop-filter__checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.shop-filter__count {
  margin-left: auto;
  font-size: 11px;
  color: #bbb;
}

/* ── Sidebar blocks (actual HTML class names) ── */
.shop-sidebar__block {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.shop-sidebar__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.shop-sidebar__heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--tavazo-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.shop-sidebar__filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-sidebar__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  transition: color 0.2s;
}

.shop-sidebar__checkbox:hover {
  color: var(--tavazo-teal);
}

.shop-sidebar__checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.shop-sidebar__checkbox input[type="checkbox"]:checked {
  background: var(--tavazo-teal);
  border-color: var(--tavazo-teal);
}

.shop-sidebar__checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.shop-sidebar__checkmark {
  display: none;
}

.shop-sidebar__count {
  margin-left: auto;
  font-size: 11px;
  color: #bbb;
}

/* Price range */
.shop-sidebar__price-range {
  padding-top: 4px;
}

.shop-sidebar__range-slider {
  width: 100%;
  accent-color: var(--tavazo-gold);
  height: 2px;
  margin-bottom: 8px;
}

.shop-sidebar__price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
}

/* Sort select */
.shop-sidebar__sort-select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C29E53' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  color: var(--tavazo-charcoal);
}

.shop-sidebar__sort-select:focus {
  border-color: var(--tavazo-gold);
}

/* Close button for mobile */
.shop-sidebar__close-mobile {
  display: none;
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 12px;
  color: #666;
}

/* List view for shop-grid */
.shop-grid--list {
  grid-template-columns: 1fr;
}

.shop-grid--list .product-card {
  display: grid;
  grid-template-columns: 250px 1fr;
}

.shop-grid--list .product-card__image-link {
  aspect-ratio: auto;
  height: 100%;
}

.shop-grid--list .product-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

/* Price range */
.shop-filter__range {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.shop-filter__range-input {
  width: 100%;
  accent-color: var(--tavazo-gold);
  height: 2px;
}

.shop-filter__range-values {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--tavazo-gray);
  margin-top: var(--space-sm);
}


/* ── Shop Top Bar ── */
.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.shop-topbar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.shop-topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.shop-topbar__filter-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 50px;
  background: #fff;
  font-size: 13px;
  color: var(--tavazo-charcoal);
  cursor: pointer;
  transition: all 0.2s;
}

.shop-topbar__filter-toggle:hover {
  border-color: var(--tavazo-gold);
  color: var(--tavazo-gold);
}

.shop-topbar__filter-toggle svg {
  width: 16px;
  height: 16px;
}

.shop-topbar__count {
  font-size: 13px;
  color: var(--tavazo-gray);
}

.shop-topbar__count strong {
  font-weight: 600;
  color: var(--tavazo-charcoal);
}

/* Sort wrapper */
.shop-topbar__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-topbar__sort-label {
  font-size: 13px;
  color: var(--tavazo-gray);
  white-space: nowrap;
}

.shop-topbar__sort-select {
  padding: 8px 32px 8px 12px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 50px;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C29E53' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  color: var(--tavazo-charcoal);
}

.shop-topbar__sort-select:focus {
  border-color: var(--tavazo-gold);
}

/* View toggle */
.shop-topbar__view-toggle {
  display: flex;
  gap: 4px;
}

.shop-topbar__view-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  color: var(--tavazo-gray);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.shop-topbar__view-btn--active,
.shop-topbar__view-btn:hover {
  border-color: var(--tavazo-teal);
  color: var(--tavazo-teal);
  background: rgba(16, 117, 113, 0.05);
}

.shop-topbar__view-btn svg {
  width: 16px;
  height: 16px;
}


/* ── Products Grid ── */
.products-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
}

.products-grid .product-card,
.shop-grid .product-card {
  border: 1px solid #eee;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s ease;
}

.shop-grid .product-card:hover {
  border-color: var(--tavazo-gold);
}

/* Remove ornament corners on shop product cards */
.shop-grid .product-card.ornament-corners::before,
.shop-grid .product-card.ornament-corners::after,
.shop-grid .product-card.ornament-corners .corner-tr,
.shop-grid .product-card.ornament-corners .corner-bl {
  display: none;
}

/* Shop product card image — patterned bg like Ajmal */
.product-card__image-link {
  display: block;
  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;
}

.product-card__image-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 242, 238, 0.75);
  z-index: 0;
  pointer-events: none;
}

.product-card__image-link .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.6s ease;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

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

/* Overlay with cart button */
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.product-card:hover .product-card__overlay {
  background: rgba(0, 0, 0, 0.25);
}

.product-card__cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50px;
  color: var(--tavazo-charcoal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

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

.product-card__cart-btn:hover {
  background: var(--tavazo-teal-darker);
  color: #fff;
}

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

/* Shop product card info */
.product-card__info {
  padding: 16px;
}

.product-card__info .product-card__category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 6px;
  display: block;
}

.product-card__info .product-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.25;
  color: var(--tavazo-charcoal);
}

.product-card__info .product-card__title a {
  color: var(--tavazo-charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Product description preview */
.product-card__description {
  font-size: 13px;
  line-height: 1.55;
  color: var(--tavazo-gray);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .product-card__description {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
}

/* Rating stars */
.product-card__stars {
  display: flex;
  gap: 1px;
  color: var(--tavazo-gold);
  margin-bottom: 4px;
}

.product-card__stars svg {
  width: 13px;
  height: 13px;
}

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

.product-card__rating {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

/* Weight */
.product-card__weight {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

/* Price */
.product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card__price-current {
  font-size: 16px;
  font-weight: 600;
  color: var(--tavazo-charcoal);
}

.product-card__price-original {
  font-size: 13px;
  color: #bbb;
  text-decoration: line-through;
}

/* Badge */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--tavazo-charcoal);
  color: #fff;
}

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

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

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

.products-grid--list {
  grid-template-columns: 1fr;
}

.products-grid--list .product-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: hidden;
}

.products-grid--list .product-card__image-wrapper {
  aspect-ratio: auto;
  height: 100%;
}

.products-grid--list .product-card__body {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}

.products-grid--list .product-card__rating {
  justify-content: flex-start;
}

.products-grid--list .product-card__add-to-cart {
  position: static;
  transform: none;
  max-width: 200px;
  margin-top: var(--space-md);
  border-radius: var(--radius-sm);
}


/* ── Pagination ── */
.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--tavazo-cream-darker);
}

.shop-pagination__btn,
.shop-pagination__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  color: var(--tavazo-charcoal);
  background: rgba(16, 117, 113, 0.04);
  border: 1px solid rgba(16, 117, 113, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.shop-pagination__btn:hover,
.shop-pagination__link:hover {
  background: rgba(194, 158, 83, 0.1);
  border-color: rgba(194, 158, 83, 0.4);
  color: var(--tavazo-gold);
}

.shop-pagination__btn--active,
.shop-pagination__link--active {
  background: rgba(194, 158, 83, 0.85);
  color: #fff;
  border-color: rgba(194, 158, 83, 0.6);
  box-shadow: 0 4px 12px rgba(194, 158, 83, 0.25);
}

.shop-pagination__link--next {
  background: transparent;
  border-color: rgba(16, 117, 113, 0.15);
}

.shop-pagination__link--next svg {
  width: 16px;
  height: 16px;
}

.shop-pagination__btn--arrow {
  color: var(--tavazo-teal);
}

.shop-pagination__btn--arrow svg {
  width: 16px;
  height: 16px;
}


/* ═══════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ═══════════════════════════════════════════════ */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 100px;
}

.product-gallery__main {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  position: relative;
  border: 1px solid var(--tavazo-cream-darker);
}

.product-gallery__main-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--tavazo-white);
  border: 1px solid var(--tavazo-cream-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: var(--tavazo-charcoal);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

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

.product-gallery__nav--prev { left: 12px; }
.product-gallery__nav--next { right: 12px; }

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

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.product-gallery__thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
  aspect-ratio: 1/1;
}

.product-gallery__thumb--active,
.product-gallery__thumb:hover {
  border-color: var(--tavazo-gold);
  box-shadow: 0 0 10px rgba(194, 158, 83, 0.3);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Product Info */
.product-info {
  padding-top: var(--space-md);
}

.product-info__category {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--tavazo-gold);
  margin-bottom: var(--space-sm);
}

.product-info__title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product-info__rating-count {
  font-size: var(--fs-sm);
  color: var(--tavazo-gray);
}

.product-info__price-wrapper {
  margin-bottom: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--tavazo-cream-darker);
  border-bottom: 1px solid var(--tavazo-cream-darker);
}

.product-info__price {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--tavazo-teal);
}

.product-info__price-original {
  font-size: var(--fs-lg);
  color: var(--tavazo-gray-light);
  text-decoration: line-through;
  margin-left: var(--space-sm);
}

.product-info__description {
  font-size: var(--fs-base);
  color: var(--tavazo-charcoal-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

/* Product meta (weight, origin) */
.product-info__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.product-info__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
}

.product-info__meta-label {
  font-weight: var(--fw-semibold);
  color: var(--tavazo-charcoal);
  min-width: 80px;
}

.product-info__meta-value {
  color: var(--tavazo-charcoal-light);
}

/* Add to cart area */
.product-info__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.product-info__wishlist {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--tavazo-gray-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tavazo-gray);
  cursor: pointer;
  background: transparent;
  transition: all var(--transition-fast);
}

.product-info__wishlist:hover {
  border-color: var(--tavazo-error);
  color: var(--tavazo-error);
}

.product-info__wishlist svg {
  width: 20px;
  height: 20px;
}

/* Product guarantees */
.product-info__guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--tavazo-cream);
  border-radius: var(--radius-md);
}

.product-info__guarantee {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--tavazo-gray);
}

.product-info__guarantee svg {
  width: 24px;
  height: 24px;
  color: var(--tavazo-teal);
  margin: 0 auto var(--space-xs);
}

.product-info__guarantee span {
  display: block;
  font-weight: var(--fw-medium);
  color: var(--tavazo-charcoal);
  margin-bottom: 2px;
}


/* ── Product Tabs ── */
.product-tabs {
  margin-top: var(--space-3xl);
}

.product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--tavazo-cream-darker);
}

.product-tabs__btn {
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--tavazo-gray);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.product-tabs__btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tavazo-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.product-tabs__btn--active,
.product-tabs__btn:hover {
  color: var(--tavazo-charcoal);
}

.product-tabs__btn--active::after {
  transform: scaleX(1);
}

.product-tabs__content {
  padding: var(--space-xl) 0;
}

.product-tabs__panel {
  display: none;
}

.product-tabs__panel--active {
  display: block;
}

/* ── Related Products ── */
.related-products {
  margin-top: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--tavazo-cream-darker);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 240px 1fr;
    gap: var(--space-xl);
  }

  .products-grid,
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail {
    gap: var(--space-2xl);
  }
}

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

  .shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    z-index: 400;
    overflow-y: auto;
    padding: 24px;
    border-left: none;
    border-right: 2px solid var(--tavazo-gold);
    background: #fff;
    transition: left 0.3s ease;
    display: block;
  }

  .shop-sidebar--open {
    left: 0;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
  }

  .shop-sidebar__close-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .shop-filter {
    border-bottom: none;
    padding-bottom: var(--space-md);
    margin-bottom: 0;
  }

  .products-grid,
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .shop-topbar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .product-info__guarantees {
    grid-template-columns: 1fr;
  }

  .page-hero__title {
    font-size: var(--fs-2xl);
  }

  /* Show Add to Cart button on mobile (no hover on touch) */
  .product-card__cart-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .product-card__overlay {
    background: transparent !important;
    pointer-events: none;
  }

  .product-card__cart-btn {
    pointer-events: auto;
  }
}

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

  .shop-sidebar {
    grid-template-columns: 1fr;
  }

  .shop-topbar {
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
  }

  .product-tabs__btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-sm);
  }

  .shop-hero__title { font-size: 1.5rem; }
  .page-hero__title { font-size: var(--fs-xl); }

  .product-gallery__thumbs { grid-template-columns: repeat(4, 1fr); gap: 4px; }

  .shop-grid--list .product-card,
  .products-grid--list .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__info .product-card__title { font-size: 14px; }
  .product-card__price-current { font-size: 14px; }

  .shop-topbar__sort { flex-direction: column; gap: 4px; align-items: flex-start; }
  .shop-topbar__sort-select { width: 100%; }

  .shop-pagination { gap: 4px; }
  .shop-pagination__btn,
  .shop-pagination__link { width: 36px; height: 36px; font-size: 12px; }
}
