/** Shopify CDN: Minification failed

Line 14:14 Expected identifier but found whitespace
Line 14:16 Unexpected "{"
Line 14:25 Expected ":"
Line 14:51 Expected ":"
Line 15:17 Expected identifier but found whitespace
Line 15:19 Unexpected "{"
Line 15:28 Expected ":"
Line 15:57 Expected ":"

**/
.tabbed-collections-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.tabbed-collections__header {
  text-align: center;
  margin-bottom: 32px;
}

.tabbed-collections__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c97b8a;
  font-weight: 600;
  margin: 0 0 8px;
}

.tabbed-collections__title {
  font-size: 2rem;
  font-weight: 400;
  color: #2c1a12;
  margin: 0;
  font-family: var(--font-heading-family, 'Playfair Display', serif);
}

/* ===== TABS ===== */
.tabbed-collections__tabs {
  display: flex;
  border-bottom: 2px solid #f0e4df;
  margin-bottom: 32px;
  gap: 0;
}

.tabbed-collections__tab {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 14px 24px;
  /* FIX 3: Tab labels bigger + darker + clearer */
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a6060;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body-family, 'Jost', sans-serif);
  text-align: center;
}

.tabbed-collections__tab:hover {
  color: #c97b8a;
}

.tabbed-collections__tab.is-active {
  color: #c97b8a;
  border-bottom: 3px solid #c97b8a;
  background: linear-gradient(to bottom, #fde8f0 0%, transparent 100%);
}

.tabbed-collections__panel {
  display: none;
}

.tabbed-collections__panel.is-active {
  display: block;
}

/* ===== FIX 1: PRODUCT GRID - proper equal height alignment ===== */
.tabbed-collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 990px) {
  .tabbed-collections__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .tabbed-collections__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .tabbed-collections__tab {
    font-size: 0.82rem;
    padding: 12px 8px;
    letter-spacing: 0.5px;
  }
}

/* ===== PRODUCT CARD - equal height, bottom-aligned button ===== */
.tabbed-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  border: 0.5px solid #f0e4df;
}

.tabbed-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,123,138,0.12);
}

.tabbed-product-card__image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fdf5f2;
  flex-shrink: 0;
}

.tabbed-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.tabbed-product-card__img--hover {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
}

.tabbed-product-card__image-wrap:hover .tabbed-product-card__img--hover {
  opacity: 1;
}

.tabbed-product-card__placeholder {
  width: 100%;
  height: 100%;
  background: #fde8f0;
}

.tabbed-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1.5px solid;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

.tabbed-product-card__badge--new {
  background: #fff;
  color: #c97b8a;
  border-color: #c97b8a;
}

.tabbed-product-card__badge--sale {
  background: #c97b8a;
  color: #fff;
  border-color: #c97b8a;
}

.tabbed-product-card__badge--sold {
  background: #2c1a12;
  color: #fff;
  border-color: #2c1a12;
}

/* Info fills remaining space, button always at bottom */
.tabbed-product-card__info {
  padding: 12px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.tabbed-product-card__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2c1a12;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

.tabbed-product-card__title:hover {
  color: #c97b8a;
}

.tabbed-product-card__price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tabbed-product-card__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #c97b8a;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

.tabbed-product-card__price--sale {
  color: #c97b8a;
}

.tabbed-product-card__price--compare {
  font-size: 0.8rem;
  color: #9a8880;
  font-weight: 400;
  text-decoration: line-through;
}

.tabbed-product-card__save {
  font-size: 0.72rem;
  font-weight: 700;
  color: #c97b8a;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

/* FIX 2: HIDE color swatches (gole gole) */
.tabbed-product-card__swatches {
  display: none;
}

.tabbed-product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.tabbed-product-card__stars {
  color: #c97b8a;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.tabbed-product-card__rating-count {
  font-size: 0.75rem;
  color: #9a8880;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

/* Spacer pushes button to bottom */
.tabbed-product-card__spacer {
  flex: 1;
}

/* FIX 4: Button text = Add to Cart */
.tabbed-product-card__btn {
  width: 100%;
  padding: 11px 16px;
  background: #c97b8a;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: auto;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

.tabbed-product-card__btn:hover {
  background: #b5667a;
}

.tabbed-product-card__btn--notify {
  background: transparent;
  color: #c97b8a;
  border: 1.5px solid #c97b8a;
}

.tabbed-product-card__btn--notify:hover {
  background: #fde8f0;
}

.tabbed-collections__view-all {
  text-align: center;
  margin-top: 36px;
}

.tabbed-collections__view-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #9a8880;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e8e0dc;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

.tabbed-collections__view-link:hover {
  color: #c97b8a;
  border-color: #c97b8a;
}
