:root {
  --transition: 0.3s all linear;
  --transform: translateY(-6px);
  --shadow: 0 4px 4px -10px rgb(64 64 64 / 4%),
        0 13px 13px -10px rgb(64 64 64 / 6%),
        0 40px 60px -10px rgb(64 64 64 / 8%);
}
/*
* {
    margin: 0;
    outline: 1px solid red;
}
*/
/***
BUTTONS
***/
/***
CARDS
***/
.card:focus-within {
  box-shadow: 0 0 0 2px var(--primary);
}
.card:focus-within a:focus {
  outline: none;
}
.product-card__image img {
  transition: var(--transition);
}
.product-card:hover .product-card__image img {
  transform: scale(1.05, 1.05);
}
/***
IMAGES
***/
/* Border */
.fr-content-section-alpha__media::after, .fr-feature-card-foxtrot__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  isolation: isolate;
  z-index: -1;
  transform: translate(1rem, 1rem);
}
.fr-content-section-alpha__media::before, .fr-feature-card-foxtrot__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
  isolation: isolate;
  z-index: -1;
  transform: translate(-1rem, -1rem);
}
/***
FOOTER
***/
.footer-menu.brxe-nav-menu .bricks-nav-menu > li > a {
  width: fit-content;
}
