/** Shopify CDN: Minification failed

Line 1034:0 Unexpected "<"
Line 2610:0 Expected "}" to go with "{"

**/
.container,
.container-narrow {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
  margin: 0 auto;
  max-width: calc(var(--container-width, 1280px) + var(--fluid-offset) * 2);
}
@media (min-width: 1280px) {
  .container,
  .container-narrow {
    padding-left: var(--fluid-offset, 5rem);
    padding-right: var(--fluid-offset, 5rem);
  }
}

.container-narrow {
  max-width: var(--narrow-container-width, 86rem);
}

.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: calc(var(--fluid-container-width, 1620px) + var(--fluid-offset) * 2);
}
@media (min-width: 1280px) {
  .container-fluid {
    padding-left: var(--fluid-offset, 5rem);
    padding-right: var(--fluid-offset, 5rem);
  }
}

.critical-hidden {
  display: inherit;
}

.section__header {
  padding-bottom: var(--header-padding-bottom);
}
.container-full .section__header {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.section__header.spacing--small {
  --header-padding-bottom: var(--header-padding-bottom-small);
}
.section__header.spacing--large {
  --header-padding-bottom: var(--header-padding-bottom-large);
}
@media (max-width: 639.98px) {
  .section__header {
    --header-padding-bottom: var(--header-padding-bottom-mobile);
  }
  .section__header.spacing--large, .section__header.spacing--small {
    --header-padding-bottom: var(--header-padding-bottom-mobile);
  }
}
.reverse-header .section__header {
  flex-flow: column-reverse;
}
.section__header-with--button {
  align-items: center;
}
.section__header-with--button > a.btn {
  margin-top: 1.2rem;
}
.section__header-with--button.text-left {
  align-items: flex-start;
}
.section__header-with--button.text-right {
  align-items: flex-end;
}
@media (min-width: 768px) {
  .section__header-with--button.md\:text-left, .section__header-with--button.md\:text-center {
    justify-content: space-between;
    flex-direction: row !important;
    align-items: center;
  }
  .section__header-with--button.md\:text-left > a.btn, .section__header-with--button.md\:text-center > a.btn {
    margin-top: 0;
  }
  .section__header-with--button.md\:text-right {
    justify-content: space-between;
    flex-direction: row-reverse !important;
    align-items: center;
  }
  .section__header-with--button.md\:text-right > a.btn {
    margin-top: 0;
  }
}
.section__header--vertical .section__header--button {
  margin-top: 2.4rem;
}
@media (max-width: 639.98px) {
  .section__header--vertical .section__header--button {
    margin-top: 1.2rem;
  }
}
.section__header--horizontal .section__subheading {
  margin-bottom: 1.2rem;
}
.section__header--horizontal .section__description {
  margin-top: 1.2rem;
}
@media (max-width: 767.98px) {
  .section__header--horizontal .section__header--button {
    margin-top: 1.2rem;
  }
}
.section__heading {
  margin-bottom: 0;
}
.section__subheading {
  text-transform: uppercase;
  font-weight: bold;
  color: rgb(var(--color-foreground));
  margin-bottom: 2.4rem;
}
@media (max-width: 639.98px) {
  .section__subheading {
    margin-bottom: 1.2rem;
  }
}
.section__description {
  margin-top: 2.4rem;
}
.flex-col-reverse .section__description {
  margin: 0 0 1rem;
}
.section__footer {
  margin-top: 4rem;
}

.shopify-policy__container {
  max-width: var(--container-width) !important;
}

.f-section, #MainContent .shopify-policy__container {
  margin-top: var(--spacing-sections-mobile);
  margin-bottom: var(--spacing-sections-mobile);
}
@media (min-width: 768px) {
  .f-section, #MainContent .shopify-policy__container {
    margin-top: var(--spacing-sections-desktop);
    margin-bottom: var(--spacing-sections-desktop);
  }
}

.f-section--flush {
  margin-top: 0;
}

.flush-top {
  margin-top: calc(var(--spacing-sections-mobile) * -1);
}
@media (min-width: 768px) {
  .flush-top {
    margin-top: calc(var(--spacing-sections-desktop) * -1);
  }
}

.flush-bottom {
  margin-bottom: calc(var(--spacing-sections-mobile) * -1);
}
@media (min-width: 768px) {
  .flush-bottom {
    margin-bottom: calc(var(--spacing-sections-desktop) * -1);
  }
}

.f-page-loading {
  overflow: hidden;
}

.f-page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: #fff;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
  max-height: 100vh;
}
.f-page-transition.fade-out {
  opacity: 0;
  animation: f-fade-out 0.45s ease forwards;
}
.f-page-transition.fade-in {
  opacity: 1;
  animation: f-fade-in 0.45s ease forwards;
}
@keyframes pageTransitionSpinner {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.f-page-transition__spinner-content div {
  position: absolute;
  animation: pageTransitionSpinner 1s linear infinite;
  width: 80px;
  height: 80px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.3);
  transform-origin: 40px 41px;
}
.f-page-transition__spinner {
  width: 80px;
  height: 80px;
  display: inline-block;
  overflow: hidden;
  background: transparent;
}
.f-page-transition__spinner-content {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(0.8);
  backface-visibility: hidden;
  transform-origin: 0 0;
}
.f-page-transition__spinner-content div {
  box-sizing: content-box;
}

.f-card {
  border-radius: var(--card-corner-radius);
}
.f-card > .f-image {
  border-radius: var(--card-corner-radius);
}

.f-section-padding {
  padding-top: var(--section-padding-top-mobile, min(6rem, var(--section-padding-top, 0) * 0.75));
  padding-bottom: var(--section-padding-bottom-mobile, min(6rem, var(--section-padding-bottom, 0) * 0.75));
}

@media screen and (min-width: 1280px) {
  .f-section-padding {
    padding-top: var(--section-padding-top, 0);
    padding-bottom: var(--section-padding-bottom, 0);
  }
}
.text-current {
  color: currentColor;
}

.text-black {
  color: #000;
}

.text-white {
  color: #fff;
}

.text-gray {
  color: #e5e7eb;
}

.text-red {
  color: #dc2626;
}

.text-green {
  color: #16a34a;
}

.text-primary {
  color: var(--color-primary);
}

.text-subtext {
  color: rgba(var(--color-foreground), 0.75);
}

.text-body {
  color: var(--color-text-body);
}

.text-heading {
  color: var(--color-text-heading);
}

.text-product-title {
  color: var(--color-product-title);
}

.mega-subtitle,
.text-subheading {
  text-transform: var(--font-subheading-transform);
  font-size: var(--font-subheading-size, 16px);
  letter-spacing: var(--font-subheading-spacing, 0px);
  font-family: var(--font-subheading-family);
  font-weight: var(--font-subheading-weight);
}

.bg-main {
  background-color: var(--color-bg-1);
}

.bg-secondary {
  background-color: var(--color-bg-2);
}

.bg-field {
  background-color: var(--color-field-bg);
}

.bg-btn {
  background-color: var(--color-btn-bg);
}

.text-base,
.text-medium,
.text-desc-base {
  font-size: var(--font-body-size);
}

.text-sm,
.text-small {
  font-size: 1.4rem;
  line-height: 2rem;
}

.text-xs,
.text-extra-small {
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.text-lg,
.text-large {
  font-size: 1.8rem;
  line-height: 2.8rem;
}

.text-xl,
.text-extra-large {
  font-size: 2rem;
  line-height: 2.8rem;
}

.text-h1 {
  font-size: var(--font-h1-size);
}

.text-h2 {
  font-size: var(--font-h2-size);
}

.text-h3 {
  font-size: var(--font-h3-size);
}

.text-h4 {
  font-size: var(--font-h4-size);
}

.text-h5 {
  font-size: var(--font-h5-size);
}

.text-h6 {
  font-size: var(--font-h6-size);
}

.text-desc-sm {
  font-size: calc(var(--font-body-size) * 0.85);
}

.text-desc-lg {
  font-size: calc(var(--font-body-size) * 1.2);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .text-desc-lg {
    font-size: var(--font-body-size);
  }
}

.text-upper {
  --btn-transform: uppercase;
  text-transform: uppercase;
}

.text-lowercase {
  --btn-transform: lowercase;
  text-transform: lowercase;
}

.text-capitalize {
  --btn-transform: capitalize;
  text-transform: capitalize;
}

.text-normal {
  --btn-transform: none;
  text-transform: none;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.font-body {
  font-family: var(--font-body-family) !important;
  font-weight: var(--font-body-weight) !important;
  font-style: var(--font-body-style) !important;
}

.font-body-bolder {
  font-family: var(--font-body-family) !important;
  font-weight: var(--font-body-weight-bolder) !important;
  font-style: var(--font-body-style) !important;
}

.font-heading {
  font-family: var(--font-heading-family) !important;
  font-weight: var(--font-heading-weight) !important;
  font-style: var(--font-heading-style) !important;
}

.text-product-title {
  font-size: var(--font-pcard-title-size, 16px);
  color: var(--color-product-title);
  text-transform: var(--product-title-transform);
  font-weight: var(--font-pcard-title-weight) !important;
}

.letter-tighter {
  letter-spacing: -0.05em;
}

.letter-tight {
  letter-spacing: -0.025em;
}

.letter-none {
  letter-spacing: 0;
}

.letter-wide {
  letter-spacing: 0.025em;
}

.letter-wider {
  letter-spacing: 0.05em;
}

.letter-widest {
  letter-spacing: 0.1em;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.static {
  position: static;
}

.inset-full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.inset-center {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.bg-none {
  background: none;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-auto {
  background-size: auto;
}

.bg-center {
  background-position: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.border {
  border: 1px solid var(--color-border);
}

.border-rounded {
  border-radius: 3px;
}

.border-none {
  border: none;
}

.border-top {
  border-top: 1px solid var(--color-border);
}

.border-bottom {
  border-bottom: 1px solid var(--color-border);
}

.w-screen {
  width: 100vw;
}

.h-screen {
  height: 100vh;
}

.h-auto {
  height: auto;
}

.transition {
  transition: 0.3s all;
}

.transition-none {
  transition: none;
}

.overflow--x-hidden {
  overflow-x: hidden;
}

.overflow--y-hidden {
  overflow-y: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

.flex-1 {
  flex: 1;
}

.flex-0 {
  flex: 0 0 auto;
}

.flex-none {
  flex: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-video__bg {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.f-video__bg iframe, .f-video__bg video {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  max-width: none;
  border: none;
  object-fit: cover;
}

.f-video-wrapper[loading] {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.f-video-wrapper[loading]::after {
  content: "";
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-top: 3px solid rgb(255, 255, 255);
  border-left: 3px solid rgb(255, 255, 255);
  border-right: 3px solid rgba(255, 255, 255, 0);
  animation: f-spinner-smooth 0.6s linear infinite;
  z-index: 100;
}

.f-video-wrapper[loading]::before {
  animation-delay: -0.5s;
}

.bg-overlay {
  background: var(--color-overlay-bg, #000);
  opacity: calc(var(--color-overlay-alpha, 40) * 1%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mega-title {
  font-size: var(--font-h2-size);
  line-height: 1.4;
}
.mega-title--large {
  font-size: var(--font-h1-size);
  line-height: 1.25;
}
@media (max-width: 639.98px) {
  .mega-title {
    font-size: var(--font-h3-size);
  }
}

.mega-description {
  font-size: var(--font-body-size);
}
.mega-description--large {
  font-size: var(--font-h6-size);
}
@media (max-width: 639.98px) {
  .mega-description--large {
    font-size: var(--font-body-size);
  }
}

.f-text-blocks > * {
  margin: 2.4rem 0 0;
}
.f-text-blocks > *:first-child {
  margin-top: 0;
}
.f-text-blocks > *:only-child {
  margin: 0;
}
.f-text-blocks > .f-text-blocks__btn:last-child {
  margin-top: 3.2rem;
}
.f-text-blocks__btn {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1280px) {
  .f-text-blocks.f-slider__content > .f-text-blocks__btn:last-child {
    margin-top: 4rem;
  }
}
@media (max-width: 639.98px) {
  .f-text-blocks .text-subheading + * {
    margin-top: 1.2rem;
  }
  .f-text-blocks.f-slider__content > .f-text-blocks__btn:last-child {
    margin-top: 3.2rem;
  }
  .f-text-blocks.f-slider__content .text-subheading + * {
    margin-top: 2.4rem;
  }
}

.prevent-scroll {
  overflow: hidden;
}

.scroll-container {
  overflow-y: auto;
  /* Handle */
  /* Handle on hover */
}
.scroll-container::-webkit-scrollbar {
  width: var(--f-scrollbar-width, 3px);
}
.scroll-container::-webkit-scrollbar-thumb {
  background: rgba(var(--color-foreground), 0.7);
  border-radius: 2px;
}
.scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--color-foreground), 0.8);
}

.icon-setting, .f-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  stroke-width: 1.5;
  fill: currentColor;
}
.icon-setting--small, .f-icon--small {
  width: 14px;
  height: 14px;
}
.icon-setting--extra-small, .f-icon--extra-small {
  width: 12px;
  height: 12px;
}
.icon-setting--extra-medium, .f-icon--extra-medium {
  width: 16px;
  height: 16px;
}
.icon-setting--medium, .f-icon--medium {
  width: 20px;
  height: 20px;
}
.icon-setting--large, .f-icon--large {
  width: 24px;
  height: 24px;
}
.icon-setting.f-icon-tiktok, .f-icon.f-icon-tiktok {
  height: 18px;
}

.f-blocks-padding {
  padding-left: var(--mobile-padding-left, var(--padding-left));
  padding-right: var(--mobile-padding-right, var(--padding-right));
}
@media (min-width: 768px) {
  .f-blocks-padding {
    padding-left: min(40px, var(--padding-left) * 0.4);
    padding-right: min(40px, var(--padding-right) * 0.4);
  }
}
@media (min-width: 1280px) {
  .f-blocks-padding {
    padding-left: min(60px, var(--padding-left) * 0.6);
    padding-right: min(60px, var(--padding-right) * 0.6);
  }
}
@media (min-width: 1536px) {
  .f-blocks-padding {
    padding-left: var(--padding-left);
    padding-right: var(--padding-right);
  }
}

@media (min-width: 1280px) {
  .f-align-content-container--left {
    padding-left: max(var(--fluid-offset), var(--offset-margin));
  }
  .f-align-content-container--right {
    padding-right: max(var(--fluid-offset), var(--offset-margin));
  }
}

@media (max-width: 767.98px) {
  .mobile-order-first {
    order: -999;
  }
  .mobile-remove-br br {
    display: none;
  }
}
.f-animate-pulse {
  animation: f-pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  display: inline-flex;
}

@keyframes f-pulse {
  50% {
    opacity: 0.5;
  }
}
@keyframes f-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fade-in-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes f-fade-out-down {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
}
@keyframes textUnderlinedAnimatedKeyframes {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right;
  }
  51% {
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes inventory-pulse {
  0% {
    opacity: 0.6;
  }
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes f-spinner-smooth {
  to {
    transform: rotate(360deg);
  }
}
.deal-price .deal-old-price {
  text-decoration: line-through !important;
  text-decoration-thickness: 2px;
  color: #888;
}
.deal-old-price {
  margin-right: 8px;
  font-size: 14px;
}

.deal-new-price {
  font-size: 18px;
  font-weight: 700;
  color: #d32f2f;
}
.deal-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.deal-card {
  text-align: center;
}
.deal-hub {
  padding-top: 24px;
  
}
.deal-button { ; 
  display: inline-block;
  margin-top: 14px;
  padding: 14px 22px;
  background:rgb(34, 38, 102); /* high-contrast blue */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.deal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(105, 174, 204, 0.18);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(154, 194, 246, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(211,47,47,0); }
  100% { box-shadow: 0 0 0 0 rgba(211,47,47,0); }
}

.deal-button {
  animation: pulse 2.2s infinite;
}
.deal-button::after {
  content: " →";
}
.deal-button::after {
  content: " • Limited Stock";
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}
@media (max-width: 640px) {
  .deal-button {
    width: 85%;
    padding: 16px;
    font-size: 17px;
  }
}
.deal-button:hover {
  color: #fff; /* or rgba(255,255,255,0.92) */
}


/*Deal Hub Button*\

/* Disable clicking the logo (common Shopify themes) */
.header__heading-link,
.header__logo a,
.site-header__logo a,
.logo a,
a.header__heading-link {
  pointer-events: none !important;
  cursor: default !important;
}
<a href="/" class=" site-logo__img" title="Chaos Fragrances">
    <div class="site-logos--normal">{ pointer-events:none !important; cursor:default !important; }

    

.deal-card::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  margin: 30px auto 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0),
    rgba(0,0,0,0.5),
    rgba(0,0,0,0)
  );
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: width 0.6s ease;
}




.deal-price {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.deal-old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
  margin-right: 8px;
}


.deal-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 10px;
}


.stock-wrap { margin-top: 12px; }
.stock-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  font-size:12px;
  opacity:0.9;
}

.stock-track{
  height:10px;
  border-radius:999px;
  overflow:hidden;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  margin-top:8px;
}

.stock-fill{
  height:100%;
  width:0%;
  border-radius:999px;
  background: linear-gradient(90deg,
    rgba(0,230,118,0.9),
    rgba(255,171,0,0.9),
    rgba(255,61,0,0.9)
  );
  transition: width 500ms ease;
}

.stock-sub{ margin-top:6px; font-size:12px; opacity:0.75; }

.stock-wrap.is-low .stock-sub{ opacity:1; font-weight:800; }
.stock-wrap.is-out .stock-fill{ width:0% !important; opacity:0.35; }


.stock-wrap {
  max-width: 420px;   /* controls how wide the bar can get */
  margin: 12px auto;  /* centers it horizontally */
}


.stock-wrap {
  max-width: 420px;
  margin: 16px auto;
  text-align: center;
}

.stock-top {
  justify-content: center;
  gap: 12px;
}

.stock-track {
  margin-left: auto;
  margin-right: auto;
}
.stock-label {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.85;
}

.stock-text {
  font-weight: 1500;
}



/* Top row: "Stock" + "X left" */
.stock-top {
  font-size: 14px;        /* was ~12px */
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Bottom status text: "In stock" */
.stock-sub {
  font-size: 13px;        /* was ~12px */
  font-weight: 600;
}

/* Emphasis when low stock */
.stock-wrap.is-low .stock-sub {
  font-size: 13.5px;
  font-weight: 800;
}

.deal-trend {
  max-width: 420px;         /* keeps it centered “middle of page” */
  margin: 12px auto 6px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.deal-trend-top {
  

  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.95;
  margin-bottom: 8px;
}

.deal-trend-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  opacity: 0.75;
  margin-top: 6px;
}

.deal-sparkline {
  width: 100%;
  height: 44px;
  display: block;
}

.deal-sparkline-line {
  fill: none;
  stroke: rgba(255,255,255,0.85);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  
}

.deal-sparkline-dot {
  fill: rgba(255,255,255,0.95);
}

.deal-sparkline-line { transition: stroke-dashoffset 700ms ease-out !important; }




.deal-sparkline-line { stroke: rgba(0,0,0,0.75) !important; }
.deal-sparkline-dot  { fill: rgba(0,0,0,0.75) !important; }


.deal-trend-callout {
  font-size: 12px;
  font-weight: 700;
  color: #00e676;
  margin-top: 4px;
}

.deal-sparkline-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 600ms ease-out forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
.deal-sparkline-dot {
  filter: drop-shadow(0 0 4px currentColor);
}
.deal-sparkline-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 700ms ease-out;
}



.deal-sparkline-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* when we add this class, it will animate */
.deal-sparkline-line.is-drawing {
  animation: sparkDraw 1.9s ease-out forwards;
}



@keyframes sparkDraw {
  from { stroke-dashoffset: var(--dash, 0); }
  to   { stroke-dashoffset: 0; }
}

.deal-sparkline-dot {
  opacity: 0;
  animation: dotReveal 300ms ease-out forwards;
  animation-delay: 1.2s; /* match line duration */
}

@keyframes dotReveal {
  to { opacity: 1; }
}
.deal-card:nth-child(odd) .deal-sparkline-line.is-drawing {
  animation-duration: 1.6s;
}

.deal-card:nth-child(even) .deal-sparkline-line.is-drawing {
  animation-duration: 1.3s;
}

.compare-product-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 16px;
}

.compare-title {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}


.compare-image {
  display: block;
  max-width: 320px;   /* controls visual size */
  width: 100%;
  height: auto;       /* preserves aspect ratio */
  margin: 0 auto 24px;
  border-radius: 12px;
  object-fit: contain;
}


.best-price-box {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
}

.best-price-label {
  font-weight: 600;
  margin-bottom: 8px;
}

.price-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.msrp {
  text-decoration: line-through;
  color: #888;
}

.deal-price {
  font-size: 24px;
  font-weight: 700;
}

.savings {
  color: #0a7a32;
  margin-top: 8px;
}

.price-updated {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}

.retailer-section h2 {
  margin-bottom: 12px;
}

.retailer-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.retailer-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.retailer-btn:hover {
  opacity: 0.9;
}

.affiliate-disclosure {
  font-size: 12px;
  color: #666;
  margin-top: 32px;
}

.why-us {
  margin-top: 32px;
}

.why-us ul {
  padding-left: 18px;
}


.compare-header {
  text-align: center;
  margin-bottom: 32px;
}
.compare-header {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 24px;
}
.brand-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 18px;
}

.brand-badge {
  height: 26px;
  width: auto;
  display: block;
  opacity: 0.9;
  filter: grayscale(100%);
}

.retailer-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .retailer-buttons {
    gap: 12px;
  }
}

/* Price-checker style button */
.retailer-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 14px 14px;
  border-radius: 14px;

  background: #fff;
  color: #111;
  text-decoration: none;

  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.retailer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.retailer-btn-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.retailer-btn-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1px;
}

.retailer-btn-sub {
  font-size: 12px;
  color: rgba(0,0,0,0.65);
}

.retailer-btn-right {
  font-size: 18px;
  opacity: 0.7;
}

/* Best deal highlight */
.retailer-btn.is-best {
  border-color: rgba(0,0,0,0.22);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.retailer-btn.is-best .retailer-btn-title::before {
  content: "🏆 ";
}


/* === Text-only tweaks: center + slightly bigger === */

.retailer-btn-left {
  text-align: center;
  align-items: center;
}

.retailer-btn-title {
  font-size: 16px; /* up from 14px */
}

.retailer-btn-sub {
  font-size: 13px; /* up from 12px */
}

/* === Subtle emphasis without changing layout === */

.retailer-btn {
  border-color: rgba(0,0,0,0.18);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.05),
    0 8px 24px rgba(0,0,0,0.06);
}

.retailer-btn:hover {
  box-shadow:
    0 2px 0 rgba(0,0,0,0.06),
    0 14px 32px rgba(0,0,0,0.10);
}

/* Slight extra emphasis for Best Deal */
.retailer-btn.is-best {
  border-color: rgba(0,0,0,0.28);
  box-shadow:
    0 2px 0 rgba(0,0,0,0.08),
    0 16px 40px rgba(0,0,0,0.14);
}
.retailer-btn:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.06),
    0 6px 16px rgba(0,0,0,0.10);
}
/* Make "Compare prices at authorized retailers" smaller */
.retailer-section h2 {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 10px;
}
/* Tiny divider under "Compare prices at authorized retailers" */
.retailer-section h2 {
  position: relative;
  padding-bottom: 8px;
}

.retailer-section h2::after {
  content: "";
  display: block;
  width: 48px;              /* small, not full-width */
  height: 1px;
  margin: 8px auto 0;       /* centered, tight spacing */
  background: rgba(0,0,0,0.12);
}
.retailer-section {
  display: flex;
  flex-direction: column;
  gap: 12px; /* spacing between buttons */
}
.retailer-section a {
  padding: 12px 16px;
  border-radius: 8px;
}
.retailer-btn-meta{
  font-size: 11px;
  color: rgba(0,0,0,0.55);
  margin-top: 2px;
}
.best-badge{
  display:inline-block;
  margin-left:8px;
  padding:3px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  border:1px solid rgba(0,0,0,0.18);
  background: rgba(0,0,0,0.04);
}
.why-best{
  margin-top: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 12px;
  padding: 10px 12px;
}
.why-best summary{
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}
.why-best-body{
  margin-top: 8px;
  font-size: 12px;
  opacity: .75;
  line-height: 1.4;
}
.retailer-btn-meta {
  font-size: 11px;
  margin-top: 3px;
  opacity: 0.7;
}
.trust-bar{
  margin: 14px auto 0;
  padding: 10px 12px;
  max-width: 720px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 999px;

  background: rgba(0,0,0,0.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.trust-item{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15px;
  color: rgba(0,0,0,0.72);
  white-space: nowrap;
}

.trust-dot{
  width: 3px;
  height: 3px;
  border-radius: 99px;
  background: rgba(0,0,0,0.28);
  opacity: 0.6;
}

@media (min-width: 768px){
  .trust-item{ font-size: 12.5px; }
}
.trust-bar{
  backdrop-filter: blur(6px);
}
.trust-card{
  background:
    linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.00));
}
.best-price-meta{
  font-size: 13px;
  color: rgba(0,0,0,0.75);
  margin-top: 6px;
}

.best-price-trust{
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  margin-top: 6px;
}
.deal-price-text{
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.deal-price-inline{
  font-size: 13px;
  font-weight: 500;
  opacity: 0.6;
  margin-left: 4px;
}
/* Average price styling */
.deal-price{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

/* Subtle "Average" label */
.avg-label{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.55;
  position: relative;
  top: -2px;
}

/* Helper line */
.deal-price-sub{
  font-size: 13px;
  opacity: 0.6;
  margin-top: 4px;
}
.deal-price{
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.deal-price{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.04),
    rgba(0,0,0,0.00)
  );
  padding: 4px 8px;
  border-radius: 10px;
}
.deal-price{
  letter-spacing: 0.15px;
}
.deal-price{
  font-variant-numeric: tabular-nums;
}
.avg-label{
  opacity: 0.45;
  letter-spacing: 1px;
}
.avg-label::after{
  content: " ·";
}
@media (hover: hover){
  .deal-price:hover{
    background: rgba(0,0,0,0.03);
  }
}
@media (max-width: 480px){
  .deal-price{
    font-size: 20px;
  }
}
.product-description{
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.10);
}

.product-description h2{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.product-description-content{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0,0,0,0.75);
  max-width: 720px;
}

/* Make long descriptions easier to scan */
.product-description-content p{
  margin-bottom: 12px;
}
.frag-profile{
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.10);
}

.frag-profile-head h2{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0 0 6px;
}

.frag-one-liner{
  margin: 0;
  font-size: 13px;
  color: rgba(0,0,0,0.65);
  line-height: 1.45;
  max-width: 720px;
}

/* Chips */
.frag-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(0,0,0,0.03);
  font-size: 12px;
  font-weight: 650;
  color: rgba(0,0,0,0.75);
}

.chip-soft{
  background: #fff;
  border-color: rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.62);
}

/* Meters */
.frag-meters{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
  max-width: 520px;
}

@media (min-width: 768px){
  .frag-meters{
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
  }
}

/*Projection/longevity meters*/

.meter{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
}

.meter-label{
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 8px;
}

.meter-track{
  height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  overflow: hidden;
}

.meter-fill{
  display: block;
  height: 100%;
  border-radius: 999px;
  background: rgba(45, 222, 242, 0.55);
}

.meter-val{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}

/* Notes grid */
.note-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

@media (min-width: 768px){
  .note-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

.note-card{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.015);
}

.note-title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-bottom: 10px;
}

.note-list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.note-pill{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.70);
}
.value-card{
  margin: 14px auto 0;
  max-width: 720px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.015);
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.value-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}

.value-title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.60);
}

.value-size{
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,0.65);
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.value-figure{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-variant-numeric: tabular-nums;
  color: #111;
}

.value-unit{
  font-size: 14px;
  font-weight: 700;
  opacity: 0.55;
  margin-left: 3px;
}

.value-sub{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(0,0,0,0.62);
  line-height: 1.35;
}
.deal-confidence{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
}

.deal-confidence-icon{
  font-size: 13px;
}

.deal-confidence.high{
  color: #22c55e;
}

.deal-confidence.medium{
  color: #60a5fa;
}

.deal-confidence.low{
  color: #facc15;
}
.retailer-section h2 {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.retailer-btn{
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  padding: 10px 14px;
}

.retailer-mid{
  justify-self: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.retailer-btn-title{
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
}

.retailer-btn-sub{
  font-size: 14px;
  opacity: .75;
}

.retailer-meta{
  font-size: 12px;
  opacity: .55;
  margin-top: 3px;
}

.retailer-arrow{
  justify-self: end;
}
/* 1) Lock the button layout: center content + arrow right */
a.retailer-btn {
  display: grid !important;
  grid-template-columns: 1fr 36px !important;
  align-items: center !important;
}

/* 2) Center the middle stack */
a.retailer-btn .retailer-mid {
  justify-self: center !important;
  text-align: center !important;
}

/* 3) Force the arrow to the right column */
a.retailer-btn .retailer-arrow {
  grid-column: 2 !important;
  justify-self: end !important;
}

/* 4) Kill the “glitch” duplicate on the far right:
   Hide any extra text spans that are NOT our middle stack. */
a.retailer-btn > span:not(.retailer-mid):not(.retailer-arrow) {
  display: none !important;
}
/* Button layout: center content + arrow right */
.retailer-btn{
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
}

/* Arrow styling */
.retailer-arrow{
  grid-column: 2;
  justify-self: end;

  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;

  font-size: 18px;
  line-height: 1;
  opacity: .65;

  transition: transform .15s ease, opacity .15s ease;
}

/* Subtle hover nudge (premium feel) */
.retailer-btn:hover .retailer-arrow{
  transform: translateX(2px);
  opacity: .9;
}

/* TRUE visual centering: left spacer + centered text + arrow */
a.retailer-btn{
  display: grid !important;
  grid-template-columns: 32px 1fr 32px !important; /* spacer | content | arrow */
  align-items: center !important;
}

/* Put your centered text in the middle column */
a.retailer-btn .retailer-mid{
  grid-column: 2 !important;
  justify-self: center !important;
  text-align: center !important;
  width: fit-content !important;
  margin: 0 auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Put arrow in the right column */
a.retailer-btn .retailer-arrow{
  grid-column: 3 !important;
  justify-self: end !important;
}

/* IMPORTANT: ensure NOTHING else sits in columns 1 or 2 unexpectedly */
a.retailer-btn > span:not(.retailer-mid):not(.retailer-arrow){
  display: none !important;
}
.retailer-meta::after{
  content: " ↗";
  font-size: 11px;
  opacity: .6;
}
.retailer-btn.is-best{
  box-shadow:
    inset 3px 0 0 rgba(0,0,0,.85),
    0 6px 16px rgba(0,0,0,.06);
}
.retailer-btn.is-best .retailer-arrow{
  opacity: .95;
}

.retailer-btn.is-best .retailer-arrow::before{
  border-color: rgba(0,0,0,.9);
}
.retailer-meta{
  letter-spacing:.02em;
}

.retailer-meta::before{
  content:"•";
  margin-right:6px;
  opacity:.4;
}
.retailer-btn.is-best{
  box-shadow:
    inset 2px 0 0 rgba(0,0,0,.8);
}
.retailer-btn:active{
  transform: translateY(1px);
}
.retailer-btn.is-best .retailer-btn-title::before{
  content: "🏆";
  display: block;
  margin-bottom: 4px;
  transform: translateY(0);
}
/* Make Best deal stand out — clean underline accent */
.retailer-btn.is-best .retailer-btn-title{
  position: relative;
  font-weight: 700;
}

.retailer-btn.is-best .retailer-btn-title::after{
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 2px;
  background: rgba(0,0,0,.85);
}
/* ========= Climate Block (Temp + Seasons) ========= */
.cf-climate{
  --card-bg: rgba(255,255,255,.04);
  --card-brd: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);

  border: 1px solid var(--card-brd);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  color: var(--text);
}

.cf-climate-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.cf-climate-title{
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.cf-climate-sub{
  font-size: 14px;
  color: var(--muted);
}
.cf-climate-sub strong{ color: var(--text); }

/* ========= Temperature Slider ========= */
.cf-temp{ margin-top: 10px; }

.cf-temp-top{
  display:grid;
  grid-template-columns: 28px repeat(4,1fr) 28px;
  align-items:center;
  gap: 6px;
  margin-bottom: 8px;
}
.cf-temp-ico{
  opacity:.9;
  font-size: 16px;
  text-align:center;
}
.cf-temp-label{
  font-size: 12px;
  color: rgba(255,255,255,.72);
  text-align:center;
  white-space:nowrap;
}

.cf-temp-bar{
  position: relative;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg,
    rgba(86,174,255,.30),
    rgba(255,255,255,.12) 40%,
    rgba(255,188,120,.22) 70%,
    rgba(255,134,86,.26)
  );
  overflow: hidden;
}

/* Filled “best range” segment computed from CSS vars */
.cf-temp-fill{
  position:absolute;
  top:0; bottom:0;
  left: calc( ( (var(--t-min) - var(--t-start)) / (var(--t-end) - var(--t-start)) ) * 100% );
  width: calc( ( (var(--t-max) - var(--t-min)) / (var(--t-end) - var(--t-start)) ) * 100% );
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(255,255,255,.10),
    rgba(255,255,255,.28)
  );
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 16px rgba(255,255,255,.14);
}

/* Scale labels */
.cf-temp-scale{
  display:flex;
  justify-content:space-between;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.55);
}

.cf-temp-note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}
.cf-temp-note .cf-temp-tip{
  color: rgba(255,255,255,.78);
}

/* ========= Season Pills ========= */
.cf-seasons{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.cf-seasons-title{
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.80);
  margin-bottom: 8px;
}

.cf-season-row{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.cf-season{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1;
}

/* Active season */
.cf-season.is-on{
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.cf-seasons-sub{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.62);
}
.cf-seasons-sub strong{ color: rgba(255,255,255,.88); }

/* Mobile spacing */
@media (max-width: 520px){
  .cf-climate{ padding: 14px; border-radius: 14px; }
  .cf-climate-head{ flex-direction: column; align-items:flex-start; }
  .cf-temp-top{ grid-template-columns: 24px repeat(4,1fr) 24px; }
}
/* Force climate block text to black */
.cf-climate,
.cf-climate * {
  color: #000 !important;
}

/* Muted text (still black, just softer) */
.cf-climate .cf-climate-sub,
.cf-climate .cf-temp-note,
.cf-climate .cf-seasons-sub,
.cf-climate .cf-temp-scale {
  color: rgba(0,0,0,.65) !important;
}

/* Labels */
.cf-climate .cf-temp-label,
.cf-climate .cf-season {
  color: rgba(0,0,0,.75) !important;
}

/* Active season pills */
.cf-climate .cf-season.is-on {
  color: #000 !important;
  border-color: rgba(0,0,0,.25);
}
.cf-climate {
  background: #fff;
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
/* Slider dots */
.cf-temp-dot{
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0,0,0,.65);
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

/* Position dots using same math as fill */
.cf-temp-dot.dot-min{
  left: calc(
    ((var(--t-min) - var(--t-start)) /
    (var(--t-end) - var(--t-start))) * 100%
  );
}

.cf-temp-dot.dot-max{
  left: calc(
    ((var(--t-max) - var(--t-start)) /
    (var(--t-end) - var(--t-start))) * 100%
  );
}
.cf-temp-dot{
  background: #fff;
  border-color: #000;
}

.cf-temp-dot::after{
  content:'';
  position:absolute;
  inset:3px;
  border-radius:50%;
  background:#000;
}
/* Seasons — ON vs OFF states */
.cf-season{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  border: 1px solid rgba(0,0,0,.18);
  transition: transform .15s ease, opacity .15s ease, filter .15s ease;
}

/* Selected */
.cf-season.is-on{
  background: rgba(0,0,0,.06);
  color: #000;
  border-color: rgba(0,0,0,.28);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* Unselected (greyed out) */
.cf-season.is-off{
  background: rgba(0,0,0,.03);
  color: rgba(0,0,0,.38);
  border-color: rgba(0,0,0,.10);
  opacity: .55;
  filter: grayscale(1);
}

/* Optional: little “pop” on hover */
.cf-season:hover{
  transform: translateY(-1px);
}
/* Space above Best Climate block */
.cf-climate {
  margin-top: 24px;
}
.cf-climate {
  margin-top: 32px;
}

:root {
  --deal-green: #1f7a4d;
  --deal-green-soft: rgba(31, 122, 77, 0.08);
  --deal-green-border: rgba(31, 122, 77, 0.35);
}

.retailer-btn.is-best {
  border-color: var(--deal-green-border);
  background:
    linear-gradient(
      180deg,
      var(--deal-green-soft),
      rgba(255,255,255,0.75)
    );
  box-shadow:
    0 10px 24px rgba(31, 122, 77, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.7);
}
.retailer-btn.is-best .retailer-btn-title {
  color: #1f7a4d;
  font-weight: 700;
}

.retailer-btn.is-best .retailer-btn-sub {
  color: rgba(31, 122, 77, 0.75);
}
.retailer-btn.is-best:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(31, 122, 77, 0.24);
}
.retailer-btn.is-best {
  position: relative;
  overflow: hidden;
}
.retailer-btn.is-best::before {
  z-index: 2;
}
.retailer-btn.is-best > * {
  position: relative;
  z-index: 3;
}
.retailer-btn.is-best {
  background:
    linear-gradient(
      180deg,
      rgba(31, 122, 77, 0.08),
      rgba(255,255,255,0.75)
    );
}

.product-vendor {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b8b8b;
  line-height: 1;
}
.product-vendor-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b8b8b;
  text-decoration: none;
  position: relative;
}

.product-vendor-link:hover {
  color: #111;
}
.product-vendor-link {
  display: inline-block;
  margin-top: 2px;   /* 👈 tighter */
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b8b8b;
  text-decoration: none;
}
.product-title-divider {
  border: none;
  height: 1px;
  width: 40px;
  background-color: rgba(0, 0, 0, 0.18);

  margin-top: 4px;     /* tight above */
  margin-bottom: 20px; /* MORE space below */
}
.product-vendor-link {
  display: inline-block;
  margin-top: 2px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b8b8b;
  text-decoration: none;
.last-updated-divider {
  width: 100%;
  height: 1px;
  margin: 10px 0 18px; /* tight above, more breathing room below */
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
}
.last-updated {
  font-size: 13px;
  opacity: 0.75;
}

.last-updated-divider {
  display: block;
  width: 100%;
  height: 4px;
  background: red;
  margin: 10px 0 18px;
}
html, body { scroll-behavior: smooth; }

.deal-hub-title{
  font-size: 12x !important;
  line-height: 1.2 !important;
  margin: 0 0 8px !important;
  font-weight: 800;
}

@media (max-width: 768px){
  .deal-hub-title{
    font-size: 18px !important;
  }
}

.seo-intro-wrap { margin: 14px 0 18px; }
.seo-intro-top { display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.seo-intro-kicker { margin:0; font-size:13px; opacity:.82; }
.seo-actions { display:flex; gap:10px; }
.seo-jump { font-size:13px; text-decoration:none; border-bottom:1px solid rgba(0,0,0,.25); padding-bottom:2px; }

.seo-details { margin-top:10px; border:1px solid rgba(0,0,0,.10); border-radius:12px; padding:10px 12px; }
.seo-details summary { cursor:pointer; font-weight:700; font-size:13px; }
.seo-details-body { margin-top:8px; font-size:13px; line-height:1.55; opacity:.92; }


/* Chaos comparison pages: static retailer-link fallback */
.retailer-empty {
  padding: 16px;
  border: 1px dashed rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.62);
  background: rgba(0, 0, 0, 0.02);
}

.product-card__compare-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.product-card__compare-link::after {
  content: " →";
}
