:root {
  --rannora-ink: #222222;
  --rannora-muted: #48525a;
  --rannora-subtle: #48525a;
  --rannora-line: #dfe4e8;
  --rannora-paper: #f3f5f8;
  --rannora-surface: #ffffff;
  --rannora-raised: #ffffff;
  --rannora-product-stage: #f5f6f8;
  --rannora-dark: #162129;
  --rannora-accent: #3749bb;
  --rannora-accent-dark: #293ba8;
  --rannora-orange: #ef4a23;
  --rannora-stage-ink: #48525a;
  --rannora-accent-ink: #ffffff;
  --rannora-danger: #a1260c;
  --rannora-shadow: 0 22px 64px rgb(28 46 52 / 10%);
  --rannora-container: min(1200px, calc(100vw - 64px));
  --rannora-radius: 12px;
  --rannora-font: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --rannora-space-1: 4px;
  --rannora-space-2: 8px;
  --rannora-space-3: 12px;
  --rannora-space-4: 16px;
  --rannora-space-5: 24px;
  --rannora-space-6: 32px;
  --rannora-space-7: 40px;
  --rannora-space-8: 48px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --rannora-ink: #222222;
    --rannora-muted: #48525a;
    --rannora-subtle: #48525a;
    --rannora-line: #dfe4e8;
    --rannora-paper: #f3f5f8;
    --rannora-surface: #ffffff;
    --rannora-raised: #ffffff;
    --rannora-product-stage: #f5f6f8;
    --rannora-dark: #162129;
    --rannora-accent-dark: #293ba8;
    --rannora-stage-ink: #48525a;
    --rannora-danger: #a1260c;
    --rannora-shadow: 0 22px 64px rgb(28 46 52 / 10%);
  }
}

html {
  scroll-behavior: smooth;
}

body.rannora-launch-active {
  --content-vertical-spacing: 0px;
  margin: 0;
  overflow-x: hidden;
  background: var(--rannora-paper);
  color: var(--rannora-ink);
  font-family: var(--rannora-font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.rannora-launch-active #main-container {
  min-height: 0;
}

.rannora-launch-active *,
.rannora-launch-active *::before,
.rannora-launch-active *::after {
  box-sizing: border-box;
}

.rannora-launch-active a {
  color: inherit;
}

.rannora-launch-active img {
  display: block;
  max-width: 100%;
}

.rannora-launch-active :focus-visible {
  outline: 3px solid var(--rannora-accent-dark);
  outline-offset: 3px;
}

.rannora-launch-active #header,
.rannora-launch-active .ct-footer,
.rannora-launch-active .hero-section,
.rannora-launch-active .ct-breadcrumbs,
.rannora-launch-active .entry-header,
.rannora-launch-active .site-main > .woocommerce-breadcrumb {
  display: none !important;
}

.rannora-launch-active #main-container,
.rannora-launch-active .site-main,
.rannora-launch-active .ct-container,
.rannora-launch-active .content-area,
.rannora-launch-active .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.rannora-launch-active .site-main {
  background: #ffffff;
}

.rannora-launch-active .site-main > .ct-container-full {
  padding-block: 0 !important;
}

.rannora-announcement {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px 24px;
  background: #162129;
  color: #eef5f3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.rannora-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 70px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid #2e433c;
  background: #162129;
  color: #eef5f3;
  backdrop-filter: blur(16px);
}

.rannora-brand {
  color: #eef5f3 !important;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1;
  text-decoration: none !important;
}

.rannora-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 36px);
}

.rannora-nav a,
.rannora-cart-link {
  position: relative;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease;
  color: #eef5f3;
}

.rannora-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--rannora-accent-dark);
  content: "";
  opacity: 0;
  transform: scaleX(.2);
  transition: opacity .2s ease, transform .2s ease;
}

.rannora-nav a:hover::after,
.rannora-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.rannora-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.rannora-cart-count {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--rannora-accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.rannora-mobile-toggle {
  display: none;
}

.rannora-home-theme,
.rannora-policy-page,
.rannora-product-detail-template,
.rannora-product-hero {
  width: var(--rannora-container);
  margin-inline: auto;
}

.rannora-home-hero {
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(380px, .78fr) minmax(0, 1.3fr);
  align-items: stretch;
  padding: 0;
}

.rannora-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: clamp(40px, 4vw, 56px) clamp(32px, 5vw, 72px) clamp(40px, 4vw, 56px) 0;
}

.rannora-eyebrow,
.rannora-product-brand {
  margin: 0 0 22px;
  color: var(--rannora-accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rannora-home-hero h1 {
  margin: 0;
  max-width: 590px;
  color: var(--rannora-ink);
  font-size: 24px;
  font-weight: 620;
  letter-spacing: -.03em;
  line-height: .98;
}

.rannora-home-hero .rannora-hero-copy > p:not(.rannora-eyebrow) {
  max-width: 430px;
  margin: 30px 0 0;
  color: var(--rannora-muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
}

.rannora-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.rannora-button,
.rannora-launch-active .button,
.rannora-launch-active button.button,
.rannora-launch-active input.button,
.rannora-launch-active #place_order {
  display: inline-flex !important;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font-family: var(--rannora-font) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  letter-spacing: .01em;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, color .2s ease !important;
}

.rannora-button:hover,
.rannora-launch-active .button:hover,
.rannora-launch-active button.button:hover,
.rannora-launch-active #place_order:hover {
  transform: translateY(-1px);
}

.rannora-button:active,
.rannora-launch-active .button:active,
.rannora-launch-active button.button:active,
.rannora-launch-active #place_order:active {
  transform: translateY(1px) scale(.99);
}

.rannora-button-primary,
.rannora-launch-active .single_add_to_cart_button,
.rannora-launch-active #place_order,
.rannora-launch-active .checkout-button {
  background: var(--rannora-accent) !important;
  color: #ffffff !important;
}

.rannora-button-dark,
.rannora-launch-active .button:not(.single_add_to_cart_button):not(.checkout-button) {
  background: var(--rannora-dark) !important;
  color: var(--rannora-paper) !important;
}

.rannora-text-link {
  color: var(--rannora-ink) !important;
  font-size: 13px;
  font-weight: 750;
  text-underline-offset: 5px;
}

.rannora-hero-media {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--rannora-radius) var(--rannora-radius) 0 var(--rannora-radius);
  background: var(--rannora-surface);
}

.rannora-hero-media::after,
.rannora-product-frame::after,
.rannora-product-card-image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  background: var(--rannora-paper);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.rannora-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.rannora-category-rail {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) 1.58fr;
  gap: 52px;
  padding: clamp(52px, 6vw, 80px) 0;
}

.rannora-category-rail h2,
.rannora-section-heading h2,
.rannora-choice-block h2,
.rannora-product-detail-template h2,
.rannora-policy-page h1,
.rannora-category-intro h1 {
  margin: 0;
  color: var(--rannora-ink);
  font-size: 24px;
  font-weight: 620;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.rannora-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
}

.rannora-category-links a {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--rannora-line);
  text-decoration: none;
  transition: color .2s ease;
}

.rannora-category-links a:hover {
  color: var(--rannora-accent-dark);
}

.rannora-category-links span {
  font-size: 16px;
  font-weight: 700;
}

.rannora-category-links small {
  color: var(--rannora-subtle);
  font-size: 12px;
  white-space: nowrap;
}

.rannora-featured-products {
  padding: clamp(52px, 6vw, 80px) 0;
  border-top: 1px solid var(--rannora-line);
}

.rannora-section-heading {
  display: block;
  max-width: 640px;
  margin-bottom: 44px;
}

.rannora-section-heading p,
.rannora-choice-block p,
.rannora-policy-page header p,
.rannora-category-intro > p:last-child {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--rannora-muted);
  font-size: 17px;
}

.rannora-product-grid,
.rannora-launch-active ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: var(--rannora-space-7) var(--rannora-space-5) !important;
  margin: 0 !important;
}

.rannora-product-card,
.rannora-launch-active ul.products li.product {
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.rannora-product-card-image,
.rannora-launch-active ul.products li.product .ct-media-container {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 1 / .9;
  place-items: center;
  border-radius: var(--rannora-radius) var(--rannora-radius) 0 var(--rannora-radius);
  background: var(--rannora-product-stage);
}

.rannora-product-card-image img,
.rannora-launch-active ul.products li.product img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  padding: clamp(16px, 2vw, 30px);
  mix-blend-mode: multiply;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.rannora-product-card:hover img,
.rannora-launch-active ul.products li.product:hover img {
  transform: scale(1.035);
}

.rannora-product-card-copy {
  padding-top: 18px;
}

.rannora-product-card .rannora-product-brand {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
}

.rannora-product-card h3,
.rannora-launch-active ul.products li.product .woocommerce-loop-product__title {
  margin: 0 !important;
  color: var(--rannora-ink) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: -.02em;
  line-height: 1.35 !important;
}

.rannora-product-card h3 a,
.rannora-launch-active ul.products li.product a {
  text-decoration: none !important;
}

.rannora-card-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.rannora-card-price,
.rannora-launch-active ul.products li.product .price {
  color: var(--rannora-ink) !important;
  font-size: 15px !important;
  font-weight: 750 !important;
}

.rannora-card-price del,
.rannora-launch-active .price del {
  color: var(--rannora-subtle) !important;
  font-size: 12px;
  font-weight: 500;
  opacity: 1 !important;
}

.rannora-card-link {
  color: var(--rannora-accent-dark) !important;
  font-size: 12px;
  font-weight: 750;
}

.rannora-view-all {
  display: inline-block;
  margin-top: 42px;
}

.rannora-choice-block {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(48px, 6vw, 72px);
  border-radius: var(--rannora-radius);
  background: #162129;
  color: #e8efed;
}

.rannora-choice-block h2 {
  color: #e8efed;
}

.rannora-choice-block p {
  color: #aebbb7;
}

.rannora-choice-block .rannora-button {
  margin-top: 28px;
  background: var(--rannora-accent) !important;
  color: #ffffff !important;
}

.rannora-choice-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rannora-choice-list span {
  padding: 22px 0;
  border-bottom: 1px solid #34443f;
  color: #e8efed;
  font-size: 16px;
  font-weight: 650;
}

.rannora-service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 42px 0 64px;
}

.rannora-service-row div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rannora-service-row strong {
  font-size: 14px;
}

.rannora-service-row span {
  color: var(--rannora-muted);
  font-size: 13px;
}

.rannora-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding: clamp(32px, 4vw, 56px) 0;
}

.rannora-product-template .summary.entry-summary,
.rannora-product-template .related.products,
.rannora-product-template .product > .onsale,
.rannora-product-template .product > .woocommerce-product-gallery {
  display: none !important;
}

.rannora-product-gallery {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.rannora-product-media {
  position: relative;
  min-width: 0;
}

.rannora-product-frame {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 1 / .94;
  place-items: center;
  border-radius: var(--rannora-radius) var(--rannora-radius) 0 var(--rannora-radius);
  background: var(--rannora-product-stage);
}

.rannora-gallery-slide {
  display: none;
  width: 100%;
  height: 100%;
  margin: 0;
  place-items: center;
}

.rannora-gallery-slide.is-active {
  display: grid;
}

.rannora-product-frame img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.rannora-gallery-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.rannora-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.rannora-gallery-thumb {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--rannora-line);
  border-radius: 8px;
  background: var(--rannora-raised);
  cursor: pointer;
}

.rannora-gallery-thumb.is-active {
  border-color: var(--rannora-accent);
  box-shadow: 0 0 0 1px var(--rannora-accent);
}

.rannora-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rannora-gallery-thumb-video span {
  color: var(--rannora-ink);
  font-size: 11px;
  font-weight: 750;
}

.rannora-product-summary h1 {
  margin: 0;
  color: var(--rannora-ink);
  font-size: 24px;
  font-weight: 620;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.rannora-product-summary .rannora-product-brand {
  display: block;
  margin-bottom: 18px;
}

.rannora-price {
  margin-top: 24px;
  color: var(--rannora-danger);
  font-size: 20px;
  font-weight: 760;
}

.rannora-product-intro {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--rannora-muted);
  font-size: 16px;
  line-height: 1.65;
}

.rannora-product-intro p {
  margin: 0;
}

.rannora-review-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  min-height: 44px;
  color: var(--rannora-muted);
  font-size: 12px;
  text-decoration: none;
}

.rannora-review-stars {
  color: var(--rannora-accent-dark);
  font-size: 13px;
  letter-spacing: .08em;
}

.rannora-review-summary .star-rating,
.rannora-review-summary .star-rating span,
.rannora-review-summary .star-rating strong {
  font-size: 12px !important;
}

.rannora-product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.rannora-product-features span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--rannora-surface);
  color: var(--rannora-muted);
  font-size: 12px;
  font-weight: 650;
}

.rannora-best-for {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  margin: 28px 0 0;
  color: var(--rannora-muted);
  font-size: 13px;
}

.rannora-best-for strong {
  color: var(--rannora-ink);
}

.rannora-product-summary form.cart {
  display: flex;
  gap: 10px;
  margin: 30px 0 0 !important;
}

.rannora-product-summary form.variations_form.cart {
  display: block;
}

.rannora-product-summary .variations {
  width: 100%;
  margin: 0 0 16px;
  border: 0;
}

.rannora-product-summary .variations th,
.rannora-product-summary .variations td {
  display: block;
  padding: 0;
  border: 0;
  text-align: left;
}

.rannora-product-summary .variations label {
  display: block;
  margin-bottom: 8px;
  color: var(--rannora-ink);
  font-size: 13px;
  font-weight: 750;
}

.rannora-product-summary .variations select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--rannora-line);
  border-radius: 8px;
  background: var(--rannora-raised);
  color: var(--rannora-ink);
  font: inherit;
}

.rannora-product-summary .reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: var(--rannora-muted);
  font-size: 12px;
}

.rannora-product-summary .single_variation_wrap {
  width: 100%;
}

.rannora-product-summary .woocommerce-variation-add-to-cart {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.rannora-product-summary .woocommerce-variation-description,
.rannora-product-summary .woocommerce-variation-price {
  display: none;
}

.rannora-product-summary .ct-cart-actions {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 12px;
}

.rannora-product-summary .single_add_to_cart_button {
  min-width: 150px;
  flex: 1;
}

.rannora-product-summary .added_to_cart.wc-forward {
  display: none !important;
  min-width: 120px;
  min-height: 48px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--rannora-accent-dark);
  border-radius: 999px;
  background: var(--rannora-surface);
  color: var(--rannora-accent-dark);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
}

.rannora-product-summary .quantity[data-type] {
  position: relative;
  width: 132px;
  height: 48px;
  flex: 0 0 132px;
  overflow: hidden;
  border: 1px solid var(--rannora-line);
  border-radius: 8px;
  background: var(--rannora-raised);
}

.rannora-launch-active .quantity .qty {
  width: 100% !important;
  height: 48px;
  min-height: 48px;
  padding: 0 40px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--rannora-ink) !important;
  font-size: 16px;
  text-align: center;
}

.rannora-product-summary .quantity .ct-increase,
.rannora-product-summary .quantity .ct-decrease {
  top: 0;
  bottom: auto;
  z-index: 2;
  width: 40px;
  height: 48px;
  color: var(--rannora-ink);
}

.rannora-product-summary .quantity .ct-increase {
  right: 0;
  left: auto;
}

.rannora-product-summary .quantity .ct-decrease {
  right: auto;
  left: 0;
}

.rannora-purchase-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
  color: var(--rannora-muted);
  font-size: 13px;
}

.rannora-purchase-note span:not(:last-child)::after {
  margin-left: 16px;
  color: var(--rannora-line);
  content: "/";
}

.rannora-product-detail-template {
  padding-bottom: var(--rannora-space-8);
}

.rannora-product-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: var(--rannora-space-8) 0;
  border-top: 1px solid var(--rannora-line);
}

.rannora-product-overview p,
.rannora-use-care p,
.rannora-product-faq p {
  color: var(--rannora-muted);
  line-height: 1.7;
}

.rannora-feature-list {
  display: grid;
  align-content: center;
}

.rannora-feature-list span {
  padding: 17px 0;
  border-bottom: 1px solid var(--rannora-line);
  font-size: 15px;
  font-weight: 650;
}

.rannora-included {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 5vw, 48px);
  align-items: start;
  padding: 0 0 var(--rannora-space-8);
}

.rannora-included p {
  margin: 10px 0 0;
  color: var(--rannora-muted);
}

.rannora-included ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rannora-included li {
  padding: 18px;
  border-radius: 8px;
  background: var(--rannora-surface);
  color: var(--rannora-ink);
  font-size: 14px;
  font-weight: 650;
}

.rannora-spec-section {
  padding: var(--rannora-space-7);
  border-radius: var(--rannora-radius);
  background: var(--rannora-surface);
}

.rannora-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.rannora-spec-grid div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: var(--rannora-radius);
  background: var(--rannora-raised);
}

.rannora-spec-grid span {
  color: var(--rannora-muted);
  font-size: 12px;
}

.rannora-spec-grid strong {
  color: var(--rannora-ink);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -.03em;
}

.rannora-use-care {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rannora-space-6);
  padding: var(--rannora-space-8) 0;
}

.rannora-use-care h2 {
  font-size: 24px;
}

.rannora-warranty {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: var(--rannora-space-8);
  padding: 28px;
  border-radius: var(--rannora-radius);
  background: var(--rannora-surface);
}

.rannora-warranty p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--rannora-muted);
  line-height: 1.65;
}

.rannora-warranty a {
  flex: 0 0 auto;
  color: var(--rannora-ink);
  font-size: 13px;
  font-weight: 720;
}

.rannora-product-faq {
  max-width: 860px;
  padding-bottom: var(--rannora-space-8);
}

.rannora-product-faq h2 {
  margin-bottom: 28px;
}

.rannora-product-faq details {
  border-bottom: 1px solid var(--rannora-line);
}

.rannora-product-faq summary {
  padding: 20px 34px 20px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.rannora-product-faq summary::-webkit-details-marker {
  display: none;
}

.rannora-product-faq p {
  max-width: 680px;
  margin: 0 0 22px;
}

.rannora-product-story {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  padding: var(--rannora-space-8) 0;
  border-top: 1px solid var(--rannora-line);
}

.rannora-product-story > header {
  position: sticky;
  top: 96px;
}

.rannora-product-story h2 {
  max-width: 460px;
  margin: 10px 0 14px;
}

.rannora-product-story > header > p:last-child {
  max-width: 460px;
  margin: 0;
  color: var(--rannora-muted);
}

.rannora-product-story-media {
  display: grid;
  gap: 18px;
}

.rannora-product-story-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--rannora-radius);
  background: var(--rannora-product-stage);
}

.rannora-product-reviews {
  scroll-margin-top: 120px;
  padding: var(--rannora-space-8) 0;
  border-top: 1px solid var(--rannora-line);
}

.rannora-product-reviews > header {
  margin-bottom: 34px;
}

.rannora-product-reviews > header p {
  margin: 8px 0 0;
  color: var(--rannora-muted);
}

.rannora-product-reviews > header .rannora-review-status {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid #f0c9bf;
  border-radius: 8px;
  background: #fff4f1;
  color: var(--rannora-danger);
  font-size: 13px;
}

.rannora-product-reviews > header .rannora-review-status:empty {
  display: none;
}

.rannora-product-reviews .woocommerce-Reviews {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(38px, 7vw, 90px);
}

.rannora-review-form-hidden .rannora-product-reviews .woocommerce-Reviews {
  display: block;
}

.rannora-review-form-hidden .rannora-product-reviews #review_form_wrapper {
  display: none !important;
}

.rannora-product-reviews .woocommerce-pagination {
  margin: 24px 0 0;
  text-align: left;
}

.rannora-product-reviews .woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 0;
}

.rannora-product-reviews .woocommerce-pagination ul.page-numbers li {
  border: 0;
}

.rannora-product-reviews .woocommerce-pagination .page-numbers a,
.rannora-product-reviews .woocommerce-pagination .page-numbers span {
  display: grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--rannora-line);
  border-radius: 999px;
  background: var(--rannora-surface);
  color: var(--rannora-ink);
}

.rannora-product-reviews .woocommerce-pagination .page-numbers .current {
  border-color: var(--rannora-accent);
  background: var(--rannora-accent);
  color: var(--rannora-accent-ink);
}

.rannora-product-reviews--empty .woocommerce-Reviews {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}

.rannora-product-reviews--empty #comments {
  margin-bottom: 28px;
}

.rannora-product-reviews--empty #review_form_wrapper {
  position: static;
}

.rannora-product-reviews .woocommerce-Reviews-title,
.rannora-product-reviews .comment-reply-title {
  display: block;
  margin: 0 0 22px;
  color: var(--rannora-ink) !important;
  font-size: 20px;
  font-weight: 700;
}

.rannora-product-reviews #cancel-comment-reply-link {
  color: var(--rannora-muted) !important;
}

.rannora-product-reviews .commentlist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rannora-product-reviews .commentlist > li {
  margin: 0 !important;
  padding: 22px !important;
  border: 1px solid var(--rannora-line);
  border-radius: var(--rannora-radius);
  background: var(--rannora-surface);
}

.rannora-product-reviews .comment_container {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
}

.rannora-product-reviews .avatar {
  position: static !important;
  width: 38px !important;
  height: 38px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 50%;
}

.rannora-product-reviews .comment-text {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.rannora-launch-active .star-rating,
.rannora-launch-active .star-rating span {
  color: var(--rannora-accent-dark);
}

.rannora-product-reviews .stars a {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--rannora-accent-dark);
}

.rannora-product-reviews .star-rating {
  font-size: 12px;
}

.rannora-product-reviews .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 9px 0 12px !important;
  color: var(--rannora-muted) !important;
  font-size: 12px !important;
}

.rannora-product-reviews .woocommerce-review__dash {
  display: none;
}

.rannora-product-reviews .meta > * {
  font-size: 12px;
}

.rannora-product-reviews .description p {
  margin: 0;
  color: var(--rannora-ink);
  line-height: 1.65;
}

.rannora-review-source {
  margin: 12px 0 0 !important;
}

.rannora-review-source a {
  color: var(--rannora-muted);
  font-size: 12px;
}

.rannora-product-reviews #review_form_wrapper {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 24px;
  border-radius: var(--rannora-radius);
  background: var(--rannora-surface);
}

.rannora-product-reviews .comment-form {
  display: grid;
  gap: 16px;
}

.rannora-product-reviews .comment-form > p,
.rannora-product-reviews .comment-notes {
  margin: 0 !important;
}

.rannora-product-reviews .comment-form label,
.rannora-review-media-field > label {
  display: block;
  margin-bottom: 7px;
  color: var(--rannora-ink);
  font-size: 13px;
  font-weight: 700;
}

.rannora-review-media-field > label span {
  color: var(--rannora-muted);
  font-weight: 500;
}

.rannora-product-reviews input[type="text"],
.rannora-product-reviews input[type="email"],
.rannora-product-reviews textarea {
  width: 100%;
  border: 1px solid var(--rannora-line) !important;
  border-radius: 8px !important;
  background: var(--rannora-raised) !important;
  color: var(--rannora-ink) !important;
}

.rannora-product-reviews textarea {
  min-height: 130px;
}

.rannora-review-media-field {
  padding: 16px;
  border: 1px dashed var(--rannora-line);
  border-radius: 8px;
}

.rannora-review-media-field input[type="file"] {
  width: 100%;
  color: var(--rannora-muted);
  font-size: 12px;
}

.rannora-review-media-field > p {
  margin: 8px 0 0;
  color: var(--rannora-muted);
  font-size: 13px;
}

.rannora-review-media-preview,
.rannora-review-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.rannora-review-media-preview:empty {
  display: none;
}

.rannora-review-media-preview img,
.rannora-review-media-preview video,
.rannora-review-media img,
.rannora-review-media video {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--rannora-product-stage);
  object-fit: cover;
}

.rannora-product-reviews .form-submit input,
.rannora-product-reviews .form-submit .submit {
  width: 100%;
  min-height: 48px;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--rannora-accent) !important;
  color: var(--rannora-accent-ink) !important;
  font-weight: 750;
}

.rannora-related {
  padding-top: 56px;
  border-top: 1px solid var(--rannora-line);
}

.rannora-related > h2 {
  margin-bottom: 38px;
}

.rannora-category-intro {
  padding: clamp(48px, 5vw, 72px) 0 36px;
}

.rannora-category-intro .rannora-eyebrow {
  margin-bottom: 18px;
}

.rannora-category-template .site-main > article,
.rannora-category-template .site-main > .products,
.rannora-launch-active .woocommerce-notices-wrapper,
.rannora-cart-page .site-main,
.rannora-checkout-page .site-main,
.rannora-launch-active.woocommerce-account .site-main {
  width: var(--rannora-container);
  margin-inline: auto;
}

.rannora-category-template .site-main > .ct-container {
  width: var(--rannora-container) !important;
  max-width: none !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

.rannora-product-template .product-entry-wrapper,
.rannora-cart-page .entry-content,
.rannora-checkout-page .entry-content,
.rannora-launch-active.woocommerce-account .entry-content,
.rannora-cart-page .entry-content > .woocommerce,
.rannora-checkout-page .entry-content > .woocommerce,
.rannora-launch-active.woocommerce-account .entry-content > .woocommerce {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

.rannora-launch-active.woocommerce-account .site-main {
  padding: clamp(36px, 5vw, 64px) 0 72px;
}

.rannora-category-template .woocommerce-result-count {
  color: var(--rannora-muted);
  font-size: 13px;
}

.rannora-category-template .woocommerce-ordering {
  display: none !important;
}

.rannora-category-template .woocommerce-ordering select,
.rannora-launch-active select {
  min-height: 46px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--rannora-line);
  border-radius: 8px;
  background-color: var(--rannora-raised);
  color: var(--rannora-ink);
  font-family: var(--rannora-font);
}

.rannora-launch-active ul.products {
  clear: both;
  padding: var(--rannora-space-5) 0 64px !important;
}

.rannora-launch-active ul.products li.product .woocommerce-loop-product__title,
.rannora-launch-active ul.products li.product .price,
.rannora-launch-active ul.products li.product .rannora-loop-benefit,
.rannora-launch-active ul.products li.product .button {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.rannora-launch-active ul.products li.product .button {
  min-height: 44px;
  padding: 0 16px !important;
  border: 1px solid var(--rannora-accent) !important;
  border-radius: 8px !important;
  background: var(--rannora-surface) !important;
  color: var(--rannora-accent-dark) !important;
  font-size: 12px !important;
}

.rannora-launch-active ul.products li.product .onsale,
.rannora-launch-active .onsale {
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: var(--rannora-accent) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .04em;
}

.rannora-launch-active ul.products li.product .entry-meta {
  color: var(--rannora-muted) !important;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .03em;
  line-height: 1.45;
}

.rannora-launch-active ul.products li.product figure {
  margin-bottom: 18px !important;
}

.rannora-launch-active ul.products li.product .woocommerce-loop-product__title {
  min-height: 38px;
  line-height: 1.35 !important;
}

.rannora-launch-active ul.products li.product .price {
  margin-top: 8px !important;
  line-height: 1.35 !important;
}

.rannora-launch-active ul.products li.product .sale-price {
  gap: 7px;
  align-items: baseline;
  flex-wrap: wrap;
}

.rannora-launch-active ul.products li.product .entry-meta,
.rannora-launch-active ul.products li.product .ct-woo-card-actions {
  margin-top: 12px !important;
}

.rannora-loop-benefit {
  display: -webkit-box;
  min-height: 42px;
  margin: 10px 0 14px;
  overflow: hidden;
  color: var(--rannora-muted);
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rannora-policy-page {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 10vw, 150px);
  padding: clamp(36px, 4vw, 56px) 0;
}

.rannora-policy-page header {
  position: sticky;
  top: 118px;
  align-self: start;
}

.rannora-policy-sections {
  display: grid;
  gap: 32px;
}

.rannora-policy-sections section {
  padding: 0;
  margin: 0;
  border: 0;
}

.rannora-policy-sections h2 {
  margin: 0;
  color: var(--rannora-ink) !important;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.rannora-policy-sections p {
  max-width: 680px;
  margin: 13px 0 0;
  color: var(--rannora-muted);
  line-height: 1.75;
}

.rannora-launch-active .woocommerce-pagination .page-numbers,
.rannora-launch-active .ct-pagination .page-numbers {
  border-color: var(--rannora-line) !important;
  background: transparent !important;
  color: var(--rannora-ink) !important;
}

.rannora-launch-active .woocommerce-pagination .page-numbers.current,
.rannora-launch-active .ct-pagination .page-numbers.current {
  border-color: var(--rannora-accent-dark) !important;
  background: var(--rannora-accent) !important;
  color: #ffffff !important;
}

.rannora-launch-active .required {
  color: var(--rannora-danger) !important;
  opacity: 1 !important;
}

.rannora-checkout-page .site-main {
  padding: clamp(28px, 3vw, 40px) 0 24px;
}

.rannora-cart-page .site-main {
  padding: clamp(24px, 3vw, 36px) 0 40px;
}

.rannora-cart-page .site-main:has(.wc-empty-cart-message) {
  padding: 24px 0 32px;
}

.rannora-cart-page h1,
.rannora-checkout-page h1,
.rannora-launch-active .cart_totals h2,
.rannora-launch-active .woocommerce-billing-fields h3,
.rannora-launch-active #order_review_heading {
  color: var(--rannora-ink) !important;
  font-size: 24px !important;
  font-weight: 620 !important;
  letter-spacing: -.04em;
}

.rannora-cart-trust,
.rannora-checkout-trust {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 18px 22px;
  border-radius: var(--rannora-radius);
  background: var(--rannora-surface);
  border: 1px solid var(--rannora-line);
}

.rannora-cart-page #billing_country_field,
.rannora-checkout-page #billing_country_field {
  display: none !important;
}

.rannora-cart-trust span,
.rannora-checkout-trust span {
  color: var(--rannora-muted);
  font-size: 13px;
}

.rannora-launch-active table.shop_table {
  border: 0 !important;
  border-collapse: collapse !important;
  border-radius: 0 !important;
}

.rannora-launch-active table.shop_table th,
.rannora-launch-active table.shop_table td {
  padding: 18px 12px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--rannora-line) !important;
  color: var(--rannora-ink);
}

.rannora-launch-active .woocommerce-Price-currencySymbol {
  color: inherit !important;
}

.rannora-cart-page .woocommerce-Price-amount,
.rannora-cart-page .woocommerce-Price-currencySymbol {
  color: var(--rannora-ink) !important;
  opacity: 1 !important;
}

.rannora-cart-page .quantity .ct-increase,
.rannora-cart-page .quantity .ct-decrease {
  color: var(--rannora-ink) !important;
}

.rannora-cart-page .woocommerce-cart-form .quantity[data-type] {
  position: relative;
  width: 132px;
  height: 44px;
  overflow: hidden;
  border: 1px solid var(--rannora-line);
  border-radius: 6px;
  background: #ffffff;
}

.rannora-cart-page .woocommerce-cart-form .quantity .qty {
  width: 100% !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 44px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--rannora-ink) !important;
  text-align: center;
}

.rannora-cart-page .woocommerce-cart-form .quantity .ct-increase,
.rannora-cart-page .woocommerce-cart-form .quantity .ct-decrease {
  top: 0 !important;
  bottom: auto !important;
  width: 44px !important;
  height: 44px !important;
  color: var(--rannora-ink) !important;
}

.rannora-cart-page .woocommerce-cart-form .quantity .ct-increase {
  right: 0 !important;
  left: auto !important;
}

.rannora-cart-page .woocommerce-cart-form .quantity .ct-decrease {
  right: auto !important;
  left: 0 !important;
}

.rannora-cart-page .woocommerce-cart-form table.cart {
  table-layout: fixed;
}

.rannora-cart-page .woocommerce-cart-form th.product-thumbnail,
.rannora-cart-page .woocommerce-cart-form td.product-thumbnail {
  width: 120px;
}

.rannora-cart-page .woocommerce-cart-form td.product-thumbnail a,
.rannora-cart-page .woocommerce-cart-form td.product-thumbnail img {
  width: 96px !important;
  height: 96px !important;
}

.rannora-cart-page .woocommerce-cart-form td.product-thumbnail img {
  padding: 6px;
  border-radius: 8px;
  background: var(--rannora-product-stage);
  object-fit: contain;
}

.rannora-cart-page .woocommerce-cart-form th.product-quantity,
.rannora-cart-page .woocommerce-cart-form td.product-quantity {
  width: 152px;
}

.rannora-cart-page .woocommerce-cart-form th.product-subtotal,
.rannora-cart-page .woocommerce-cart-form td.product-subtotal {
  width: 120px;
}

.rannora-cart-page .woocommerce-cart-form th.product-remove,
.rannora-cart-page .woocommerce-cart-form td.product-remove {
  width: 48px;
}

.rannora-cart-page .woocommerce-cart-form table.cart th,
.rannora-cart-page .woocommerce-cart-form table.cart td {
  vertical-align: middle;
}

.rannora-cart-page .woocommerce-cart-form td.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0 !important;
}

.rannora-cart-page .woocommerce-cart-form td.actions::before {
  display: none !important;
}

.rannora-cart-page .woocommerce-cart-form .coupon {
  display: flex !important;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 8px;
}

body.rannora-launch-active.rannora-cart-page .woocommerce-cart-form td.actions .coupon {
  display: flex !important;
  width: min(420px, 100%) !important;
  min-width: 320px;
  flex: 0 1 420px;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

.rannora-cart-page .woocommerce-cart-form .coupon .input-text {
  width: auto !important;
  height: 48px;
  min-height: 48px;
  min-width: 180px;
  flex: 1 1 auto;
}

.rannora-cart-page .woocommerce-cart-form .coupon .button {
  min-height: 48px;
  background: #f5f6fc !important;
  color: #293ba8 !important;
}

.rannora-cart-page .woocommerce-cart-form button[name="update_cart"] {
  display: none !important;
}

.rannora-launch-active .button:disabled,
.rannora-launch-active .button.disabled,
.rannora-launch-active .button[disabled] {
  border-color: var(--rannora-line) !important;
  background: var(--rannora-line) !important;
  color: var(--rannora-ink) !important;
  cursor: not-allowed;
  opacity: 1 !important;
}

.rannora-launch-active table.shop_table th {
  color: var(--rannora-muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rannora-launch-active ul.products li.product .price,
.rannora-card-price {
  color: var(--rannora-danger) !important;
}

.rannora-launch-active .cart-collaterals .cart_totals,
.rannora-launch-active #order_review,
.rannora-launch-active .woocommerce-checkout-review-order {
  padding: clamp(12px, 1.5vw, 20px);
  border: 0 !important;
  border-radius: var(--rannora-radius);
  background: var(--rannora-surface);
}

.rannora-launch-active .cart-collaterals .cart_totals {
  --cart-totals-border: none;
  --cart-totals-padding: clamp(22px, 3vw, 36px);
  border: 0 !important;
}

.rannora-launch-active .ct-order-review {
  --order-review-border: none;
  --order-review-padding: 0;
  border: 0 !important;
}

.rannora-launch-active .woocommerce-form-coupon-toggle .woocommerce-info,
.rannora-launch-active .woocommerce-info,
.rannora-launch-active .woocommerce-message,
.rannora-launch-active .woocommerce-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px !important;
  padding: 16px 18px !important;
  border: 0 !important;
  border-radius: var(--rannora-radius);
  background: var(--rannora-surface) !important;
  color: var(--rannora-ink) !important;
  font-size: 14px;
  line-height: 1.45;
}

.rannora-launch-active .woocommerce-message::before,
.rannora-launch-active .woocommerce-info::before,
.rannora-launch-active .woocommerce-error::before {
  display: none !important;
}

.rannora-launch-active .woocommerce-error {
  border: 1px solid #f0c9bf !important;
  background: #fff4f1 !important;
}

.rannora-checkout-page ul.woocommerce-error {
  display: grid;
  align-items: start;
  justify-content: stretch;
  gap: 8px;
  padding: 14px 16px !important;
  border: 1px solid #f0c9bf !important;
  background: #fff4f1 !important;
}

.rannora-checkout-page ul.woocommerce-error li {
  margin: 0 !important;
  padding: 0 !important;
}

.rannora-launch-active .woocommerce-message {
  border: 1px solid #cbd2f1 !important;
  background: #f4f6ff !important;
}

.rannora-launch-active form .form-row {
  margin: 0 0 18px !important;
}

.rannora-launch-active form .form-row label {
  display: block;
  margin: 0 0 7px;
  color: var(--rannora-ink);
  font-size: 13px;
  font-weight: 750;
}

.rannora-launch-active input.input-text,
.rannora-launch-active textarea,
.rannora-launch-active .select2-container .select2-selection--single,
.rannora-launch-active input[type="text"],
.rannora-launch-active input[type="email"],
.rannora-launch-active input[type="tel"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--rannora-line) !important;
  border-radius: 8px !important;
  background: var(--rannora-raised) !important;
  box-shadow: none !important;
  color: var(--rannora-ink) !important;
  font-family: var(--rannora-font);
  font-size: 15px;
}

.rannora-launch-active textarea {
  min-height: 120px;
  resize: vertical;
}

.rannora-launch-active input::placeholder,
.rannora-launch-active textarea::placeholder {
  color: var(--rannora-subtle);
  opacity: 1;
}

.rannora-launch-active .select2-container .select2-selection__rendered,
.rannora-launch-active .select2-container .select2-selection__placeholder,
.rannora-launch-active .woocommerce-form__label,
.rannora-launch-active .woocommerce-shipping-fields label {
  color: var(--rannora-ink) !important;
}

.rannora-launch-active input:focus,
.rannora-launch-active textarea:focus,
.rannora-launch-active select:focus,
.rannora-launch-active .select2-container--open .select2-selection {
  border-color: var(--rannora-accent-dark) !important;
  outline: 0;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--rannora-accent) 28%, transparent) !important;
}

.rannora-launch-active .woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  column-gap: clamp(48px, 7vw, 96px);
  align-items: start;
  max-width: 1120px;
  margin: 36px auto 0;
}

.rannora-launch-active .woocommerce-checkout .col2-set {
  width: 100%;
  grid-column: 1;
  grid-row: 1 / 3;
  margin: 0;
}

.rannora-launch-active .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}

.rannora-launch-active .woocommerce-billing-fields__field-wrapper .form-row {
  width: 100% !important;
  float: none !important;
}

.rannora-launch-active .woocommerce-billing-fields__field-wrapper .form-row-wide,
.rannora-launch-active .woocommerce-billing-fields__field-wrapper #billing_address_1_field,
.rannora-launch-active .woocommerce-billing-fields__field-wrapper #billing_address_2_field,
.rannora-launch-active .woocommerce-billing-fields__field-wrapper #billing_email_field {
  grid-column: 1 / -1;
}

.rannora-launch-active #order_review_heading,
.rannora-launch-active #order_review {
  width: 100%;
  float: none;
  clear: none;
  grid-column: 2;
}

.rannora-launch-active #order_review_heading {
  grid-row: 1;
  margin: 0 0 26px;
}

.rannora-launch-active #order_review {
  grid-row: 2;
  margin: 0;
}

.rannora-launch-active #order_review,
.rannora-launch-active .woocommerce-checkout-review-order {
  padding-bottom: 16px;
}

.rannora-launch-active .woocommerce-checkout-payment,
.rannora-launch-active .woocommerce-checkout-payment ul,
.rannora-launch-active .woocommerce-checkout-payment li,
.rannora-launch-active .wc_payment_method {
  border: 0 !important;
  background: transparent !important;
}

.rannora-launch-active .payment_box {
  margin: 0 !important;
  padding: 10px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--rannora-muted) !important;
}

.rannora-launch-active .payment_box::before {
  display: none !important;
}

.rannora-launch-active #payment .place-order {
  margin: 0 !important;
  padding: 18px 0 0 !important;
}

.rannora-footer {
  padding: var(--rannora-space-7) max(24px, calc((100vw - 1200px) / 2)) var(--rannora-space-5);
  background: #162129;
  color: #dce7e4;
}

.rannora-footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: var(--rannora-space-6);
}

.rannora-footer .rannora-brand {
  color: #eef5f3 !important;
}

.rannora-footer-main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.rannora-footer-main strong {
  margin-bottom: 8px;
  color: #eef5f3;
  font-size: 12px;
}

.rannora-footer-main p,
.rannora-footer-main a,
.rannora-footer-bottom {
  color: #afbfba;
  font-size: 13px;
}

.rannora-footer-main a {
  text-decoration: none;
}

.rannora-footer-main a:hover {
  color: var(--rannora-accent);
}

.rannora-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: var(--rannora-space-6);
  padding-top: var(--rannora-space-4);
  border-top: 1px solid #34443f;
}

@media (min-width: 1200px) {
  .rannora-featured-products .rannora-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 32px !important;
  }

  .rannora-featured-products .rannora-product-card,
  .rannora-featured-products .rannora-product-card-copy,
  .rannora-category-template ul.products li.product {
    display: flex;
    flex-direction: column;
  }

  .rannora-featured-products .rannora-product-card-copy {
    flex: 1;
  }

  .rannora-featured-products .rannora-card-bottom,
  .rannora-category-template ul.products li.product .ct-woo-card-actions {
    margin-top: auto !important;
    padding-top: 14px;
  }

  .rannora-category-intro {
    padding-top: 48px;
  }

  .rannora-spec-section {
    padding: 32px;
  }

  .rannora-spec-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rannora-spec-grid div {
    min-height: 80px;
    padding: 14px 16px;
  }

  .rannora-spec-grid strong {
    font-size: 16px;
  }

  .rannora-use-care {
    padding: 36px 0;
  }

  .rannora-warranty {
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 36px;
    padding: 24px 28px;
  }

  .rannora-product-faq {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 64px;
    max-width: none;
    padding-bottom: 36px;
  }

  .rannora-product-faq h2 {
    grid-column: 1 / -1;
  }

  .rannora-product-reviews {
    padding: 36px 0;
  }

  .rannora-related {
    padding-top: 40px;
  }
}

@media (max-width: 1199px) {
  :root {
    --rannora-container: min(100% - 40px, 920px);
  }

  .rannora-nav {
    gap: 18px;
  }

  .rannora-nav a:nth-child(4) {
    display: none;
  }

  .rannora-home-hero {
    min-height: auto;
    grid-template-columns: .9fr 1.1fr;
  }

  .rannora-product-grid,
  .rannora-launch-active ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .rannora-product-hero {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .rannora-footer-main {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

  .rannora-cart-page .ct-woocommerce-cart-form {
    row-gap: 16px !important;
  }
}

@media (max-width: 767px) {
  :root {
    --rannora-container: calc(100% - 32px);
  }

  html {
    scroll-behavior: auto;
  }

  .rannora-announcement {
    min-height: 28px;
    padding-inline: 12px;
    font-size: 11px;
    letter-spacing: .05em;
  }

  .rannora-header {
    min-height: 62px;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    padding: 0 16px;
  }

  .rannora-brand {
    font-size: 18px;
  }

  .rannora-mobile-toggle {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #eef5f3;
    font-family: var(--rannora-font);
    font-size: 12px;
    font-weight: 700;
  }

  .rannora-nav {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-content: stretch;
    padding: 12px 16px 20px;
    justify-items: stretch;
    border-bottom: 1px solid #2e433c;
    background: #162129;
    box-shadow: var(--rannora-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
    visibility: hidden;
  }

  .rannora-nav-open .rannora-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .rannora-nav a,
  .rannora-nav a:nth-child(4) {
    display: block;
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid #2e433c;
    color: #eef5f3;
    font-size: 15px;
    justify-self: stretch !important;
    margin: 0 !important;
    text-align: left;
  }

  .rannora-nav a::after {
    display: none;
  }

  .rannora-cart-link {
    font-size: 12px;
  }

  .rannora-home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .rannora-hero-copy {
    padding: 42px 0 34px;
  }

  .rannora-eyebrow {
    margin-bottom: 16px;
  }

  .rannora-home-hero h1 {
    font-size: 24px;
  }

  .rannora-home-hero .rannora-hero-copy > p:not(.rannora-eyebrow) {
    margin-top: 22px;
    font-size: 16px;
  }

  .rannora-hero-actions {
    gap: 18px;
    margin-top: 30px;
  }

  .rannora-hero-media {
    min-height: 0;
    aspect-ratio: 1 / .92;
  }

  .rannora-hero-media img {
    object-position: 66% center;
  }

  .rannora-category-rail,
  .rannora-choice-block,
  .rannora-product-overview,
  .rannora-included,
  .rannora-use-care,
  .rannora-policy-page {
    grid-template-columns: 1fr;
  }

  .rannora-category-rail {
    gap: 30px;
    padding: 48px 0;
  }

  .rannora-category-links {
    grid-template-columns: 1fr;
  }

  .rannora-category-links a {
    min-height: 62px;
  }

  .rannora-featured-products {
    padding: 48px 0;
  }

  .rannora-product-grid,
  .rannora-launch-active ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--rannora-space-6) var(--rannora-space-3) !important;
  }

  .rannora-product-card-image,
  .rannora-launch-active ul.products li.product .ct-media-container {
    aspect-ratio: 1 / 1.05;
  }

  .rannora-product-card-image img,
  .rannora-launch-active ul.products li.product img {
    padding: 10px;
  }

  .rannora-product-card h3,
  .rannora-launch-active ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px !important;
  }

  .rannora-card-bottom {
    display: block;
    margin-top: 10px;
  }

  .rannora-card-link {
    display: inline-block;
    margin-top: var(--rannora-space-2);
  }

  .rannora-loop-benefit {
    display: none;
  }

  .rannora-choice-block {
    gap: 38px;
    padding: 34px 24px;
  }

  .rannora-service-row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 36px 0 48px;
  }

  .rannora-product-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0 48px;
  }

  .rannora-product-frame {
    aspect-ratio: 1 / 1;
  }

  .rannora-product-summary h1 {
    font-size: 24px;
  }

  .rannora-product-summary form.cart {
    align-items: stretch;
  }

  .rannora-product-summary .single_add_to_cart_button {
    flex: 1;
  }

  .rannora-purchase-note {
    display: grid;
    gap: 5px;
  }

  .rannora-purchase-note span::after {
    display: none;
  }

  .rannora-product-overview {
    gap: 28px;
    padding: var(--rannora-space-7) 0;
  }

  .rannora-product-story {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: var(--rannora-space-7) 0;
  }

  .rannora-product-story > header {
    position: static;
  }

  .rannora-product-story-media {
    gap: 12px;
  }

  .rannora-included {
    gap: 24px;
  }

  .rannora-included ul {
    grid-template-columns: 1fr;
  }

  .rannora-spec-section {
    padding: 30px 16px;
  }

  .rannora-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .rannora-spec-grid div {
    min-width: 0;
    min-height: 84px;
    padding: 14px;
  }

  .rannora-spec-grid strong {
    overflow-wrap: anywhere;
    font-size: 14px;
  }

  .rannora-use-care {
    gap: 32px;
    padding: var(--rannora-space-7) 0;
  }

  .rannora-warranty {
    display: grid;
    align-items: start;
    gap: 18px;
  }

  .rannora-product-faq {
    padding-bottom: var(--rannora-space-7);
  }

  .rannora-related {
    padding-top: 48px;
  }

  .rannora-product-reviews .woocommerce-Reviews {
    grid-template-columns: 1fr;
  }

  .rannora-product-reviews #review_form_wrapper {
    position: static;
  }

  .rannora-product-reviews .commentlist > li,
  .rannora-product-reviews #review_form_wrapper {
    padding: 18px !important;
  }

  .rannora-category-intro {
    padding: 38px 0 18px;
  }

  .rannora-category-template .woocommerce-result-count,
  .rannora-category-template .woocommerce-ordering {
    float: none;
  }

  .rannora-category-template ul.products {
    padding-top: 18px !important;
  }

  .rannora-loop-benefit {
    display: none;
  }

  .rannora-policy-page {
    gap: 36px;
    padding: 48px 0 60px;
  }

  .rannora-policy-page header {
    position: static;
  }

  .rannora-cart-trust,
  .rannora-checkout-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .rannora-launch-active .woocommerce-checkout .col2-set,
  .rannora-launch-active .woocommerce-checkout form.checkout,
  .rannora-launch-active #order_review_heading,
  .rannora-launch-active #order_review {
    width: 100%;
    float: none;
  }

  .rannora-launch-active form.checkout.woocommerce-checkout {
    box-sizing: border-box;
    padding-inline: 16px;
  }

  .rannora-checkout-page .woocommerce-checkout-review-order table.shop_table th,
  .rannora-checkout-page .woocommerce-checkout-review-order table.shop_table td {
    padding: 12px 4px !important;
  }

  .rannora-launch-active .woocommerce-checkout form.checkout {
    display: block;
    max-width: none;
    margin-top: 24px;
  }

  .rannora-launch-active .woocommerce-billing-fields__field-wrapper {
    display: block;
  }

  .rannora-launch-active #order_review_heading {
    margin: -8px 0 12px !important;
    padding-top: 0 !important;
  }

  .rannora-launch-active #customer_details {
    margin-bottom: 0 !important;
  }

  .rannora-launch-active .woocommerce-additional-fields,
  .rannora-launch-active .woocommerce-additional-fields__field-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .rannora-launch-active .woocommerce-additional-fields .form-row:last-child {
    margin-bottom: 0 !important;
  }

  .rannora-cart-page .woocommerce-cart-form td.actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: center;
    gap: 8px;
    padding: 16px 8px !important;
  }

  body.rannora-launch-active.rannora-cart-page .woocommerce-cart-form td.actions .coupon {
    display: contents !important;
    width: auto !important;
    min-width: 0;
  }

  .rannora-cart-page .woocommerce-cart-form .coupon .input-text,
  .rannora-cart-page .woocommerce-cart-form .coupon .button {
    float: none !important;
    margin: 0 !important;
  }

  .rannora-cart-page .woocommerce-cart-form .coupon .input-text {
    width: auto !important;
    min-width: 0 !important;
    grid-column: 1;
  }

  .rannora-cart-page .woocommerce-cart-form .coupon .button {
    width: 112px !important;
    min-width: 0;
    grid-column: 2;
    padding-inline: 0 !important;
    font-size: 13px !important;
    white-space: nowrap;
  }

  .rannora-cart-page .woocommerce-cart-form table.cart,
  .rannora-cart-page .woocommerce-cart-form table.cart tbody {
    display: block;
    width: 100%;
  }

  .rannora-cart-page .woocommerce-cart-form table.cart thead {
    display: none;
  }

  .rannora-cart-page .woocommerce-cart-form table.cart tr.cart_item {
    display: grid;
    width: 100%;
    grid-template-columns: 76px minmax(0, 1fr) 44px;
    grid-template-rows: auto 44px;
    gap: 10px 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--rannora-line);
  }

  .rannora-cart-page .woocommerce-cart-form table.cart tr.cart_item > td {
    display: block !important;
    width: auto !important;
    min-width: 0;
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
  }

  .rannora-cart-page .woocommerce-cart-form table.cart tr.cart_item > td::before {
    display: none !important;
  }

  .rannora-cart-page .woocommerce-cart-form td.product-thumbnail {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .rannora-cart-page .woocommerce-cart-form td.product-thumbnail a,
  .rannora-cart-page .woocommerce-cart-form td.product-thumbnail img {
    width: 76px !important;
    height: 76px !important;
  }

  .rannora-cart-page .woocommerce-cart-form td.product-thumbnail img {
    padding: 6px;
    border-radius: 8px;
    background: var(--rannora-product-stage);
    object-fit: contain;
  }

  .rannora-cart-page .woocommerce-cart-form td.product-name {
    grid-column: 2;
    grid-row: 1;
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
  }

  .rannora-cart-page .woocommerce-cart-form td.product-price {
    grid-column: 2;
    grid-row: 2;
    font-size: 13px;
  }

  .rannora-cart-page .woocommerce-cart-form td.product-quantity {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: start;
  }

  .rannora-cart-page .woocommerce-cart-form td.product-subtotal {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    font-size: 14px;
    font-weight: 750;
  }

  .rannora-cart-page .woocommerce-cart-form td.product-remove {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .rannora-cart-page .woocommerce-cart-form td.product-remove a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
  }

  .rannora-cart-page .woocommerce-cart-form .product-mobile-actions {
    display: none !important;
  }

  .rannora-cart-page .woocommerce-cart-form tr:not(.cart_item) {
    display: block;
    width: 100%;
  }

  .rannora-launch-active table.shop_table_responsive tr td {
    padding: 14px 8px !important;
  }

  .rannora-launch-active .woocommerce-message,
  .rannora-launch-active .woocommerce-info,
  .rannora-launch-active .woocommerce-error {
    align-items: flex-start;
    flex-direction: column;
  }

  .rannora-footer {
    padding: var(--rannora-space-7) 20px 20px;
  }

  .rannora-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 20px;
  }

  .rannora-footer-main > div:first-child {
    grid-column: 1 / -1;
  }

  .rannora-footer-bottom {
    margin-top: var(--rannora-space-6);
  }
}

.rannora-cart-page .woocommerce-cart-form.is-updating .cart_item,
.rannora-cart-page .woocommerce-cart-form.is-updating .actions {
  opacity: .72;
}

@media (max-width: 420px) {
  .rannora-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .rannora-product-grid,
  .rannora-launch-active ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .rannora-footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
