/* makes sizing simpler */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* remove default spacing */
/* force styling of type through styling, rather than elements */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* dark mode user-agent-styles */
/* improves punctuation in supported browsers */
/* smoooooth scrolling since we use a lot of anchor tags to navigate */
html {
  color-scheme: dark light;
  hanging-punctuation: first last;
  scroll-behavior: smooth;
}

/* min body height */
body {
  min-height: 100svh;
  line-height: 1;
}

/* responsive images/videos */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

/* improve readability with max-width on paragraphs and lists */
/* prevent orphans in supported browsers */
p,
li {
  text-wrap: pretty;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

.screen-reader-text:focus {
  background-color: #f7f7f7;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #007acc;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.skip-link {
  left: -9999rem;
  top: 2.5rem;
  z-index: 999999999;
  text-decoration: underline;
}

.skip-link:focus {
  display: block;
  left: 6px;
  top: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: normal;
  padding: 15px 23px 14px;
  z-index: 100000;
  right: auto;
}

.visually-hidden:not(:focus):not(:active),
.form-allowed-tags:not(:focus):not(:active) {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 24px 1.125 Major scale*/
:root {
  --font-size--h1: 2.986rem;
  --font-size--h2: 2.488rem;
  --font-size--h3: 2.074rem;
  --font-size--h4: 1.728rem;
  --font-size--h5: 1.44rem;
  --font-size--h6: 1.2rem;
  --font-size--p: 1rem;
  --font-size--bigger: 1.44rem;
  --font-size--big: 1.2rem;
  --font-size--small: 0.833rem;
  --font-size--smaller: 0.694rem;
}

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

h2 {
  font-size: 2.403rem;
}

h3 {
  font-size: 2.134rem;
}

h4 {
  font-size: 1.5rem;
}

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

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

@media screen and (min-width: 500px) {
  h2 {
    font-size: 2.703rem;
  }

  h3 {
    font-size: 2.134rem;
  }

  h4 {
    font-size: 1.5rem;
  }
}

/* Improved heading in supported browsers */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  font-weight: 500;
}

big {
  font-size: var(--font-size--big);
}

small,
sup,
sub {
  font-size: var(--font-size-small);
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

dd {
  margin-left: 20px;
}

kbd,
tt {
  font-family: courier;
  font-size: 12px;
}

ins {
  text-decoration: underline;
}

del,
strike,
s {
  text-decoration: line-through;
}

dt {
  font-weight: bold;
}

address,
cite,
var {
  font-style: italic;
}

pre {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

strong {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

.wp-block-image {
  margin-bottom: 2rem;
}

.wp-block-image img {
  max-height: 30rem;
  width: auto;
  margin: 0 auto;
}

h2.wp-block-heading {
  font-size: 1.5rem;
}

.wp-block-separator {
  margin: 2rem 0;
  border-top: 1px solid var(--color-primary);
  max-width: 6rem;
}

.wp-block-embed {
  margin-block: 2rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

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

.d-none {
  display: none;
}

.hidden-sm-down {
  display: none;
}

@media screen and (min-width: 48rem) {
  .hidden-sm-down {
    display: initial;
  }
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

q {
  display: inline;
  font-style: italic;
}

q:before {
  content: '"';
  font-style: normal;
}

q:after {
  content: '"';
  font-style: normal;
}

.content-grid {
  --padding-inline: 1rem;
  --narrow-max-width: 640px;
  --content-max-width: 960px;
  --breakout-max-width: 1280px;
  --content-size: calc(
    (var(--content-max-width) - var(--narrow-max-width)) / 2
  );
  --breakout-size: calc(
    (var(--breakout-max-width) - var(--content-max-width)) / 2
  );
  display: grid;
  grid-template-columns:
    [full-width-start] minmax(var(--padding-inline), 1fr)
    [breakout-start] minmax(0, var(--breakout-size))
    [content-start] minmax(0, var(--content-size)) [narrow-start] min(
      100% - var(--padding-inline) * 2,
      var(--narrow-max-width)
    )
    [narrow-end] minmax(0, var(--content-size)) [content-end] minmax(
      0,
      var(--breakout-size)
    )
    [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}

.content-grid > :not(.breakout, .full-width),
.full-width > :not(.breakout, .full-width) {
  grid-column: content;
}

.content-grid > .narrow {
  grid-column: narrow;
}

.content-grid > .breakout {
  grid-column: breakout;
}

.content-grid > .full-width {
  grid-column: full-width;
  display: grid;
  grid-template-columns: inherit;
}

.button,
input[type="submit"] {
  background-color: var(--black);
  border: 0.0125rem solid var(--white);
  border-radius: 0.25rem;
  color: var(--color-white);
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  height: 2.5rem;
  letter-spacing: 0.1rem;
  line-height: 2.5rem;
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease all;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: "ff-mach-web-pro", "Mach Pro";
}

.button:hover,
input[type="submit"]:hover {
  background-color: var(--white);
  color: var(--black);
}

:root {
  --neon-green: #d8f400;
  --neon-blue: #0000ff;
  --red: #e61d26;
  --black: #000000;
  --white: #ffffff;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "ff-mach-web-pro", "Mach Pro";
}

body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background: url("../assets/images/DANDA_website_header-background_snowflakes.webp") center center;
  z-index: -1;
}

h1,
h2,
h3,
h4 {
  font-family: "ff-mach-web-pro", "Mach Pro";
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  font-size: 2.078rem;
  color: var(--neon-green);
}

main {
  padding-bottom: 4rem;
  --padding-inline: 2rem !important;
}

.section-title {
  display: inline-block;
  margin: auto;
  text-align: center;
  text-shadow: 2px 2px 0 var(--neon-blue);
  font-size: 2.25rem;
  cursor: pointer;
}

.section-title .day-number {
  display: block;
  font-size: 3rem;
  color: var(--white);
  text-shadow: 2px 2px 0 var(--red);
}

.section-title:hover .day-number {
  color: var(--red);
  text-shadow: 2px 2px 0 var(--white);
}

.content-section {
  padding-block: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.content-section .product-grid {
  max-height: 0px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(294.67px, 1fr));
  align-items: start;
  gap: 2rem;
  overflow: hidden;
  transition: 0.2s ease max-height;
}

.content-section.is-active .product-grid {
  overflow: visible;
  margin-bottom: 2rem;
}

.content-section .arrow {
  margin: 0.5rem auto;
  transition: transform 0.2s ease-in-out;
  filter: drop-shadow(2px 2px var(--red));
}

.content-section.is-active .arrow {
  transform: rotate(180deg);
}

.product-grid > :nth-child(3n + 1),
.product-grid > :nth-child(3n + 3) {
  transform: rotate(-0.5deg);
}

.product-grid > :nth-child(3n + 2) {
  transform: rotate(0.5deg);
}

.product-item__card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--black);
  border: 1px solid var(--white);
  border-radius: 0.25rem;
  transition: 0.1s ease transform;
}

.product-item__card:hover {
  border-color: var(--neon-green);
  transform: rotate(0deg) scale(1.05);
}

.product-item__card .product-item__image {
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: var(--white);
}

.product-item__card .product-item__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.product-item__card .product-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-item__card .product-item__content .product-item__name {
  color: var(--white);
  font-family: "ff-mach-web-pro", "Mach Pro";
  font-size: 1.2rem;
}

.product-item__card .product-item__content .product-item__store {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Matter", Arial, Helvetica, sans-serif;
  font-size: 0.69375rem;
}

.product-item__card .button {
  display: inline-block;
  background-color: var(--white);
  color: var(--black);
  font-family: "ff-mach-web-pro", "Mach Pro";
  text-transform: uppercase;
}

.product-item__card .button:hover {
  background-color: var(--neon-green);
}

.masthead {
  margin-block: 2rem;
}

@media screen and (min-width: 70rem) {
  .masthead {
    margin-block: 4rem;
  }
}

.splide__progress__bar {
  background-color: var(--neon-green);
}

.splide__pagination__page.is-active {
  background-color: var(--neon-green);
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-top: 3rem;
}

footer div  {
  text-align: center;
}

footer a {
  color: inherit;
}