/** Shopify CDN: Minification failed

Line 211:4 Expected identifier but found "8px"
Line 252:4 Expected identifier but found "8px"
Line 1132:4 Unexpected ".5"
Line 1176:4 Unexpected ".5"
Line 1430:7 Expected identifier but found "#00000180"
Line 1447:5 Expected identifier but found "#f1958f"

**/
/* ============================================
   Subscription Widget – Tailwind utility classes
   ============================================ */

/* --- Custom theme tokens --- */
.font-primary {
  font-family: var(--font-body-family), sans-serif;
}

.text-gray-darker {
  color: #1a1a1a;
}

.text-gray-dark {
  color: #4a4a4a;
}

.text-gray-light {
  color: #999;
}

.border-gray-lightest {
  border-color: #e5e5e5;
}

.text-caption {
  font-size: 13px;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  text-align: center;
  cursor: pointer;
}

.list-none {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- Layout / Display --- */
.flex {
  display: flex;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.grid {
  display: grid;
}

.active {
  display: block !important;
}

.disabled {
  display: none !important;
}

/* --- Flex direction --- */
.flex-col {
  flex-direction: column;
}

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

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

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

/* --- Flex wrap / grow / shrink --- */
.flex-wrap {
  flex-wrap: wrap;
}

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

.flex-1 {
  flex: 1 1 0%;
}

/* --- Flex alignment --- */
.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

/* --- Grid --- */
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

/* --- Position --- */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

/* --- Inset --- */
.top-0 {
  top: 0;
}

.top-\[0px\] {
  top: 0px;
}

.top-6 {
  top: 1.5rem;
}

.top-7 {
  top: 1.75rem;
}

.left-0 {
  left: 0;
}

.left-\[-1500vw\] {
  left: -1500vw;
}

.right-0 {
  right: 0;
}

.right-4 {
  right: 1rem;
}

.-left-px {
  left: -1px;
}

.-top-px {
  top: -1px;
}

/* --- Width --- */
.w-full {
  width: 100%;
}

.w-max {
  width: max-content;
}

.w-fit {
  width: fit-content;
}

.w-\[20px\] {
  width: 20px;
}

.w-\[12px\] {
  width: 12px;
}

.w-[8px] {
  width: 8px;
}

.w-\[3000vw\] {
  width: 3000vw;
}

.w-\[300px\] {
  width: 300px;
}

.w-\[calc\(100\%\+2px\)\] {
  width: calc(100% + 2px);
}

.w-screen {
  width: 100vw;
}

.w-3\/4 {
  width: 75%;
}

/* --- Height --- */
.h-full {
  height: 100%;
}

.h-\[100\%\] {
  height: 100%;
}

.h-\[20px\] {
  height: 20px;
}

.h-\[12px\] {
  height: 12px;
}

.h-[8px] {
  height: 8px;
}

.h-fit {
  height: fit-content;
}

.h-screen {
  height: 100vh;
}

/* --- Min / Max sizing --- */
.min-h-\[40px\] {
  min-height: 40px;
}

.min-h-\[50px\] {
  min-height: 50px;
}

.min-w-full {
  min-width: 100%;
}

.max-w-\[115px\] {
  max-width: 115px;
}

/* --- Padding --- */
.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-2\.5 {
  padding-top: 0.625rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

/* --- Margin --- */
.m-auto {
  margin: auto;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-\[3px\] {
  margin-top: 3px;
}

.mt-\[4px\] {
  margin-top: 4px;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-\[12px\] {
  margin-right: 12px;
}

.ml-\[3px\] {
  margin-left: 3px;
}

.ml-\[7px\] {
  margin-left: 7px;
}

.mb-\[-5px\] {
  margin-bottom: -5px;
}

/* --- Gap --- */
.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

/* --- Border --- */
.border {
  border: 1px solid #d0d0d0;
}

.border-t {
  border-top: 1px solid #d0d0d0;
}

.border-b {
  border-bottom: 1px solid #d0d0d0;
}

.border-black {
  border-color: #000;
}

.border-\[\#D0D0D0\] {
  border-color: #D0D0D0;
}

.border-\[\#C3C3C3\] {
  border-color: #C3C3C3;
}

.border-\[\#0000004D\] {
  border-color: #0000004D;
}

/* --- Border radius --- */
.rounded-full {
  border-radius: 9999px;
}

.rounded-\[unset\] {
  border-radius: unset;
}

/* --- Background --- */
.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.bg-transparent {
  background-color: transparent;
}

/* --- Typography – size --- */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[14px\] {
  font-size: 14px;
}

.text-\[16px\] {
  font-size: 16px;
}

.text-\[18px\] {
  font-size: 18px;
}

/* --- Typography – weight --- */
.font-normal {
  font-weight: 400;
}

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

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

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

/* --- Typography – alignment --- */
.text-left {
  text-align: left;
}

/* --- Typography – decoration --- */
.line-through {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

/* --- Typography – line-height --- */
.leading-5 {
  line-height: 1.25rem;
}

.leading-\[12px\] {
  line-height: 12px;
}

/* --- Typography – letter-spacing --- */
.tracking-\[0\.03rem\] {
  letter-spacing: 0.03rem;
}

/* --- Typography – whitespace --- */
.whitespace-normal {
  white-space: normal;
}

/* --- Appearance / Cursor --- */
.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

/* --- Z-index --- */
.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

/* --- Opacity --- */
.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

/* --- Box shadow --- */
.shadow-\[0px_0px_10px_0px_\#00000040\] {
  box-shadow: 0px 0px 10px 0px #00000040;
}

/* --- Transform --- */
.-rotate-90 {
  transform: rotate(-90deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

/* ============================================
   :has() container variants
   ============================================ */
.subscription-container:has(#purchaseType--subscription:checked) {
  border: 0;
}
.subscription-container:has(#purchaseType--subscription:checked) {
  background: var(--active_background, #f1958f);
}

.one-time-container:has(#purchaseType--onetime:checked) {
  border: 0;
}
.one-time-container:has(#purchaseType--onetime:checked) {
  background: var(--active_background, #f1958f);
}

/* ============================================
   Self-targeting :checked state variants
   ============================================ */
.checked\:hidden:checked {
  display: none;
}

.checked\:fixed:checked {
  position: fixed;
}

.checked\:w-screen:checked {
  width: 100vw;
}

.checked\:h-screen:checked {
  height: 100vh;
}

.checked\:block:checked {
  display: block !important;
}

/* ============================================
   peer-checked variants (sibling combinator)
   ============================================ */

/* peer-checked:group-[]:block  –  radio dot inside group sibling */
.peer:checked ~ .group .peer-checked\:group-\[\]\:block {
  display: block !important;
}

.peer:checked ~ .group .peer-checked\:group-\[\]\:border-0 {
  border: 0;
}

.peer:checked ~ .group .peer-checked\:group-\[\]\:bg-black {
  background-color: #000 !important;
}

.peer:checked ~ .group .peer-checked\:group-\[\]\:bg-white {
  background-color: #fff !important;
}

/* peer-checked:grid  –  benefits grid sibling */
.peer:checked ~ .peer-checked\:grid {
  display: grid;
}

/* peer-checked:block  –  dropdown options sibling */
.peer:checked ~ .peer-checked\:block {
  display: block;
}

/* peer-checked:group-[]/mobile-tooltip-container:block  –  mobile tooltip */
.peer:checked ~ .group\/mobile-tooltip-container .peer-checked\:group-\[\]\/mobile-tooltip-container\:block {
  display: block !important;
}

/* peer-checked/tooltip:block  –  desktop tooltip */
.peer:checked ~ * .peer-checked\/tooltip\:block {
  display: block;
}

/* peer-checked:group-[]/main-btn:-rotate-90  –  chevron rotation */
.peer:checked ~ .group\/main-btn .peer-checked\:group-\[\]\/main-btn\:-rotate-90 {
  transform: rotate(-90deg);
}

/* ============================================
   group-hover variants
   ============================================ */

/* group-hover/tooltip:block  –  desktop tooltip on hover */
.group\/tooltip:hover .group-hover\/tooltip\:block {
  display: block;
}

/* ============================================
   Responsive: md  (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }

  .md\:text-\[16px\] {
    font-size: 16px;
  }
}

/* ============================================
   Responsive: lg  (min-width: 1024px)
   ============================================ */
@media (min-width: 1024px) {
  .lg\:w-3\/4 {
    width: 75%;
  }

  .lg\:left-0 {
    left: 0;
  }

  .lg\:gap-0 {
    gap: 0;
  }

  .lg\:gap-3 {
    gap: 0.75rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-1 {
    flex: 1 1 0%;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:pb-4 {
    padding-bottom: 1rem;
  }

  .lg\:pl-8 {
    padding-left: 2rem;
  }

  .lg\:max-w-none {
    max-width: none;
  }

  .lg\:text-\[12px\] {
    font-size: 12px;
  }

  .lg\:block {
    display: block;
  }

  .lg\:hidden {
    display: none;
  }
}

/* ============================================
   Additional utilities for edits
   ============================================ */

/* --- Display --- */
.inline-flex {
  display: inline-flex;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

/* --- Overflow --- */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

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

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

/* --- Flex extras --- */
.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

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

.flex-none {
  flex: none;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.items-start {
  align-items: flex-start;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

/* --- Spacing extras --- */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 0.25rem;
}

.m-0 {
  margin: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.-mt-1 {
  margin-top: -0.25rem;
}

.-mt-px {
  margin-top: -1px;
}

.-ml-px {
  margin-left: -1px;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-1\.5 {
  gap: 0.375rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-x-2 {
  column-gap: 0.5rem;
}

.gap-x-4 {
  column-gap: 1rem;
}

.gap-x-\[16px\]{
  column-gap: 16px;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

/* --- Sizing extras --- */
.w-0 {
  width: 0;
}

.w-1.5 {
  width: 6px;
}

.w-2 {
  width: 8px;
}

.w-4 {
  width: 16px;
}

.w-7 {
  width: 28px;
}

.w-auto {
  width: auto;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/5 {
  width: 20%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-\[6px\] {
  width: 6px;
}

.h-0 {
  height: 0;
}

.h-1.5 {
  height: 6px;
}

.h-2 {
  height: 8px;
}

.h-4 {
  height: 16px;
}

.h-auto {
  height: auto;
}

.h-\[1px\] {
  height: 1px;
}

.h-\[6px\] {
  height: 6px;
}

.max-w-full {
  max-width: 100%;
}

.max-w-none {
  max-width: none;
}

.max-h-0 {
  max-height: 0;
}

.min-h-0 {
  min-height: 0;
}

/* --- Position extras --- */
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bottom-0 {
  bottom: 0;
}

.top-full {
  top: 100%;
}

/* --- Border extras --- */
.border-0 {
  border: 0;
}

.border-2 {
  border-width: 2px;
}

.border-t-0 {
  border-top-width: 0;
}

.border-b-0 {
  border-bottom-width: 0;
}

.border-l {
  border-left: 1px solid #d0d0d0;
}

.border-r {
  border-right: 1px solid #d0d0d0;
}

.border-transparent {
  border-color: transparent;
}

.border-white {
  border-color: #fff;
}

.rounded-none {
  border-radius: 0;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

/* --- Typography extras --- */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

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

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

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

.italic {
  font-style: italic;
}

.not-italic {
  font-style: normal;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

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

.no-underline {
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

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

.tracking-normal {
  letter-spacing: 0;
}

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

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

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.break-words {
  overflow-wrap: break-word;
}

/* --- Color extras --- */
.text-black {
  color: #000;
}

.text-white {
  color: #fff;
}

.text-transparent {
  color: transparent;
}

.text-inherit {
  color: inherit;
}

.text-current {
  color: currentColor;
}

.text-[#00000180] {
  color: #00000180;
}

/* --- Background extras --- */
.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-gray-200 {
  background-color: #e5e7eb;
}

.bg-[#f1958f] {
  background-color: #f1958f;
}

/* --- Opacity extras --- */
.opacity-100 {
  opacity: 1;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-25 {
  opacity: 0.25;
}

/* --- Pointer events --- */
.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

/* --- User select --- */
.select-none {
  -webkit-user-select: none;
  user-select: none;
}

/* --- Transitions --- */
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-75 {
  transition-duration: 75ms;
}

.duration-100 {
  transition-duration: 100ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Transform extras --- */
.scale-100 {
  transform: scale(1);
}

.scale-95 {
  transform: scale(0.95);
}

.translate-y-0 {
  transform: translateY(0);
}

.-translate-y-full {
  transform: translateY(-100%);
}

.translate-y-full {
  transform: translateY(100%);
}

/* --- Z-index extras --- */
.z-0 {
  z-index: 0;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

/* --- Visibility --- */
.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

/* --- Object fit --- */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* --- Hover state utilities --- */
.hover\:opacity-75:hover {
  opacity: 0.75;
}

.hover\:opacity-80:hover {
  opacity: 0.8;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.hover\:no-underline:hover {
  text-decoration: none;
}

.hover\:bg-black:hover {
  background-color: #000;
}

.hover\:bg-white:hover {
  background-color: #fff;
}

.hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}

.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:text-black:hover {
  color: #000;
}

.hover\:text-white:hover {
  color: #fff;
}

.hover\:border-black:hover {
  border-color: #000;
}

/* --- Focus state utilities --- */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-0:focus {
  box-shadow: none;
}

/* --- Responsive extras: md --- */
@media (min-width: 768px) {
  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:inline-flex {
    display: inline-flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-\[14px\] {
    font-size: 14px;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-1\/5 {
    width: 20%;
  }

  .md\:mr-\[12px\] {
    margin-right: 12px;
  }
}

/* --- Responsive extras: lg --- */
@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:inline-flex {
    display: inline-flex;
  }

  .lg\:flex-col {
    flex-direction: column;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:gap-2 {
    gap: 0.5rem;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:p-4 {
    padding: 1rem;
  }

  .lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:pt-0 {
    padding-top: 0;
  }

  .lg\:mt-0 {
    margin-top: 0;
  }

  .lg\:mb-0 {
    margin-bottom: 0;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-1\/3 {
    width: 33.333333%;
  }

  .lg\:w-4 {
    width: 16px;
  }

  .lg\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-\[14px\] {
    font-size: 14px;
  }

  .lg\:text-\[16px\] {
    font-size: 16px;
  }
}
