/* ------------------------------- HERO SECTION ------------------------------- */

.hero {
    background-color: var(--color-green);
    padding-block-start: 7rem;
    overflow-x: hidden;
  }
  
  .heading-container {
    position: relative;
    justify-content: center;
    align-items: center;
  }
  
  .heading-container .decoration {
    position: absolute;
  }
  
  .decoration__square {
    top: -3rem;
    left: 0;
  }
  
  .decoration__star {
    top: 1rem;
    right: 0;
  }
  
  .heading-wrapper {
    flex-direction: column;
  }
  
  .heading-wrapper h1 {
    font-size: clamp(5rem, 10vw, 10rem);
    line-height: 0.86;
    text-align: center;
    z-index: 2;
    letter-spacing: calc(5 * 0.01em);
    white-space: nowrap;
    color: var(--color-brown);
  }
  
  .heading-wrapper p {
    color: var(--color-cream);
    text-align: center;
    font-size: clamp(0.875rem, 1.85vw, 1.5rem);
    max-width: 24ch;
    margin-block-start: 1.25rem;
  }
  
  .heading-container .hero-image {
    min-width: 12rem;
    max-width: 24rem;
  }
  
  .heading-container .hero-image__left {
    transform-origin: bottom right;
    transform: rotate(12deg) translate(-2rem, 0);
  }
  
  .heading-container .hero-image__right {
    transform-origin: bottom left;
    transform: translate(2rem, 2rem) rotate(-10deg);
  }
  
  .hero__subsection {
    margin-block: 4rem;
  }
  
  .links-wrapper {
    padding: 0;
  }
  
  .links-wrapper li {
    font-size: clamp(1rem, 1vw + 0.25rem, 1.5rem);
    list-style: none;
    color: var(--color-brown);
    text-underline-offset: 0.5rem;
  }
  
  .links-wrapper li:hover {
    text-decoration: underline;
  }
  
  .links-wrapper li:not(:first-child) {
    margin-block-start: 1rem;
  }
  
  .shop-button {
    display: block;
    margin-inline-start: -8.5%;
    width: 8rem;
  }
  
  .shop-button svg {
    transition: transform 500ms ease;
    width: 100%;
  }
  
  .shop-button:hover svg {
    transform: rotate(360deg);
  }
  
  .more-direction {
    color: var(--color-white);
    transform: rotate(90deg) translateX(0.75rem);
    overflow-x: hidden;
    background-color: transparent;
    cursor: pointer;
  }
  
  .more-direction svg {
    margin-block-start: -1rem;
    transform-origin: center left;
    transition: transform 200ms ease;
    transform: translateX(-1.5rem);
  }
  
  .more-direction:hover svg {
    transform: translateX(-0.25rem);
  }
  
  /* -------------------------------- STYLE INSPIRATION SECTION ---------------------------- */
  
  .style-inspiration {
    background-color: var(--color-cream);
    overflow: hidden;
  }
  
  .big-container {
    max-width: 1600px;
    margin-inline: auto;
    position: relative;
    align-items: center;
  }
  
  .inspiration-right-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    /* height: 100%; */
  }
  
  .explore-more-button {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 3rem 3rem 0;
    font-weight: 500;
  }
  
  .explore-more-button:hover {
    opacity: 0.75;
  }
  
  .explore-more-button img {
    display: inline-block;
    height: 1em;
    margin-inline-start: 0.25rem;
  }
  
  .inspiration-content-wrapper {
    z-index: 3;
    gap: 12rem;
    margin-block: 6rem 7rem;
  }
  
  .inspiration-content-wrapper h2 {
    font-size: clamp(2rem, 4vw + 0.675rem, 4rem);
    color: var(--color-white);
    writing-mode: vertical-rl;
    line-height: 1.1;
    margin-inline-start: 3rem;
  }
  
  .inspiration-content {
    color: var(--color-green);
    position: relative;
  }
  
  .inspiration-content img {
    max-width: 25rem;
    margin-block-start: 0.5rem;
  }
  
  .title-wrapper {
    align-items: baseline;
    justify-content: space-between;
  }
  
  .title-wrapper h3 {
    font-size: 2.5rem;
  }
  
  .arrow-right {
    position: absolute;
    top: 50%;
    right: 0rem;
    width: 7rem;
    transform-origin: center;
    transform: rotate(50deg) translate(0, -50%);
  }
  
  .text-decor {
    position: absolute;
    color: var(--color-brown);
    bottom: 5%;
    left: -50%;
  }
  
  .text-decor__formal {
    font-size: 2.5rem;
    font-weight: 600;
  }
  
  .text-decor__street {
    font-size: 2.25rem;
    font-weight: 400;
    bottom: -4.5%;
  }
  
  /* -------------------------------- FEATURED PRODUCTS SECTION ---------------------------- */
  
  .featured-products {
    background-color: var(--color-green);
    padding-block: 4rem;
  }
  
  .products-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  
  .main-product {
    position: relative;
    grid-area: 1 / 1 / 3 / 5;
  }
  
  .main-product h2 {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--color-brown);
    font-size: clamp(2rem, 4vw + 0.675rem, 4rem);
    writing-mode: vertical-rl;
    line-height: 1.1;
  }
  
  .main-product img {
    height: 100%;
  }
  
  .product-item-1 {
    grid-area: 1 / 5 / 2 / 7;
  }
  
  .product-item-2 {
    grid-area: 1 / 7 / 2 / 9;
  }
  
  .product-item-3 {
    grid-area: 2 / 5 / 3 / 7;
  }
  
  .product-item-4 {
    grid-area: 2 / 7 / 3 / 9;
  }
  
  @media screen and (max-width: 1150px) {
    /* ----------- STYLE INSPIRATION SECTION --------------- */
    .inspiration-content-wrapper {
      gap: 8rem;
    }
  
    .inspiration-content img {
      max-width: 18rem;
    }
  
    .title-wrapper h3 {
      font-size: 2rem;
    }
  
    .text-decor {
      left: -40%;
    }
  
    .text-decor__formal {
      font-size: 2rem;
    }
  
    .text-decor__street {
      bottom: -4.5%;
      font-size: 1.75rem;
    }
  }
  
  @media screen and (max-width: 920px) {
    .inspiration-content-wrapper {
      gap: 7rem;
      margin-block: 4rem 6rem;
    }
  
    .inspiration-content img {
      max-width: 14rem;
    }
  
    .title-wrapper h3 {
      font-size: 1.5rem;
    }
  
    .text-decor {
      left: -40%;
    }
  
    .text-decor__formal {
      font-size: 1.75rem;
    }
  
    .text-decor__street {
      bottom: -4.5%;
      font-size: 1.5rem;
    }
  }
  
  @media screen and (max-width: 720px) {
    /* ----------- HERO SECTION --------------- */
  
    .shop-button {
      margin-inline-start: 0;
      width: 7rem;
    }
  
    .hero__subsection {
      justify-content: center;
      margin-block: 1.5rem;
    }
  
    .decoration__square {
      top: -5rem;
    }
  
    .decoration__star {
      top: -3rem;
    }
  
    .heading-container .hero-image__left {
      transform: rotate(18deg) translate(-1rem, -1.5rem);
    }
  
    .heading-container .hero-image__right {
      transform: translate(0.5rem, 0rem) rotate(-15deg);
    }
  
    /* ----------- STYLE INSPIRATION SECTION --------------- */
    .inspiration-content-wrapper {
      gap: 5rem;
      margin-block: 3rem 5rem;
    }
  
    .inspiration-content img {
      max-width: 12rem;
    }
  
    .arrow-right {
      width: 5rem;
      top: 45%;
      transform: rotate(50deg) translate(0, -33%);
    }
  
    .title-wrapper p {
      font-size: 0.875rem;
    }
  
    .title-wrapper h3 {
      font-size: 1rem;
    }
  
    .text-decor {
      left: -25%;
    }
  
    .text-decor__formal {
      font-size: 1rem;
    }
  
    .text-decor__street {
      bottom: -4.5%;
      font-size: 1rem;
    }
  
    .explore-more-button {
      margin: 0 1.5rem 1.5rem 0;
    }
  
    /* ------------- FEATURED PRODUCTS SECTION ------------ */
  
    .products-container {
      gap: 1rem;
    }
  }
  
  @media screen and (max-width: 588px) {
    /* -------------- STYLE INSPIRATION SECTION ---------- */
    .inspiration-content-wrapper {
      justify-content: center;
      gap: 2rem;
    }
  
    .inspiration-right-image {
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      object-fit: cover;
      opacity: 0.2;
    }
  
    .explore-more-button {
      display: none;
    }
  
    /* ------------- FEATURED PRODUCTS SECTION ------------ */
    .products-container {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, auto);
    }
  
    .main-product {
      grid-area: 1 / 1 / 2 / 3;
    }
  
    .product-item-1 {
      grid-area: 2 / 1 / 3 / 2;
    }
  
    .product-item-2 {
      grid-area: 2 / 2 / 3 / 3;
    }
  
    .product-item-3 {
      grid-area: 3 / 2 / 4 / 3;
    }
  
    .product-item-4 {
      grid-area: 3 / 1 / 4 / 2;
    }
  }
  
  @media screen and (max-width: 375px) {
    .inspiration-content img {
      width: 10rem;
    }
  }