/* ============================================
   WIDGET: PRICE CARD
   White card with karat price grid
   ============================================ */

/* Outer white card */
.gs-price-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
  width: 100%;
  box-sizing: border-box;
}

/* Card header row: title + location */
.gs-price-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.gs-price-card__heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}

.gs-price-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gs-price-card__location-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.gs-price-card__location-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  color: #000000;
  white-space: nowrap;
}

/* Karat grid: 2 columns */
.gs-karat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Individual karat cell */
.gs-karat-cell {
  background-color: #ffffff;
  border: 1px solid #c3c3c3;
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-sizing: border-box;
}

/* Top row: label + badge */
.gs-karat-cell__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
}

.gs-karat-cell__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  white-space: nowrap;
}

/* Change badge (green = up, red = down) */
.gs-karat-cell__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.gs-karat-cell__badge--up {
  background-color: #0a6700;
}

.gs-karat-cell__badge--down {
  background-color: #b30000;
}

.gs-karat-cell__badge--neutral {
  background-color: #666666;
}

.gs-karat-cell__badge-icon {
  width: 10px;
  height: 14px;
  flex-shrink: 0;
  display: inline-block;
}

/* Price row */
.gs-karat-cell__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.gs-karat-cell__price {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #000000;
  white-space: nowrap;
}

.gs-karat-cell__unit {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
  white-space: nowrap;
}

/* ============================================
   RESPONSIVE: Tablet (≤768px) – 2 cols remain
   but slightly smaller fonts
   ============================================ */
@media (max-width: 768px) {
 

  .gs-karat-grid {
    gap: 12px;
  }

  .gs-karat-cell {
    padding: 12px 16px;
  }
}

/* ============================================
   RESPONSIVE: Mobile (≤480px) – single column
   ============================================ */
@media (max-width: 480px) {
  .gs-karat-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gs-karat-cell {
    padding: 12px 14px;
  }
}
