/* Trustpedia theme — product cards, home sections, footer, Woo internals */

.max-w-store { max-width: 72rem; }
/* Product pages: use wider shell so hero + body aren't a narrow column */
.max-w-product,
.tp-product-page {
  max-width: min(100%, 90rem);
  width: 100%;
}

/* ---- Links / section chrome ---- */
.tp-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #be185d;
  text-decoration: none;
}
.tp-link:hover { color: #9d174d; }

.tp-section { padding: 3.5rem 0; }
.tp-section--muted { background: rgba(253, 242, 246, 0.55); }
.tp-section__head { margin-bottom: 0.25rem; }
.tp-section__head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ---- Clause 46 agent banner (Liateam) ---- */
.tp-agent-banner {
  border-bottom: 1px solid #fcd34d;
  background: linear-gradient(90deg, #fffbeb 0%, #fef3c7 50%, #fffbeb 100%);
  color: #1c1917;
}
.tp-agent-banner__inner {
  margin: 0 auto;
  max-width: 72rem;
  padding: 0.7rem 1rem;
  text-align: center;
}
.tp-agent-banner__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  font-weight: 500;
}
.tp-agent-banner__text strong {
  font-weight: 800;
  color: #9d174d;
}
.tp-agent-banner__official {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #57534e;
}
.tp-agent-banner__official a {
  font-weight: 700;
  color: #be185d;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tp-agent-banner__official a:hover { color: #9d174d; }
@media (min-width: 640px) {
  .tp-agent-banner__text { font-size: 0.875rem; }
  .tp-agent-banner__official { font-size: 0.8125rem; }
}

/* ---- Trust bar ---- */
.tp-trust__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tp-trust__icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #fce7f3;
  color: #be185d;
}
.tp-trust__icon--gold {
  background: #fef3c7;
  color: #b45309;
}

/* ---- Category grid ---- */
.tp-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .tp-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}
@media (min-width: 1024px) {
  .tp-cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.tp-cat {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #fce7f3;
  background: #fff;
  box-shadow: 0 4px 24px -4px rgba(190, 24, 93, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tp-cat:hover {
  transform: translateY(-3px);
  border-color: #f9a8d4;
  box-shadow: 0 12px 40px -8px rgba(190, 24, 93, 0.14);
}
.tp-cat__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(160deg, #fff1f6 0%, #fdf2f6 50%, #fffbeb 100%);
  overflow: hidden;
}
.tp-cat__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}
.tp-cat:hover .tp-cat__img { transform: scale(1.04); }
.tp-cat__placeholder {
  font-size: 2rem;
  color: #fbcfe8;
}
.tp-cat__count {
  position: absolute;
  bottom: 0.65rem;
  inset-inline-start: 0.65rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.15rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #be185d;
  box-shadow: 0 1px 4px rgba(28, 25, 23, 0.06);
}
.tp-cat__name {
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1c1917;
}

/* ---- Product cards ---- */
.woocommerce ul.products,
ul.products.tp-products,
.tp-products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin: 1.75rem 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  width: 100%;
}
@media (min-width: 1024px) {
  .woocommerce ul.products,
  ul.products.tp-products,
  .tp-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .woocommerce ul.products,
  ul.products.tp-products,
  .tp-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}

.tp-card {
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #fce7f3;
  background: #fff;
  box-shadow: 0 4px 24px -4px rgba(190, 24, 93, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}
.tp-card:hover {
  transform: translateY(-2px);
  border-color: #f9a8d4;
  box-shadow: 0 12px 36px -10px rgba(190, 24, 93, 0.16);
}
.tp-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  padding: 1rem;
  background: #fdf2f6;
  overflow: hidden;
}
.tp-card__img,
.tp-card .tp-card__media img,
.tp-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transition: transform 0.35s ease;
}
.tp-card:hover .tp-card__img,
.tp-card:hover .tp-card__media img {
  transform: scale(1.04);
}
.tp-card__badge {
  position: absolute;
  inset-inline-start: 0.65rem;
  top: 0.65rem;
  z-index: 2;
  border-radius: 0.5rem;
  background: #be185d;
  padding: 0.2rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
}
.tp-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.95rem 1rem 1.1rem;
}
.tp-card__title-link { text-decoration: none; color: inherit; }
.tp-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.75rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1c1917;
}
.tp-card:hover .tp-card__title { color: #be185d; }
.tp-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.85rem;
}
.tp-card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #be185d;
}
.tp-card__price del,
.woocommerce .price del,
.tp-sticky-buy__price del {
  display: none !important;
}
.tp-card__price ins,
.woocommerce .price ins {
  text-decoration: none;
  background: transparent;
}
.tp-card__cart,
.tp-card a.tp-card__cart {
  display: inline-flex !important;
  min-height: 2.15rem !important;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem !important;
  background: #be185d !important;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-decoration: none !important;
  border: none !important;
  transition: background 0.2s ease, transform 0.15s ease;
}
.tp-card__cart:hover {
  background: #9d174d !important;
  transform: scale(0.98);
}

/* ---- Brands ---- */
.tp-brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.tp-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 9999px;
  border: 1px solid #fbcfe8;
  background: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #44403c;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.tp-brand-chip:hover {
  border-color: #be185d;
  background: #fff1f6;
  color: #9d174d;
}
.tp-brand-chip__count {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #be185d;
  opacity: 0.85;
}

/* ---- Why us ---- */
.tp-why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .tp-why { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .tp-why { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.tp-why__card {
  border-radius: 1rem;
  border: 1px solid #fce7f3;
  background: #fff;
  padding: 1.25rem 1.15rem;
  box-shadow: 0 4px 20px -6px rgba(190, 24, 93, 0.06);
}
.tp-why__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #831843;
}
.tp-why__text {
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #57534e;
}

/* ---- Blog cards ---- */
.tp-blog-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 768px) {
  .tp-blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.tp-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #fce7f3;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px -6px rgba(190, 24, 93, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.tp-blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(190, 24, 93, 0.14);
}
.tp-blog-card__media {
  aspect-ratio: 16 / 10;
  background: #fdf2f6;
  overflow: hidden;
}
.tp-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-blog-card__body { padding: 1rem; }
.tp-blog-card__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1c1917;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tp-blog-card:hover .tp-blog-card__title { color: #be185d; }
.tp-blog-card__excerpt {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #78716c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- CTA ---- */
.tp-cta {
  background: linear-gradient(135deg, #be185d 0%, #9d174d 55%, #831843 100%);
}
.tp-cta__btn {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.6rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #be185d;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s;
}
.tp-cta__btn:hover { background: #fff1f6; transform: translateY(-1px); }
.tp-cta__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.tp-cta__btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* ---- Footer ---- */
.tp-footer a { text-decoration: none; }

/* ---- Archive header ---- */
.tp-archive-head {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: 1.15rem;
  border: 1px solid #fce7f3;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(253, 242, 248, 0.95) 0%, rgba(255, 255, 255, 0.4) 45%, #fff 100%),
    linear-gradient(160deg, #fff 0%, #fff7fb 100%);
}
.tp-archive-head__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.tp-archive-head h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #9d174d;
  line-height: 1.35;
}
.tp-archive-head .tp-archive-desc {
  margin: 0.55rem 0 0;
  max-width: 38rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #57534e;
}
.tp-archive-count {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid #fbcfe8;
  box-shadow: 0 4px 16px -6px rgba(190, 24, 93, 0.12);
  line-height: 1.2;
}
.tp-archive-count strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: #be185d;
}
.tp-archive-count span {
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #a8a29e;
}
.tp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.8125rem;
  color: #a8a29e;
}
.tp-breadcrumb a {
  color: #78716c;
  text-decoration: none;
}
.tp-breadcrumb a:hover { color: #be185d; }

/* Category chips */
.tp-cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.tp-cat-chips--center { justify-content: center; }
.tp-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 9999px;
  border: 1px solid #f9a8d4;
  background: #fff;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #44403c;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.tp-cat-chip:hover {
  background: #fff1f6;
  border-color: #be185d;
  color: #9d174d;
  transform: translateY(-1px);
}
.tp-cat-chip__n {
  display: inline-flex;
  min-width: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #fdf2f8;
  padding: 0.1rem 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #be185d;
}

/* Archive toolbar (result count + sorting) */
.tp-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 1rem;
  padding: 0.7rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid #fce7f3;
  background: #fff;
}
.tp-toolbar .woocommerce-result-count,
.tp-toolbar .woocommerce-ordering {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
.tp-toolbar .woocommerce-result-count {
  font-size: 0.8125rem;
  color: #78716c;
}
.tp-toolbar .woocommerce-ordering select {
  min-height: 2.5rem;
  border: 1px solid #f9a8d4;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  color: #44403c;
  cursor: pointer;
}
.woocommerce-page ul.products {
  clear: both;
}

/* Empty state */
.tp-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0.5rem 0 2rem;
  padding: 2.25rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px dashed #f9a8d4;
  background: linear-gradient(180deg, #fff7fb 0%, #fff 70%);
}
.tp-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 1.15rem;
  background: #fdf2f8;
  color: #be185d;
  margin-bottom: 1rem;
}
.tp-empty__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1c1917;
}
.tp-empty__text {
  margin: 0.5rem 0 0;
  max-width: 26rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #78716c;
}
.tp-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.tp-empty__btn {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #be185d;
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.tp-empty__btn:hover {
  background: #9d174d;
  transform: translateY(-1px);
  color: #fff;
}
.tp-empty__btn--ghost {
  background: #fff;
  color: #be185d;
  border: 1px solid #f9a8d4;
}
.tp-empty__btn--ghost:hover {
  background: #fff1f6;
  color: #9d174d;
}
.tp-empty .tp-cat-chips {
  margin-top: 1.5rem;
  max-width: 40rem;
}
.tp-archive-suggest {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #fce7f3;
}

/* Hide default Woo empty notice when custom empty is used */
.tp-woo-wrap > .woocommerce-info {
  display: none;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
  margin: 2rem 0 0.5rem;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
  margin: 0 !important;
  overflow: visible !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex !important;
  min-width: 2.5rem;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem !important;
  border: 1px solid #fce7f3 !important;
  background: #fff !important;
  padding: 0.35rem 0.65rem !important;
  font-size: 0.8125rem !important;
  font-weight: 600;
  color: #57534e !important;
  text-decoration: none !important;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: #f9a8d4 !important;
  background: #fff1f6 !important;
  color: #be185d !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #be185d !important;
  border-color: #be185d !important;
  color: #fff !important;
}

/* ---- Single product ---- */
.woocommerce div.product.tp-product {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 5.5rem;
}
@media (min-width: 768px) {
  .woocommerce div.product.tp-product { padding-bottom: 0; gap: 1.75rem; }
}
.tp-product__hero {
  display: grid;
  gap: 1.5rem 2rem;
  align-items: start;
  width: 100%;
}
@media (min-width: 1024px) {
  .tp-product__hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 2.25rem 2.75rem;
  }
}
.tp-product__hero .woocommerce-product-gallery,
.tp-product__hero .images,
.tp-product__hero .tp-pgallery,
.woocommerce div.product.tp-product .tp-product__hero div.images,
.woocommerce div.product.tp-product .tp-product__hero .woocommerce-product-gallery {
  opacity: 1 !important;
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  clear: none !important;
}
.tp-product__jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #fce7f3;
  background: #fff7fa;
  position: sticky;
  top: 4.25rem;
  z-index: 20;
}
.tp-product__jump a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9d174d;
  text-decoration: none;
}
.tp-product__jump a:hover {
  background: #fff;
  color: #be185d;
}
.tp-product__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

/* Gallery */
.tp-pgallery {
  position: sticky;
  top: 1rem;
}
.tp-pgallery__frame {
  border-radius: 1.75rem;
  border: 1px solid #fce7f3;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(253, 242, 248, 0.95), transparent 70%),
    linear-gradient(165deg, #fff 0%, #fdf2f8 48%, #fffbeb 100%);
  padding: 0.85rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(251, 207, 232, 0.45),
    0 16px 40px -22px rgba(190, 24, 93, 0.28),
    0 32px 64px -40px rgba(190, 24, 93, 0.16);
}
@media (min-width: 640px) {
  .tp-pgallery__frame {
    border-radius: 1.5rem;
    padding: 1rem;
  }
}
.tp-pgallery__main {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1.15rem;
}
.tp-pgallery__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-pgallery__slide[hidden] { display: none !important; }
.tp-pgallery__img,
.tp-pgallery .wp-post-image,
.woocommerce div.product .woocommerce-product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
}
.tp-pgallery__img {
  padding: 1.15rem;
  filter: drop-shadow(0 18px 28px rgba(88, 28, 55, 0.12));
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}
@media (min-width: 640px) {
  .tp-pgallery__img { padding: 1.75rem; }
}
.tp-pgallery__slide.is-active .tp-pgallery__img {
  transform: scale(1);
}
.tp-pgallery__dock {
  position: absolute;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(252, 231, 243, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -10px rgba(28, 25, 23, 0.22);
}
@media (min-width: 640px) {
  .tp-pgallery__dock {
    inset-inline: 1.1rem;
    bottom: 1.1rem;
  }
}
.tp-pgallery__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #fce7f3;
  border-radius: 9999px;
  background: #fff;
  color: #9d174d;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.tp-pgallery__btn:hover {
  background: #fff1f6;
  border-color: #f9a8d4;
}
.tp-pgallery__btn:active { transform: scale(0.95); }
.tp-pgallery__btn:focus-visible {
  outline: 2px solid #be185d;
  outline-offset: 2px;
}
.tp-pgallery__count {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #78716c;
  font-variant-numeric: tabular-nums;
}
.tp-pgallery__count b {
  color: #be185d;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 800;
}
.tp-pgallery__count em { font-style: normal; }
.tp-pgallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding-inline: 0.15rem;
}
.tp-pgallery__thumb {
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.25rem;
  border-radius: 0.75rem;
  border: 1.5px solid #fce7f3;
  background:
    radial-gradient(ellipse at center, #fdf2f8 0%, #fff 70%);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.62;
  transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 640px) {
  .tp-pgallery__thumb {
    width: 4rem;
    height: 4rem;
  }
}
.tp-pgallery__thumb.is-active,
.tp-pgallery__thumb:hover {
  opacity: 1;
  border-color: #be185d;
  box-shadow: 0 0 0 2px rgba(190, 24, 93, 0.18);
}
.tp-pgallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0.4rem;
}
.tp-pgallery__placeholder {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9a8d4;
  padding: 2rem;
}
.tp-pgallery__placeholder img {
  max-width: 8rem;
  opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
  .tp-pgallery__img {
    transition: none;
    filter: none;
  }
}

/* Summary — defeat Woo .summary { width:48% } so column fills 1fr */
.woocommerce div.product.tp-product .tp-product__hero .summary,
.woocommerce div.product.tp-product .tp-product__hero .entry-summary,
.tp-product__summary {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  min-width: 0;
  box-sizing: border-box;
}
.tp-product__summary > * {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.tp-product__brand-line {
  margin: 0;
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #be185d;
}
.tp-product__brand-line a { color: inherit; text-decoration: none; }
.tp-product__brand-line a:hover { text-decoration: underline; text-underline-offset: 3px; }

.woocommerce div.product .product_title,
.tp-product__summary .product_title {
  margin: 0;
  width: 100%;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800;
  color: #1c1917;
  line-height: 1.45;
  text-align: justify;
  text-align-last: right;
  text-justify: inter-word;
  hyphens: auto;
}
.woocommerce div.product .product_title::after,
.tp-product__summary .product_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.9rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #be185d 0%, #c4a574 55%, rgba(196, 165, 116, 0.15) 100%);
}
.woocommerce div.product .woocommerce-product-rating {
  margin: 0;
  width: 100%;
}
.woocommerce div.product p.price,
.tp-product__summary p.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  width: 100%;
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid #fce7f3;
  background:
    linear-gradient(135deg, #fff7fa 0%, #ffffff 48%, #fffbeb 100%);
  box-shadow: 0 10px 28px -22px rgba(190, 24, 93, 0.35);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #be185d;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.woocommerce div.product p.price .woocommerce-Price-amount,
.tp-product__summary p.price .woocommerce-Price-amount {
  font-weight: 800;
}
.woocommerce div.product .woocommerce-product-details__short-description,
.tp-product__summary .woocommerce-product-details__short-description {
  margin: 0;
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #57534e;
  text-align: justify;
  text-align-last: right;
  text-justify: inter-word;
}
.woocommerce div.product .product_meta,
.tp-product__summary .product_meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: #fff7fa;
  border: 1px solid #fce7f3;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #57534e;
  text-align: justify;
  text-align-last: right;
}
.woocommerce div.product .product_meta > span,
.tp-product__summary .product_meta > span {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #fce7f3;
  box-sizing: border-box;
}
.woocommerce div.product .product_meta a,
.tp-product__summary .product_meta a {
  color: #be185d;
  font-weight: 700;
  text-decoration: none;
}
.woocommerce div.product .product_meta a:hover,
.tp-product__summary .product_meta a:hover { color: #9d174d; text-decoration: underline; text-underline-offset: 2px; }

.woocommerce div.product form.cart,
.tp-product__summary form.cart {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
}
.woocommerce div.product form.cart .quantity,
.tp-product__summary form.cart .quantity {
  flex: 0 0 auto;
  margin: 0;
}
.woocommerce div.product form.cart .single_add_to_cart_button,
.tp-product__summary form.cart .single_add_to_cart_button {
  flex: 1 1 auto;
  width: auto !important;
  min-width: 0;
  min-height: 3.15rem !important;
  justify-content: center;
  font-size: 0.95rem !important;
}
@media (max-width: 420px) {
  .woocommerce div.product form.cart,
  .tp-product__summary form.cart {
    flex-wrap: wrap;
  }
  .woocommerce div.product form.cart .single_add_to_cart_button,
  .tp-product__summary form.cart .single_add_to_cart_button {
    flex: 1 1 100%;
  }
}

.woocommerce span.onsale,
.tp-card__badge {
  display: none !important;
}

.tp-product__trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 480px) {
  .tp-product__trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.tp-product__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid #fce7f3;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  color: #44403c;
  text-align: center;
  box-sizing: border-box;
}
.tp-product__trust-icon {
  display: inline-flex;
  color: #c4a574;
  flex-shrink: 0;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: #be185d !important;
  color: #fff !important;
  border-radius: 0.85rem !important;
  font-weight: 700 !important;
  min-height: 2.85rem;
  padding-inline: 1.35rem !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: #9d174d !important;
  transform: translateY(-1px);
}
.woocommerce .quantity .qty {
  border: 1px solid #fbcfe8;
  border-radius: 0.85rem;
  min-height: 44px;
  min-width: 4.25rem;
  padding: 0.5rem 0.75rem;
  text-align: center;
  background: #fff;
}

/* Stacked body sections — full-bleed within product shell */
.tp-product-section {
  margin-top: 0.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid #fce7f3;
  width: 100%;
}
.tp-product-section__title {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1c1917;
}
.tp-product-section__title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 0.55rem;
  border-radius: 9999px;
  background: #c4a574;
}

.prose-product {
  max-width: min(100%, 78rem);
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.95;
  color: #44403c;
}
.prose-product h2 {
  margin: 2rem 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1c1917;
  line-height: 1.45;
}
.prose-product h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #292524;
}
.prose-product p {
  margin: 0 0 1rem;
  text-align: justify;
  text-align-last: right;
  text-justify: inter-word;
}
.prose-product ul,
.prose-product ol {
  margin: 0 0 1.15rem;
  padding-inline-start: 1.25rem;
}
.prose-product li { margin-bottom: 0.4rem; }
.prose-product a {
  color: #be185d;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose-product a:hover { color: #9d174d; }
.prose-product strong { color: #1c1917; }
.prose-product .tp-faq {
  margin: 0.85rem 0;
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  border: 1px solid #fce7f3;
  background: #fff7fa;
}
.prose-product .tp-faq h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}
.prose-product .tp-faq p {
  margin: 0;
  font-size: 0.9rem;
  color: #57534e;
  text-align: justify;
  text-align-last: right;
}
.prose-product .tp-feature-grid {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) {
  .prose-product .tp-feature-grid { grid-template-columns: 1fr 1fr; }
}
.prose-product .tp-feature-grid li {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid #fce7f3;
  background: #fff;
  font-size: 0.875rem;
  line-height: 1.7;
}

.tp-product-specs__table .shop_attributes {
  width: 100%;
  border-collapse: collapse;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #fce7f3;
  background: #fff;
}
.tp-product-specs__table .shop_attributes th,
.tp-product-specs__table .shop_attributes td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #fdf2f6;
  font-size: 0.875rem;
  text-align: right;
}
.tp-product-specs__table .shop_attributes th {
  width: 34%;
  background: #fff7fa;
  font-weight: 600;
  color: #57534e;
}
.tp-product-specs__table .shop_attributes tr:last-child th,
.tp-product-specs__table .shop_attributes tr:last-child td {
  border-bottom: 0;
}

/* Reviews */
.tp-reviews {
  margin-top: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid #fce7f3;
}
.tp-reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.tp-reviews__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1c1917;
  max-width: 36rem;
  line-height: 1.45;
}
.tp-reviews__sub {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #78716c;
  max-width: 36rem;
}
.tp-reviews__summary {
  min-width: 11.5rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid #fce7f3;
  background:
    linear-gradient(160deg, #fff 0%, #fff7fa 100%);
  box-shadow: 0 8px 28px -12px rgba(190, 24, 93, 0.18);
  text-align: center;
}
.tp-reviews__avg {
  font-size: 2rem;
  font-weight: 800;
  color: #1c1917;
  line-height: 1;
}
.tp-reviews__of {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #a8a29e;
}
.tp-reviews__stars { margin-top: 0.45rem; }
.tp-reviews__count {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #78716c;
}
.tp-reviews__bars {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
.tp-reviews__bars li {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1.5rem;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  color: #78716c;
}
.tp-reviews__bar-track {
  height: 0.35rem;
  border-radius: 9999px;
  background: #fce7f3;
  overflow: hidden;
}
.tp-reviews__bar-track > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c4a574, #be185d);
}

.tp-reviews__empty {
  text-align: center;
  padding: 2.25rem 1.25rem;
  border-radius: 1.15rem;
  border: 1.5px dashed #f9a8d4;
  background: rgba(255, 247, 250, 0.7);
}
.tp-reviews__empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  background: #fff1f6;
  color: #c4a574;
}
.tp-reviews__empty-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1c1917;
}
.tp-reviews__empty-text {
  margin: 0.5rem auto 0;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #78716c;
}

.tp-reviews__items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tp-reviews__items .review,
.tp-reviews__items .comment {
  margin: 0 0 0.85rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid #fce7f3;
  background: #fff;
  box-shadow: 0 4px 20px -8px rgba(190, 24, 93, 0.1);
}
.tp-reviews__items .meta {
  font-size: 0.8125rem;
  color: #78716c;
}
.tp-reviews__items .description {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #44403c;
}

.tp-reviews__form-wrap {
  margin-top: 1.5rem;
  padding: 1.35rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid #fce7f3;
  background:
    linear-gradient(135deg, #fff 0%, #fff7fa 55%, rgba(196, 165, 116, 0.08) 100%);
  box-shadow: 0 10px 32px -14px rgba(190, 24, 93, 0.16);
}
.tp-reviews--empty .tp-reviews__form-wrap {
  margin-top: 1rem;
  padding: 1rem 1rem 1.1rem;
}
.tp-reviews--empty .tp-reviews__field textarea {
  min-height: 5.5rem;
}
.tp-reviews__form .comment-form-rating > select,
.tp-reviews__form p.stars,
.tp-reviews__form p.stars a {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none !important;
}
.tp-reviews__form-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1c1917;
}
.tp-reviews__form-note {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #78716c;
  line-height: 1.7;
}
.tp-reviews__field {
  margin: 0 0 0.9rem;
}
.tp-reviews__field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #44403c;
}
.tp-reviews__field input,
.tp-reviews__field textarea,
.tp-reviews__rating select {
  width: 100%;
  border: 1px solid #fbcfe8;
  border-radius: 0.85rem;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  background: #fff;
  font-size: 0.9rem;
  color: #1c1917;
}
.tp-reviews__field textarea { min-height: 8rem; resize: vertical; line-height: 1.8; }
.tp-reviews__field input:focus,
.tp-reviews__field textarea:focus,
.tp-reviews__rating select:focus {
  outline: none;
  border-color: #be185d;
  box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.15);
}
.tp-reviews__rating { margin-bottom: 1rem; position: relative; }
.tp-reviews__rating > label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.tp-reviews__rating select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.tp-star-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
}
.tp-star-picker__btn {
  border: 0;
  background: transparent;
  font-size: 1.65rem;
  line-height: 1;
  color: #e7e5e4;
  cursor: pointer;
  padding: 0.15rem;
  transition: color 0.15s ease, transform 0.15s ease;
}
.tp-star-picker__btn:hover,
.tp-star-picker__btn.is-active,
.tp-star-picker__btn.is-hover {
  color: #c4a574;
  transform: scale(1.08);
}

.woocommerce #review_form #respond .form-submit input {
  margin-top: 0.35rem;
}

/* Related */
.woocommerce div.product .related > h2,
.woocommerce div.product .upsells > h2 {
  margin: 2rem 0 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1c1917;
}

/* Sticky mobile CTA */
.tp-sticky-buy {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  border-top: 1px solid #fce7f3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 -10px 30px -16px rgba(28, 25, 23, 0.25);
}
.tp-sticky-buy__price {
  font-size: 1rem;
  font-weight: 800;
  color: #be185d;
}
.tp-sticky-buy__btn {
  flex: 1;
  max-width: 14rem;
  text-align: center !important;
}
@media (min-width: 768px) {
  .tp-sticky-buy { display: none !important; }
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: #be185d;
  border-radius: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .tp-pgallery__btn,
  .tp-star-picker__btn,
  .woocommerce a.button,
  .woocommerce button.button {
    transition: none;
  }
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  float: none;
  width: 100%;
}
@media (min-width: 768px) {
  form.woocommerce-checkout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
  }
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid #fbcfe8;
  border-radius: 0.75rem;
  min-height: 44px;
  padding: 0.6rem 1rem;
}
.woocommerce-cart-form,
.cart-collaterals {
  margin-top: 1rem;
}

/* Magazine */
.tp-mag-wrap h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #9d174d;
  margin: 0 0 1.75rem;
}
.tp-mag-article h1 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #9d174d;
  line-height: 1.4;
}
.tp-mag-article .tp-mag-meta {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #a8a29e;
}
.tp-mag-article .tp-mag-cover {
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #fce7f3;
}
.tp-mag-article .tp-mag-content {
  margin-top: 2rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #44403c;
}

/* ── Homepage hero slider ── */
.tp-hero-slider {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0.75rem 0 1.25rem;
  background:
    radial-gradient(ellipse 90% 70% at 10% -10%, rgba(251, 207, 232, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 60% at 95% 0%, rgba(254, 243, 199, 0.35), transparent 50%),
    linear-gradient(180deg, #fff8fb 0%, #ffffff 70%);
}
.tp-hero-slider__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.tp-hero-slider__blob {
  position: absolute;
  border-radius: 9999px;
  opacity: 0.7;
  filter: blur(48px);
  animation: tp-hero-float 14s ease-in-out infinite;
}
.tp-hero-slider__blob--a {
  inset-inline-start: -4rem;
  top: 2rem;
  width: 14rem;
  height: 14rem;
  background: rgba(251, 207, 232, 0.7);
}
.tp-hero-slider__blob--b {
  inset-inline-end: -2.5rem;
  top: 6rem;
  width: 16rem;
  height: 16rem;
  background: rgba(252, 231, 243, 0.8);
  animation-delay: -4s;
}
.tp-hero-slider__blob--c {
  bottom: 0;
  inset-inline-start: 33%;
  width: 18rem;
  height: 10rem;
  background: rgba(254, 243, 199, 0.55);
  animation-delay: -7s;
}
@keyframes tp-hero-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -18px, 0) scale(1.06); }
}

.tp-hero-slider__shell {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .tp-hero-slider__shell { padding: 0 1.25rem; }
}

.tp-hero-swiper {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(251, 207, 232, 0.55),
    0 18px 40px -22px rgba(190, 24, 93, 0.35),
    0 40px 80px -40px rgba(190, 24, 93, 0.22);
}
@media (min-width: 768px) {
  .tp-hero-swiper { border-radius: 2.25rem; }
}

.tp-hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  background: #fdf2f8;
  opacity: 0;
}
.tp-hero-swiper .swiper-slide-active {
  opacity: 1;
}

.tp-hero-slide {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 21 / 9;
  min-height: 230px;
  max-height: min(58vh, 520px);
}
@media (max-width: 767px) {
  .tp-hero-slide {
    aspect-ratio: 4 / 5;
    max-height: min(68vh, 520px);
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .tp-hero-slide {
    aspect-ratio: 16 / 10;
    max-height: min(52vh, 440px);
  }
}
.tp-hero-slide:focus-visible {
  outline: 2px solid #be185d;
  outline-offset: -2px;
}

.tp-hero-slide__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.tp-hero-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 6.5s cubic-bezier(0.22, 1, 0.36, 1), filter 1s ease;
  filter: saturate(0.95) brightness(0.97);
}
.tp-hero-swiper .swiper-slide-active .tp-hero-slide__img {
  transform: scale(1);
  filter: saturate(1.04) brightness(1);
}
.tp-hero-slide__mist {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, transparent 36%),
    linear-gradient(180deg, transparent 48%, rgba(88, 28, 55, 0.38) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(190, 24, 93, 0.22), transparent 45%);
}

.tp-hero-slide__panel {
  position: absolute;
  bottom: 5rem;
  inset-inline-start: 1rem;
  z-index: 2;
  max-width: min(100%, 22rem);
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px -12px rgba(190, 24, 93, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.98);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
@media (min-width: 640px) {
  .tp-hero-slide__panel {
    bottom: 6rem;
    inset-inline-start: 1.5rem;
    padding: 1.25rem;
  }
}
@media (min-width: 768px) {
  .tp-hero-slide__panel { inset-inline-start: 2rem; }
}
.tp-hero-swiper .swiper-slide-active .tp-hero-slide__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.tp-hero-slide__chip {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(190, 24, 93, 0.92);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tp-hero-slide__title {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: #831843;
}
@media (min-width: 640px) {
  .tp-hero-slide__title { font-size: 1.25rem; }
}
@media (min-width: 768px) {
  .tp-hero-slide__title { font-size: 1.5rem; }
}
.tp-hero-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  min-height: 40px;
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  background: #be185d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.tp-hero-slide:hover .tp-hero-slide__cta {
  background: #9d174d;
  transform: translateX(-2px);
}

.tp-hero-dock {
  position: absolute;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .tp-hero-dock {
    inset-inline: 1.25rem;
    bottom: 1rem;
    gap: 0.75rem;
  }
}
.tp-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.88);
  color: #be185d;
  box-shadow: 0 8px 20px -10px rgba(190, 24, 93, 0.35);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.tp-hero-btn:hover {
  background: #fff;
  color: #9d174d;
}
.tp-hero-btn:active { transform: scale(0.95); }
.tp-hero-btn:focus-visible {
  outline: 2px solid #be185d;
  outline-offset: 2px;
}
.tp-hero-btn::after { content: none !important; }

.tp-hero-dock__center {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px -12px rgba(190, 24, 93, 0.3);
  backdrop-filter: blur(14px);
}
@media (min-width: 640px) {
  .tp-hero-dock__center { padding: 0.5rem 1.25rem; }
}

.tp-hero-meter {
  position: relative;
  display: none;
  width: 100%;
  max-width: 14rem;
  height: 4px;
  overflow: hidden;
  border-radius: 9999px;
  background: #fce7f3;
}
@media (min-width: 640px) {
  .tp-hero-meter { display: block; }
}
.tp-hero-meter__fill {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f9a8d4, #be185d 55%, #db2777);
  transform: scaleX(0);
  transform-origin: left center;
}

.tp-hero-dots {
  position: relative !important;
  inset: auto !important;
  bottom: auto !important;
  width: auto !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.tp-hero-dots .swiper-pagination-bullet {
  margin: 0 !important;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #f9a8d4;
  opacity: 0.85;
  transition: width 0.3s, background 0.3s, opacity 0.3s;
  cursor: pointer;
}
.tp-hero-dots .swiper-pagination-bullet-active {
  width: 1.75rem;
  background: #be185d;
  opacity: 1;
}

.tp-hero-count {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #a8a29e;
}
.tp-hero-count__now {
  font-size: 0.875rem;
  font-weight: 800;
  font-style: normal;
  color: #be185d;
}
.tp-hero-count em { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  .tp-hero-slider__blob,
  .tp-hero-slide__img,
  .tp-hero-slide__panel,
  .tp-hero-slide__cta {
    animation: none !important;
    transition: none !important;
  }
  .tp-hero-slide__img {
    transform: none !important;
    filter: none !important;
  }
  .tp-hero-slide__panel {
    opacity: 1 !important;
    transform: none !important;
  }
}
