*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
p {
  margin: 0;
}

/*******Typography********/
.main-title {
  font-size: clamp(3rem, 5vw + 1rem, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  line-height: 1.1;
  color: #17353d;
  margin-bottom: 3rem;
}

.product__title {
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 0.25em rgba(0, 0, 0, 0.2);
}

/*******Layout********/
section {
  padding: 7em 0;
}

.container {
  width: 85%;
  max-width: 65em;
  margin: 0 auto;
}

.flow > * + * {
  margin-top: var(--flow-space, 2rem);
}

.split {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}
.split > * {
  flex-basis: 30%;
  min-width: 15em;
}

/*******Components********/
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.125rem;
  padding: 0.5em 1.25em;
  background-color: var(--clr-accent, rgb(63, 63, 248));
  color: var(--clr-text, #fff);
  border-radius: 0.25em;
  transition: transform 250ms ease-in-out, opacity 150ms linear;
}

.btn:hover,
.btn:focus {
  transform: scale(1.2);
  opacity: 0.7;
}

/*******Sections********/
.hero {
  --clr-accent: #faa700;
  color: #fff;
  text-align: center;
  padding: 15em 0;
  background-image: url(../img/shoe-3.png), radial-gradient(#444, #111);
  background-repeat: no-repeat;
  background-size: contain;
  background-blend-mode: multiply;
  background-attachment: fixed;
  background-position: center center;
}

.featured {
  background-color: #eee;
}
.featured__item {
  display: block;
  position: relative;
  transform: scale(0.85);
  transition: transform 250ms ease-in-out;
  text-decoration: none;
  color: #333;
  text-align: center;
  line-height: 1.2;
}
.featured__item:hover,
.featured__item :focus {
  transform: scale(1);
}
.featured__item:hover .featured__details,
.featured__item :focus .featured__details {
  opacity: 1;
}
.featured__item::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  padding: 75% 75% 0 0;
  border-radius: 50%;
  background-color: #2193b0;
  z-index: -1;
}
.featured__details {
  opacity: 0;
}

.price {
  display: block;
  font-weight: 700;
  font-size: 2.5rem;
}

.product {
  background: radial-gradient(var(--clr-inner, lime), var(--clr-outer, purple));
  padding: 3rem;
  border-radius: 1rem;
  margin-bottom: 5rem;
  text-align: center;
}
.product__image {
  margin: -5em 0 0 0;
}
@media (min-width: 45em) {
  .product {
    text-align: left;
    margin-bottom: 9em;
  }
  .product__title {
    margin: 0;
    font-size: clamp(3rem, 5vw + 1rem, 5.5rem);
  }
  .product__image {
    float: right;
    width: 65%;
    shape-outside: url(../img/shoe-1.png);
    shape-margin: 1em;
    margin: 0 -5em 0 0;
  }
  .product.shoe-two .product__image {
    float: left;
    shape-outside: url(../img/shoe-2.png);
    shape-margin: 2em;
    margin: 0 0 0 -5em;
  }
}

.shoe-one {
  --clr-inner: #fdba33;
  --clr-outer: #e48d00;
  --clr-accent: #a1173c;
}

.shoe-two {
  --clr-inner: #fde8bf;
  --clr-outer: #eac886;
  --clr-accent: #2f4858;
}

.shoe-three {
  --clr-inner: #77d6eb;
  --clr-outer: #2193b0;
  --clr-accent: #008951;
}/*# sourceMappingURL=main.css.map */