@charset "UTF-8";
/* CSS Document */

/* ==================================================
   BAXTERBOO HALLOWEEN LANDING PAGE
   All styles scoped to .halloween-landing
================================================== */

.halloween-landing {
  --halloween-orange: #ff7518;
  --halloween-black: #000000;
  --halloween-orange-dark: #d95000;
  --halloween-navy: #022e57;
  --halloween-purple: #3c175c;
  --halloween-purple-light: #5d2783;
  --halloween-cream: #fff7e8;
  --halloween-gray: #f5f6f7;
  --halloween-text: #202833;
  --halloween-white: #ffffff;
  --halloween-border: #dfe4e8;
  --halloween-dark-gray: #28282d;	

  width: 100%;
  overflow: hidden;
  color: var(--halloween-text);
  background: var(--halloween-white);
  font-family: inherit;
}

.halloween-landing *,
.halloween-landing *::before,
.halloween-landing *::after {
  box-sizing: border-box;
}

.halloween-landing img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.halloween-landing a {
  color: inherit;
  text-decoration: none;
}


/* GENERAL SECTIONS */

.halloween-section {
  width: 100%;
  padding: 70px max(24px, calc((100% - 1280px) / 2));
}

.halloween-section--purple {
  color: var(--halloween-white);
  background:
    radial-gradient(circle at top right, #6d3290 0, transparent 35%),
    var(--halloween-black);
}

.halloween-section--gray {
  background: var(--halloween-gray);
}

.halloween-section--faq {
  background: var(--halloween-cream);
}

.halloween-heading {
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: center;
}

.halloween-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.halloween-heading h2,
.halloween-heading-row h2,
.halloween-shopping-help h2,
.halloween-rewards h2,
.halloween-seo h2 {
  margin: 0;
  color: var(--halloween-navy);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
    font-family: var(--mainheadfont1) !important;	
}

.halloween-heading--light h2 {
  color: var(--halloween-white);
}

.halloween-heading p:last-child {
  margin: 14px auto 0;
  font-size: 17px;
  line-height: 1.6;
  font-family: "Poppins", serif !important;	
}

.halloween-eyebrow {
  margin: 0 0 10px;
  color: var(--halloween-orange);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-family: "Poppins", serif !important;	
}


/* BUTTONS */

.halloween-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.halloween-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  margin: 0;	
  font-family: var(--mainheadfont1) !important;	
}

.halloween-btn:hover {
  transform: translateY(-2px);
}

.halloween-btn--orange {
  color: var(--halloween-white) !important;
  background: var(--halloween-orange);
}

.halloween-btn--orange:hover {
  background: var(--halloween-orange-dark);
}

.halloween-btn--light {
  color: var(--halloween-navy) !important;
  background: var(--halloween-white);
  border-color: var(--halloween-white);
}

.halloween-btn--light:hover {
  color: var(--halloween-white) !important;
  color: black !important;
}

.halloween-btn--navy {
  color: var(--halloween-white) !important;
  background: var(--halloween-navy);
}

.halloween-btn--navy:hover {
  background: var(--halloween-orange);
}


/* HERO */

.halloween-hero {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
  color: var(--halloween-white);
  background:
    radial-gradient(circle at 15% 20%, #6e338b 0, transparent 30%),
    var(--halloween-black);
}

.halloween-hero__content {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
  padding: 70px 7vw;
}

.halloween-hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--halloween-white);
  font-size: 56px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -2px;
  font-family: var(--mainheadfont1) !important;
}

.halloween-hero__content > p:not(.halloween-eyebrow) {
  max-width: 570px;
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.55;
  font-family: "Poppins", serif !important;	
}

.halloween-hero__image {
  min-height: 540px;
  overflow: hidden;
  order: 1;	
}

.halloween-hero__image img {
  object-fit: contain;
  object-position: bottom;
	height: 100%;
}


/* PRIMARY CATEGORY CARDS */

.halloween-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.halloween-category-card {
  overflow: hidden;
  border: 1px solid var(--halloween-border);
  border-radius: 12px;
  background: var(--halloween-white);
  box-shadow: 0 8px 24px rgba(2, 46, 87, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.halloween-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(2, 46, 87, 0.14);
}

.halloween-category-card__image {
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: var(--halloween-gray);
}

.halloween-category-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.halloween-category-card:hover img {
  transform: scale(1.04);
}

.halloween-category-card__content {
  padding: 22px;
}

.halloween-category-card h3 {
  margin: 0;
  color: var(--halloween-navy);
  font-size: 22px;
  line-height: 1.2;
    font-family: var(--mainheadfont1) !important;		
}

.halloween-category-card p {
  min-height: 44px;
  margin: 8px 0 18px;
  font-size: 14px;
  line-height: 1.5;
	  font-family: "Poppins", serif !important;	
	
}

.halloween-category-card span {
  color: var(--halloween-orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
	    font-family: var(--mainheadfont1) !important;		

}


/* COSTUME CATEGORY SCROLLER */
/* ==================================================
   WHAT WILL YOUR PET BE — OWL CAROUSEL
================================================== */

/* SECTION */

.halloween-section--purple {
  padding: 70px max(24px, calc((100% - 1280px) / 2));
  color: #ffffff;
  background:
    radial-gradient(circle at top right, #6d3290 0, transparent 35%),
    #000000;
}

.halloween-heading {
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: center;
}

.halloween-heading .halloween-eyebrow {
  margin: 0 0 10px;
  color: #ff7518;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.halloween-heading--light h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
}

.halloween-heading--light > p:last-child {
  max-width: 600px;
  margin: 14px auto 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.6;
}


/* CAROUSEL WRAPPER */

.halloween-costume-carousel {
  position: relative;
  display: block;
  min-height: 250px;
  padding-right: 52px;
  padding-left: 52px;
  opacity: 0;
  visibility: hidden;
}

.halloween-costume-carousel.owl-loaded {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease;
}


/* OWL STRUCTURE */

.halloween-costume-carousel .owl-stage-outer {
  padding-top: 8px;
  margin-top: -8px;
}

.halloween-costume-carousel.owl-loaded .owl-stage-outer {
  display: block;
  overflow: hidden;
}

.halloween-costume-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.halloween-costume-carousel .owl-item {
  display: flex;
  float: none;
  height: auto;
}

.halloween-costume-carousel .owl-item > .halloween-costume-card {
  width: 100%;
}


/* COSTUME CARDS */

.halloween-costume-carousel .halloween-costume-card {
  display: block;
  width: 100%;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

.halloween-costume-carousel .halloween-costume-card img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 1 / 1;
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.halloween-costume-carousel .halloween-costume-card:hover img {
  border-color: #ff7518;
  transform: translateY(-4px);
}

.halloween-costume-carousel .halloween-costume-card span {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}


/* CAROUSEL NAVIGATION */

.halloween-costume-carousel .owl-nav {
  display: block !important;
  margin: 0 !important;
}

.halloween-costume-carousel .owl-nav button.owl-prev,
.halloween-costume-carousel .owl-nav button.owl-next {
  position: absolute !important;
  z-index: 5;
  top: calc(50% - 24px) !important;
  display: flex !important;
  width: 42px !important;
  height: 42px !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid #ffffff !important;
  border-radius: 50% !important;
  color: #022e57 !important;
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.halloween-costume-carousel .owl-nav button.owl-prev {
  left: 0 !important;
}

.halloween-costume-carousel .owl-nav button.owl-next {
  right: 0 !important;
}

.halloween-costume-carousel .owl-nav button.owl-prev:hover,
.halloween-costume-carousel .owl-nav button.owl-next:hover {
  border-color: #ff7518 !important;
  color: #ffffff !important;
  background: #ff7518 !important;
  transform: translateY(-50%) scale(1.06);
}

.halloween-costume-carousel .owl-nav button.owl-prev:focus,
.halloween-costume-carousel .owl-nav button.owl-next:focus {
  outline: none;
}

.halloween-costume-carousel .owl-nav button.owl-prev:focus-visible,
.halloween-costume-carousel .owl-nav button.owl-next:focus-visible {
  outline: 3px solid rgba(255, 117, 24, 0.55);
  outline-offset: 3px;
}


/* ARROW CHARACTERS */

.halloween-costume-carousel .owl-nav button span {
  display: flex !important;
  width: auto !important;
  height: 32px !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 0 4px !important;
  color: inherit !important;
  font-family: Arial, sans-serif !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}


/* DISABLED ARROWS */

.halloween-costume-carousel .owl-nav button.disabled {
  cursor: default !important;
  opacity: 0.3 !important;
  pointer-events: none;
}


/* CAROUSEL DOTS */

.halloween-costume-carousel .owl-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 28px !important;
}

.halloween-costume-carousel .owl-dots .owl-dot {
  display: block;
  width: auto;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.halloween-costume-carousel .owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition:
    width 0.2s ease,
    background-color 0.2s ease;
}

.halloween-costume-carousel .owl-dots .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.75);
}

.halloween-costume-carousel .owl-dots .owl-dot.active span {
  width: 24px;
  border-radius: 10px;
  background: #ff7518;
}


/* TABLET */

@media (max-width: 900px) {
  .halloween-section--purple {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .halloween-costume-carousel {
    padding-right: 46px;
    padding-left: 46px;
  }

  .halloween-costume-carousel .owl-nav button.owl-prev,
  .halloween-costume-carousel .owl-nav button.owl-next {
    width: 38px !important;
    height: 38px !important;
  }

  .halloween-costume-carousel .owl-nav button span {
    height: 29px !important;
    font-size: 29px !important;
  }
}


/* MOBILE */

@media (max-width: 700px) {
  .halloween-section--purple {
    padding: 50px 18px;
  }

  .halloween-heading {
    margin-bottom: 28px;
  }

  .halloween-heading--light h2 {
    font-size: 32px;
  }

  .halloween-heading--light > p:last-child {
    font-size: 15px;
  }

  .halloween-costume-carousel {
    min-height: 205px;
    padding-right: 38px;
    padding-left: 38px;
  }

  .halloween-costume-carousel .halloween-costume-card span {
    margin-top: 10px;
    font-size: 13px;
  }

  .halloween-costume-carousel .owl-nav button.owl-prev,
  .halloween-costume-carousel .owl-nav button.owl-next {
    top: calc(50% - 22px) !important;
    width: 34px !important;
    height: 34px !important;
  }

  .halloween-costume-carousel .owl-nav button span {
    height: 27px !important;
    padding-bottom: 3px !important;
    font-size: 27px !important;
  }

  .halloween-costume-carousel .owl-dots {
    margin-top: 22px !important;
  }
}


/* SMALL MOBILE */

@media (max-width: 400px) {
  .halloween-costume-carousel {
    padding-right: 34px;
    padding-left: 34px;
  }

  .halloween-heading--light h2 {
    font-size: 29px;
  }
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  .halloween-costume-carousel,
  .halloween-costume-carousel *,
  .halloween-costume-carousel *::before,
  .halloween-costume-carousel *::after {
    transition: none !important;
  }
}

.halloween-costume-card {
  min-width: 150px;
  scroll-snap-align: start;
  text-align: center;
}

.halloween-costume-card img {
  aspect-ratio: 1 / 1;
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  object-fit: cover;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.halloween-costume-card:hover img {
  border-color: var(--halloween-orange);
  transform: translateY(-4px);
}

.halloween-costume-card span {
  display: block;
  margin-top: 13px;
  color: var(--halloween-white);
  font-size: 15px;
  font-weight: 800;
	    font-family: var(--mainheadfont1) !important;			
}


/* SHOPPING HELP */

.halloween-shopping-help {
  padding: 46px;
  border: 2px solid #f4d4b6;
  border-radius: 16px;
  background: var(--halloween-cream);
}

.halloween-shopping-help__intro {
  max-width: 650px;
  margin-bottom: 30px;
}

.halloween-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.halloween-help-grid img {
	width: 60px;
}

.halloween-help-item {
  display: flex;
  gap: 14px;
  padding: 22px;
  border-radius: 10px;
  background: var(--halloween-white);
}

.halloween-help-item__icon {
  flex: 0 0 auto;
  font-size: 26px;
  line-height: 1;
}

.halloween-help-item h3 {
  margin: 0 0 7px;
  color: var(--halloween-navy);
  font-size: 17px;
	    font-family: var(--mainheadfont1) !important;				
}

.halloween-help-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}


/* PRODUCT AREA */

.halloween-text-link {
  flex: 0 0 auto;
  color: var(--halloween-orange-dark) !important;
  font-size: 14px;
  font-weight: 500;
}

.halloween-product-placeholder {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 2px dashed #bdc7d0;
  border-radius: 12px;
  color: #687784;
  background: var(--halloween-white);
  font-weight: 700;
  text-align: center;
}


/* SPLIT PROMOS */

.halloween-split-promos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.halloween-promo-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 14px;
  color: var(--halloween-white) !important;
}

.halloween-promo-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 20, 38, 0.05) 20%,
      rgba(2, 20, 38, 0.84) 100%
    );
  content: "";
}

.halloween-promo-card > img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.halloween-promo-card:hover > img {
  transform: scale(1.04);
}

.halloween-promo-card__overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.halloween-promo-card h2 {
  margin: 0 0 22px;
  color: var(--halloween-white);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
	font-family: var(--mainheadfont1) !important;		
}


/* REWARDS */

.halloween-rewards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 55px max(24px, calc((100% - 1140px) / 2));
  color: var(--halloween-white);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 12px,
      transparent 12px,
      transparent 24px
    ),
    var(--halloween-dark-gray);
}

.halloween-rewards > div {
  max-width: 750px;
}

.halloween-rewards h2 {
  color: var(--halloween-white);
  font-family: var(--mainheadfont1) !important;	
}

.halloween-rewards p:not(.halloween-eyebrow) {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.6;
}


/* GUIDE CARDS */

.halloween-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.halloween-guide-card {
  overflow: hidden;
  border: 1px solid var(--halloween-border);
  border-radius: 12px;
  background: var(--halloween-white);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.halloween-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(2, 46, 87, 0.12);
}

.halloween-guide-card img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.halloween-guide-card > div {
  padding: 22px;
}

.halloween-guide-card h3 {
  margin: 0 0 14px;
  color: var(--halloween-navy);
  font-size: 20px;
  line-height: 1.3;
	  font-family: var(--mainheadfont1) !important;
}

.halloween-guide-card span {
  color: var(--halloween-orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
	  font-family: var(--mainheadfont1) !important;

}


/* FAQ */

.halloween-faq {
  max-width: 900px;
  margin: 0 auto;
}

.halloween-faq details {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #e8d4bd;
  border-radius: 9px;
  background: var(--halloween-white);
}

.halloween-faq summary {
  position: relative;
  padding: 20px 55px 20px 22px;
  color: var(--halloween-navy);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  font-family: var(--mainheadfont1) !important;
}

.halloween-faq summary::-webkit-details-marker {
  display: none;
}

.halloween-faq summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--halloween-orange);
  content: "+";
  font-size: 25px;
  font-weight: 500;
  transform: translateY(-50%);
}

.halloween-faq details[open] summary::after {
  content: "−";
}

.halloween-faq__answer {
  padding: 0 22px 20px;
}

.halloween-faq__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}


/* SEO CONTENT */

.halloween-seo {
  max-width: 1000px;
  margin: 0 auto;
  padding: 65px 24px;
}

.halloween-seo h2 {
  margin-bottom: 20px;
  font-size: clamp(25px, 3vw, 34px);
}

.halloween-seo p {
  margin: 0 0 16px;
  color: #4c5863;
  font-size: 15px;
  line-height: 1.8;
}

/* ==================================================
   HALLOWEEN PRODUCT CAROUSEL
================================================== */

.halloween-products {
  width: 100%;
  padding: 70px max(24px, calc((100% - 1280px) / 2));
  color: #202833;
  background: #f5f6f7;
}

.halloween-products *,
.halloween-products *::before,
.halloween-products *::after {
  box-sizing: border-box;
}

.halloween-products a {
  color: inherit;
  text-decoration: none;
}


/* HEADING */

.halloween-products__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.halloween-products__eyebrow {
  margin: 0 0 8px;
  color: #ff7518;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.halloween-products__heading h2 {
  margin: 0;
  color: #022e57;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
}

.halloween-products__view-all {
  flex: 0 0 auto;
  color: #d95000 !important;
  font-size: 14px;
  font-weight: 900;
}


/* CAROUSEL */

.halloween-product-carousel {
  position: relative;
  min-height: 440px;
  padding: 0 52px;
  opacity: 0;
  visibility: hidden;
}

.halloween-product-carousel.owl-loaded {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease;
}

.halloween-product-carousel .owl-stage-outer {
  padding-top: 6px;
  padding-bottom: 10px;
  margin-top: -6px;
  overflow: hidden;
}

.halloween-product-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.halloween-product-carousel .owl-item {
  display: flex;
  float: none;
  height: auto;
}

.halloween-product-carousel .owl-item > .halloween-product-card {
  width: 100%;
}


/* PRODUCT CARD */

.halloween-product-card {
  display: flex;
  width: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #dfe4e8;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 5px 16px rgba(2, 46, 87, 0.07);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.halloween-product-card:hover {
  border-color: #f1b17f;
  box-shadow: 0 10px 24px rgba(2, 46, 87, 0.13);
  transform: translateY(-3px);
}

.halloween-product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #ffffff;
}

.halloween-product-card__image img {
  display: block !important;
  width: 100% !important;
  height: 100%;
  max-width: none !important;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.halloween-product-card:hover .halloween-product-card__image img {
  transform: scale(1.035);
}


/* PRODUCT BADGES */

.halloween-product-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 3px;
  color: #ffffff;
  background: #022e57;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.halloween-product-badge--sale {
  background: #d82828;
}


/* PRODUCT CONTENT */

.halloween-product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.halloween-product-card__brand {
  margin: 0 0 6px;
  color: #6c7680;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.halloween-product-card h3 {
  min-height: 42px;
  margin: 0 0 10px;
  color: #022e57;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.halloween-product-card h3 a:hover {
  color: #d95000;
}

.halloween-product-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.halloween-product-card__rating span {
  color: #ff7518;
  font-size: 13px;
  letter-spacing: 1px;
}

.halloween-product-card__rating small {
  color: #697580;
  font-size: 11px;
}

.halloween-product-card__price {
  display: flex;
  min-height: 24px;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  margin-bottom: 14px;
  color: #202833;
  font-size: 14px;
  font-weight: 800;
}

.halloween-product-card__sale-price {
  color: #d82828;
}

.halloween-product-card__price del {
  color: #7a848d;
  font-size: 12px;
  font-weight: 500;
}


/* ADD-TO-CART BUTTON */

.halloween-product-card__button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 2px solid #ff7518;
  border-radius: 5px;
  color: #ffffff;
  background: #ff7518;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
	  font-family: var(--mainheadfont1) !important;
}

.halloween-product-card__button:hover {
  color: #ff7518;
  background: #ffffff;
}


/* ARROWS */

.halloween-product-carousel .owl-nav {
  display: block !important;
  margin: 0 !important;
}

.halloween-product-carousel .owl-nav button.owl-prev,
.halloween-product-carousel .owl-nav button.owl-next {
  position: absolute !important;
  z-index: 5;
  top: 42% !important;
  display: flex !important;
  width: 42px !important;
  height: 42px !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid #022e57 !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: #022e57 !important;
  box-shadow: 0 4px 12px rgba(2, 46, 87, 0.2);
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.halloween-product-carousel .owl-nav button.owl-prev {
  left: 0 !important;
}

.halloween-product-carousel .owl-nav button.owl-next {
  right: 0 !important;
}

.halloween-product-carousel .owl-nav button.owl-prev:hover,
.halloween-product-carousel .owl-nav button.owl-next:hover {
  border-color: #ff7518 !important;
  background: #ff7518 !important;
  transform: translateY(-50%) scale(1.06);
}

.halloween-product-carousel .owl-nav button span {
  display: flex !important;
  height: 32px !important;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px !important;
  color: inherit !important;
  font-family: Arial, sans-serif !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.halloween-product-carousel .owl-nav button.disabled {
  cursor: default !important;
  opacity: 0.25 !important;
  pointer-events: none;
}


/* DOTS */

.halloween-product-carousel .owl-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 20px !important;
}

.halloween-product-carousel .owl-dots .owl-dot {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.halloween-product-carousel .owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border-radius: 50%;
  background: #bdc6ce;
  transition:
    width 0.2s ease,
    background-color 0.2s ease;
}

.halloween-product-carousel .owl-dots .owl-dot.active span {
  width: 24px;
  border-radius: 10px;
  background: #ff7518;
}


/* TABLET */

@media (max-width: 900px) {
  .halloween-product-carousel {
    padding-right: 46px;
    padding-left: 46px;
  }

  .halloween-product-carousel .owl-nav button.owl-prev,
  .halloween-product-carousel .owl-nav button.owl-next {
    width: 38px !important;
    height: 38px !important;
  }
}


/* MOBILE */

@media (max-width: 700px) {
  .halloween-products {
    padding: 50px 18px;
  }

  .halloween-products__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .halloween-product-carousel {
    min-height: 400px;
    padding-right: 37px;
    padding-left: 37px;
  }

  .halloween-product-card__content {
    padding: 12px;
  }

  .halloween-product-card h3 {
    min-height: 50px;
    font-size: 13px;
  }

  .halloween-product-card__brand {
    font-size: 9px;
  }

  .halloween-product-card__rating span {
    font-size: 11px;
  }

  .halloween-product-card__price {
    font-size: 12px;
  }

  .halloween-product-card__button {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 11px;
  }

  .halloween-product-carousel .owl-nav button.owl-prev,
  .halloween-product-carousel .owl-nav button.owl-next {
    width: 33px !important;
    height: 33px !important;
  }

  .halloween-product-carousel .owl-nav button span {
    height: 26px !important;
    font-size: 27px !important;
  }
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  .halloween-product-carousel,
  .halloween-product-carousel *,
  .halloween-product-carousel *::before,
  .halloween-product-carousel *::after {
    transition: none !important;
  }
}


/* TABLET */

@media (max-width: 1000px) {
  .halloween-hero {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .halloween-hero__content {
    padding: 55px 35px;
  }

  .halloween-hero__image {
    min-height: 360px;
  }

  .halloween-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .halloween-help-grid {
    grid-template-columns: 1fr;
  }

  .halloween-shopping-help {
    padding: 36px;
  }
}


/* MOBILE */

@media (max-width: 700px) {
  .halloween-section {
    padding: 50px 18px;
  }

  .halloween-heading {
    margin-bottom: 28px;
  }

  .halloween-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .halloween-hero {
    display: flex;
    flex-direction: column;
  }

  .halloween-hero__content {
    order: 1;
    max-width: none;
    padding: 38px 20px 46px;
    text-align: center;
  }

  .halloween-hero h1 {
    font-size: 43px;
    letter-spacing: -1px;
  }

  .halloween-hero__content > p:not(.halloween-eyebrow) {
    font-size: 17px;
  }

  .halloween-hero__image {
    width: 100%;
  }

  .halloween-buttons {
    flex-direction: column;
  }

  .halloween-buttons .halloween-btn {
    width: 100%;
  }

  .halloween-category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .halloween-category-card__content {
    padding: 16px;
  }

  .halloween-category-card h3 {
    font-size: 18px;
  }

  .halloween-category-card p {
    min-height: 0;
    margin-bottom: 14px;
    font-size: 13px;
  }

  .halloween-category-card span {
    font-size: 11px;
  }

  .halloween-costume-card {
    min-width: 125px;
  }

  .halloween-shopping-help {
    padding: 28px 20px;
  }

  .halloween-help-item {
    padding: 18px;
  }

  .halloween-shopping-help .halloween-btn {
    width: 100%;
  }

  .halloween-split-promos {
    grid-template-columns: 1fr;
  }

  .halloween-promo-card,
  .halloween-promo-card > img {
    min-height: 360px;
  }

  .halloween-promo-card__overlay {
    padding: 25px;
  }

  .halloween-rewards {
    align-items: flex-start;
    flex-direction: column;
    padding: 45px 22px;
    text-align: center;
  }

  .halloween-rewards .halloween-btn {
    width: 100%;
  }

  .halloween-guide-grid {
    grid-template-columns: 1fr;
  }

  .halloween-faq summary {
    padding: 18px 48px 18px 18px;
    font-size: 15px;
  }

  .halloween-faq summary::after {
    right: 18px;
  }

  .halloween-faq__answer {
    padding: 0 18px 18px;
  }
}


/* SMALL MOBILE */

@media (max-width: 430px) {
  .halloween-category-grid {
    grid-template-columns: 1fr;
  }

  .halloween-category-card__image {
    aspect-ratio: 1.5 / 1;
  }
}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {
  .halloween-landing *,
  .halloween-landing *::before,
  .halloween-landing *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}