/** Shopify CDN: Minification failed

Line 409:0 Unexpected "}"

**/
:root {
  --petora-primary: #76c9f2;
  --petora-primary-hover: #52b9ec;
  --petora-primary-dark: #268fc4;
  --petora-dark: #111c27;
  --petora-text: #4e5e6c;
  --petora-light: #eef9ff;
  --petora-white: #ffffff;
  --petora-radius-large: 30px;
  --petora-radius-medium: 22px;
  --petora-shadow:
    0 20px 60px rgba(17, 28, 39, 0.12);
}

/* --------------------------------
   HERO
-------------------------------- */

.petora-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--petora-dark);
}

.petora-hero__media,
.petora-hero__placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.petora-hero__image {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: 73% center;
  transform: translate3d(0, 0, 0) scale(1.02);
  will-change: transform;
}

.petora-hero__placeholder {
  background:
    linear-gradient(
      135deg,
      #76c9f2 0%,
      #c9efff 100%
    );
}

.petora-hero__placeholder-svg {
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.petora-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(10, 19, 29, 0.82) 0%,
      rgba(10, 19, 29, 0.63) 37%,
      rgba(10, 19, 29, 0.25) 68%,
      rgba(10, 19, 29, 0.06) 100%
    );
}

.petora-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(90px, 10vh, 150px);
  padding-bottom: clamp(70px, 8vh, 120px);
}

.petora-hero .page-width {
  width: 100%;
}

.petora-hero__content {
  width: 100%;
  max-width: 720px;
  padding-left: clamp(0px, 3.5vw, 60px);
  color: var(--petora-white);
}

.petora-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--petora-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.petora-badge__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #8ee4ab;
  box-shadow: 0 0 0 5px rgba(142, 228, 171, 0.16);
}

.petora-hero__heading {
  max-width: 720px;
  margin: 0;
  color: var(--petora-white);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.petora-hero__text {
  max-width: 610px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 450;
  line-height: 1.65;
}

.petora-hero__text p {
  margin: 0;
}

.petora-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.petora-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 210px;
  min-height: 60px;
  padding: 15px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.petora-btn__icon {
  width: 19px;
  height: 19px;
  transition: transform 0.25s ease;
}

.petora-btn--primary {
  background: var(--petora-primary);
  color: #10212b;
  box-shadow:
    0 12px 34px rgba(82, 185, 236, 0.3);
}

.petora-btn--primary:hover {
  background: var(--petora-primary-hover);
  color: #0c1b24;
  transform: translateY(-3px);
  box-shadow:
    0 18px 42px rgba(82, 185, 236, 0.38);
}

.petora-btn--primary:hover .petora-btn__icon {
  transform: translateX(4px);
}

.petora-btn--secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: var(--petora-white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.petora-btn--secondary:hover {
  border-color: var(--petora-white);
  background: var(--petora-white);
  color: var(--petora-dark);
  transform: translateY(-3px);
}

.petora-btn:focus-visible,
.petora-category-card:focus-visible,
.petora-hero__scroll:focus-visible {
  outline: 3px solid var(--petora-white);
  outline-offset: 4px;
}

.petora-btn[aria-disabled="true"],
.petora-category-card[aria-disabled="true"] {
  cursor: default;
}

.petora-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.petora-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.petora-hero__trust svg {
  width: 18px;
  height: 18px;
  color: #a6e8ff;
}

.petora-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: flex;
  justify-content: center;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  transform: translateX(-50%);
}

.petora-hero__scroll span {
  width: 4px;
  height: 8px;
  margin-top: 9px;
  border-radius: 99px;
  background: var(--petora-white);
  animation: petora-scroll 1.8s ease-in-out infinite;
}

@keyframes petora-scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* --------------------------------
   CATEGORIES
-------------------------------- */
/* --------------------------------
   CATEGORIES
-------------------------------- */

.petora-categories {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 8vw, 125px) 0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(118, 201, 242, 0.12),
      transparent 32%
    ),
    #ffffff;
}

.petora-categories__inner {
  width: 100%;
}

.petora-section-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  padding: 0 20px;
  text-align: center;
}

.petora-section-heading__eyebrow {
  margin: 0 0 14px;
  color: var(--petora-primary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.petora-section-heading__title {
  margin: 0;
  color: var(--petora-dark);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.petora-section-heading__description {
  max-width: 610px;
  margin: 20px auto 0;
  color: var(--petora-text);
  font-size: 16px;
  line-height: 1.7;
}

.petora-section-heading__description p {
  margin: 0;
}

.petora-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.petora-category-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  background: #eaf7ff;
  color: #ffffff;
  text-decoration: none;
  isolation: isolate;
  box-shadow:
    0 15px 45px rgba(17, 28, 39, 0.09);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.petora-category-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 24px 65px rgba(17, 28, 39, 0.15);
}

.petora-category-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.petora-category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
}

.petora-category-card:hover
  .petora-category-card__image {
  transform: scale(1.02);
}

.petora-category-card__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  background:
    linear-gradient(
      145deg,
      #e9f8ff,
      #ccecff
    );
  color: #5b7180;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.petora-category-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(9, 18, 27, 0.01) 20%,
      rgba(9, 18, 27, 0.12) 45%,
      rgba(9, 18, 27, 0.92) 100%
    );
}

.petora-category-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px;
}

.petora-category-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.petora-category-card p {
  max-width: 275px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
  line-height: 1.55;
}

.petora-category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
}

.petora-category-card__link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.petora-category-card:hover
  .petora-category-card__link svg {
  transform: translateX(4px);
}

@media screen and (max-width: 990px) {
  .petora-section-heading {
    margin-bottom: 40px;
  }

  .petora-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .petora-category-card {
    min-height: 390px;
  }
}

@media screen and (max-width: 768px) {
  .petora-categories {
    padding: 68px 0;
  }

  .petora-section-heading {
    margin-bottom: 32px;
    padding: 0 12px;
  }

  .petora-section-heading__title {
    font-size: clamp(32px, 9vw, 42px);
  }

  .petora-section-heading__description {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
  }

  .petora-categories__grid {
    display: flex;
    gap: 14px;
    padding-right: 18px;
    padding-left: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .petora-categories__grid::-webkit-scrollbar {
    display: none;
  }

  .petora-category-card {
    flex: 0 0 min(84vw, 340px);
    min-height: 395px;
    border-radius: 24px;
    scroll-snap-align: center;
  }

  .petora-category-card__content {
    padding: 25px;
  }

  .petora-category-card h3 {
    font-size: 27px;
  }

  .petora-category-card:hover {
    transform: none;
  }
}

@media screen and (max-width: 390px) {
  .petora-category-card {
    flex-basis: 86vw;
    min-height: 370px;
  }
}


/* --------------------------------
   TABLET
-------------------------------- */

@media screen and (max-width: 990px) {
  .petora-hero__image {
    height: 100%;
    object-position: center top;
    transform: none !important;
  }

  .petora-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(9, 19, 29, 0.05) 0%,
        rgba(9, 19, 29, 0.2) 38%,
        rgba(9, 19, 29, 0.88) 100%
      );
  }

  .petora-hero__inner {
    align-items: flex-end;
    padding-top: 180px;
    padding-bottom: 82px;
  }

  .petora-hero__content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }

  .petora-hero__heading {
    max-width: none;
    font-size: clamp(43px, 7vw, 60px);
  }

  .petora-hero__text {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
  }

  .petora-hero__buttons {
    justify-content: center;
  }

  .petora-hero__trust {
    justify-content: center;
  }

  .petora-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .petora-section-heading__description {
    max-width: 620px;
    justify-self: start;
  }

  .petora-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .petora-category-card {
    min-height: 380px;
  }
}

/* --------------------------------
   MOBILE
-------------------------------- */

@media screen and (max-width: 768px) {
  .petora-hero__content {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .petora-hero__heading {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .petora-hero__text {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    font-size: 15.5px;
    line-height: 1.55;
    text-wrap: balance;
  }

  .petora-hero__buttons {
    width: 100%;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 380px) {
  .petora-hero__content {
    max-width: 330px;
  }

  .petora-hero__heading {
    max-width: 315px;
    font-size: 34px;
    line-height: 1.08;
  }

  .petora-hero__text {
    max-width: 300px;
    font-size: 14.5px;
    line-height: 1.52;
  }

  .petora-hero__buttons {
    max-width: 310px;
  }
}

/* --------------------------------
   SMALL MOBILE
-------------------------------- */

@media screen and (max-width: 390px) {
  .petora-hero__inner {
    padding-top: 145px;
    padding-bottom: 38px;
  }

  .petora-hero__heading {
    font-size: 35px;
  }

  .petora-hero__text {
    font-size: 14.5px;
  }

  .petora-btn {
    min-height: 53px;
  }

  .petora-hero__trust {
    display: none;
  }

  .petora-category-card {
    flex-basis: 85vw;
    min-height: 365px;
  }
}

/* --------------------------------
   REDUCED MOTION
-------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .petora-hero__image,
  .petora-category-card,
  .petora-category-card__image,
  .petora-btn,
  .petora-btn__icon,
  .petora-category-card__link svg {
    transition: none !important;
    transform: none !important;
  }

  .petora-hero__scroll span {
    animation: none;
  }
}