/* RR Honey shop — typography uses theme rem (1rem ≈ 10px) */

.rr-shop-page {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(232, 137, 26, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(196, 94, 18, 0.08), transparent 50%),
    linear-gradient(180deg, #fffdf9 0%, var(--rr-paper) 40%, #fff 100%);
  padding-top: clamp(3.2rem, 5vw, 4.8rem) !important;
  padding-bottom: clamp(3.2rem, 5vw, 4.8rem) !important;
}

.rr-shop-intro {
  max-width: 72rem;
  margin: 0 auto clamp(2rem, 3vw, 3.2rem);
  text-align: center;
  padding: 0 1.6rem;
}

.rr-shop-intro__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--rr-tamil);
  font-size: var(--rr-fs-md);
  font-weight: 600;
  color: var(--rr-amber-deep);
  letter-spacing: 0.02em;
}

.rr-shop-intro__title {
  margin: 0 0 1.4rem;
  font-family: var(--rr-display);
  font-size: var(--rr-fs-2xl);
  font-weight: 600;
  color: var(--rr-ink);
  line-height: 1.2;
}

.rr-shop-intro__text {
  margin: 0 auto;
  max-width: 64rem;
  font-family: var(--rr-body);
  font-size: var(--rr-fs-md);
  line-height: var(--rr-lh-body);
  color: var(--rr-ink-soft);
}

.rr-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
  padding: 0 clamp(0.8rem, 2vw, 1.6rem);
}

.rr-shop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.rr-shop-chip {
  appearance: none;
  border: 1px solid var(--rr-line);
  background: #fff;
  color: var(--rr-ink-soft);
  font-family: var(--rr-body);
  font-size: var(--rr-fs-sm);
  font-weight: 600;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rr-shop-chip:hover {
  border-color: var(--rr-amber);
  color: var(--rr-ink);
}

.rr-shop-chip.is-active {
  background: var(--rr-ink);
  border-color: var(--rr-ink);
  color: #fff;
}

.rr-shop-toolbar .product__showing--count {
  margin: 0;
  font-family: var(--rr-body);
  font-size: var(--rr-fs-sm);
  color: var(--rr-ink-soft);
}

.rr-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 1.8rem);
  padding: 0 clamp(0.8rem, 2vw, 1.6rem) clamp(2.4rem, 4vw, 3.6rem);
}

.rr-shop-grid--value {
  padding-top: 0;
}

@media (min-width: 1200px) {
  .rr-shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rr-shop-grid--value {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 92rem;
    margin-inline: auto;
  }
}

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

.rr-shop-value-head {
  text-align: center;
  padding: clamp(3.2rem, 5vw, 4.8rem) 1.6rem 2rem;
}

.rr-shop-value-title {
  margin: 0 0 1rem;
  font-family: var(--rr-display);
  font-size: var(--rr-fs-2xl);
  color: var(--rr-ink);
}

.rr-shop-value-desc {
  margin: 0 auto;
  max-width: 56rem;
  font-family: var(--rr-body);
  font-size: var(--rr-fs-md);
  color: var(--rr-ink-soft);
  line-height: var(--rr-lh-body);
}

/* Vertical card: image on top, details below — compact */
.rr-shop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rr-line);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.6rem 2rem rgba(26, 20, 15, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rr-shop-card:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1rem 2.8rem rgba(26, 20, 15, 0.1);
}

.rr-shop-card--highlight {
  outline: 0.3rem solid var(--rr-amber);
  outline-offset: 0.3rem;
}

.rr-shop-card__media {
  position: relative;
  isolation: isolate;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(145deg, #f3ebe0 0%, #f7d9a8 55%, #e8c078 100%);
}

.rr-shop-card__media img {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-shop-card__badge {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  background: var(--rr-ink);
  color: #fff;
  font-family: var(--rr-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.rr-shop-card__badge--pre {
  background: var(--rr-amber-deep);
}

.rr-shop-card__body {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1 1 auto;
}

.rr-shop-card__tamil {
  margin: 0;
  font-family: var(--rr-tamil);
  font-size: var(--rr-fs-sm);
  font-weight: 600;
  color: var(--rr-amber-deep);
}

.rr-shop-card__title {
  margin: 0;
  font-family: var(--rr-display);
  font-size: clamp(1.8rem, 1.6vw, 2.2rem);
  font-weight: 600;
  color: var(--rr-ink);
  line-height: 1.2;
}

.rr-shop-card__text {
  margin: 0;
  font-family: var(--rr-body);
  font-size: var(--rr-fs-sm);
  line-height: 1.5;
  color: var(--rr-ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rr-shop-field__label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--rr-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rr-ink-soft);
}

.rr-shop-format {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.rr-shop-format__btn {
  appearance: none;
  border: 1px solid var(--rr-line);
  background: var(--rr-paper);
  color: var(--rr-ink-soft);
  font-family: var(--rr-body);
  font-size: var(--rr-fs-xs);
  font-weight: 600;
  padding: 0.8rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rr-shop-format__btn.is-active {
  background: var(--rr-amber);
  border-color: var(--rr-amber);
  color: #fff;
}

.rr-shop-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rr-shop-pill {
  appearance: none;
  border: 1px solid var(--rr-line);
  background: #fff;
  color: var(--rr-ink);
  font-family: var(--rr-body);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rr-shop-pill.is-active {
  background: var(--rr-ink);
  border-color: var(--rr-ink);
  color: #fff;
}

.rr-shop-card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
}

.rr-shop-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rr-line);
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
}

.rr-shop-stepper__btn {
  appearance: none;
  border: 0;
  background: transparent;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rr-ink);
  cursor: pointer;
}

.rr-shop-stepper__btn:hover {
  background: var(--rr-paper-2);
}

.rr-shop-stepper__input {
  width: 3.4rem;
  border: 0;
  border-left: 1px solid var(--rr-line);
  border-right: 1px solid var(--rr-line);
  text-align: center;
  font-family: var(--rr-body);
  font-size: var(--rr-fs-sm);
  font-weight: 600;
  height: 3.2rem;
  color: var(--rr-ink);
  -moz-appearance: textfield;
}

.rr-shop-stepper__input::-webkit-outer-spin-button,
.rr-shop-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.rr-shop-price {
  text-align: right;
}

.rr-shop-price__current {
  display: block;
  font-family: var(--rr-display);
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: 600;
  color: var(--rr-ink);
  line-height: 1.1;
}

.rr-shop-price__old {
  font-family: var(--rr-body);
  font-size: 1.2rem;
  color: #9a8b7c;
  text-decoration: line-through;
}

.rr-shop-price__unit {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--rr-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rr-ink-soft);
}

.rr-shop-add {
  appearance: none;
  width: 100%;
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  background: var(--rr-amber);
  color: #fff;
  font-family: var(--rr-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.rr-shop-add:hover {
  background: var(--rr-amber-deep);
}

.rr-shop-add:active {
  transform: scale(0.985);
}

.rr-shop-empty {
  text-align: center;
  padding: 4.8rem 1.6rem;
  color: var(--rr-ink-soft);
  font-family: var(--rr-body);
  font-size: var(--rr-fs-md);
}

.breadcrumb__section.rr-shop-breadcrumb {
  background:
    linear-gradient(120deg, rgba(26, 20, 15, 0.75), rgba(196, 94, 18, 0.45)),
    url("../img/banner/banner1.webp") center / cover no-repeat;
  padding: clamp(5.6rem, 10vw, 8rem) 0;
  text-align: center;
}

.breadcrumb__section.rr-shop-breadcrumb .breadcrumb__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.breadcrumb__section.rr-shop-breadcrumb .breadcrumb__content--title {
  font-family: var(--rr-display);
  font-size: var(--rr-fs-2xl) !important;
  font-weight: 600;
}

.breadcrumb__section.rr-shop-breadcrumb .breadcrumb__content--menu {
  justify-content: center;
  font-size: var(--rr-fs-sm);
}

body.rr-shop-body .newsletter__content--subtitle {
  font-size: var(--rr-fs-md) !important;
}

body.rr-shop-body .newsletter__content--title {
  font-size: var(--rr-fs-xl) !important;
  line-height: 1.25 !important;
}
