/* line 1, collection.scss */
.collection {
  margin-bottom: clamp(31px, 4vw, 80px); }
  /* line 4, collection.scss */
  .collection h1 {
    margin-top: clamp(28px, 4vw, 42px); }
    /* line 7, collection.scss */
    .collection h1.sub {
      margin-top: clamp(42px, 4vw, 90px); }
  /* line 12, collection.scss */
  .collection__header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: clamp(22px, 4vw, 41px);
    margin-bottom: clamp(58px, 4vw, 88px); }
    /* line 20, collection.scss */
    .collection__header .select {
      position: relative;
      color: #505050;
      font-size: clamp(10px, 4vw, 23px);
      font-weight: 400;
      text-transform: uppercase;
      transition: .2s ease; }
      /* line 30, collection.scss */
      .collection__header .select:hover {
        color: #000; }
      /* line 34, collection.scss */
      .collection__header .select.original {
        display: none;
        appearance: none; }
      @media screen and (max-width: 850px) {
        /* line 40, collection.scss */
        .collection__header .select.original {
          display: block; }
        /* line 44, collection.scss */
        .collection__header .select.custom {
          display: none; } }
    /* line 50, collection.scss */
    .collection__header .dropdown {
      position: absolute;
      top: calc(24px + 10px);
      left: 0;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      opacity: 0;
      pointer-events: none;
      background-color: #FFFFFF;
      min-width: max-content;
      padding-top: 14px;
      padding-bottom: 19px;
      border: 1px solid #505050;
      font-size: 20px;
      text-align: left; }
      /* line 63, collection.scss */
      .collection__header .dropdown.show {
        opacity: 1;
        pointer-events: all; }
      /* line 78, collection.scss */
      .collection__header .dropdown li {
        width: 100%;
        padding-block: 8px;
        padding-inline: 13px; }
        /* line 83, collection.scss */
        .collection__header .dropdown li.active {
          background: rgba(0, 0, 0, 0.05); }
        /* line 87, collection.scss */
        .collection__header .dropdown li:hover {
          color: #000; }
      /* line 92, collection.scss */
      .collection__header .dropdown::before {
        content: '';
        width: 20px;
        height: 11px;
        background-image: url("https://static.insales-cdn.com/files/1/3809/90345185/original/dropdown-arrow.svg");
        background-repeat: no-repeat;
        background-position: center;
        margin-left: auto;
        margin-right: 9px;
        padding-bottom: 4px; }
      /* line 106, collection.scss */
      .collection__header .dropdown:hover {
        color: #505050; }
  /* line 112, collection.scss */
  .collection__subcategories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 70px;
    row-gap: 20px;
    margin-top: 30px; }
    @media screen and (max-width: 850px) {
      /* line 112, collection.scss */
      .collection__subcategories {
        display: none; } }
    /* line 126, collection.scss */
    .collection__subcategories a {
      background-color: #F1F1F1;
      padding: 12px 13px;
      color: #505050;
      font-size: 20px;
      letter-spacing: 5%;
      text-transform: uppercase; }
      /* line 135, collection.scss */
      .collection__subcategories a.active {
        border: 1px solid #505050; }
  /* line 141, collection.scss */
  .collection__products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: clamp(16px, 4vw, 12px);
    row-gap: clamp(29px, 4vw, 61px); }
    @media screen and (max-width: 1080px) {
      /* line 141, collection.scss */
      .collection__products {
        grid-template-columns: repeat(3, 1fr); } }
    @media screen and (max-width: 710px) {
      /* line 141, collection.scss */
      .collection__products {
        grid-template-columns: repeat(2, 1fr); } }
    /* line 155, collection.scss */
    .collection__products-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(38px, 4vw, 110px); }
  /* line 163, collection.scss */
  .collection__banner {
    position: relative;
    width: 100%;
    height: 661px;
    overflow: hidden;
    margin-top: clamp(28px, 4vw, 99px);
    margin-bottom: clamp(34px, 4vw, 99px); }
    @media screen and (max-width: 940px) {
      /* line 163, collection.scss */
      .collection__banner {
        height: 450px; } }
    @media screen and (max-width: 600px) {
      /* line 163, collection.scss */
      .collection__banner {
        height: 360px; } }
    @media screen and (max-width: 400px) {
      /* line 163, collection.scss */
      .collection__banner {
        height: 325px; } }
    /* line 184, collection.scss */
    .collection__banner img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    /* line 190, collection.scss */
    .collection__banner-content {
      position: absolute;
      bottom: clamp(18px, 4vw, 35px);
      right: clamp(26px, 4vw, 30px);
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: clamp(9px, 4vw, 12px); }
      /* line 200, collection.scss */
      .collection__banner-content h2 {
        color: #FFF;
        font-size: clamp(20px, 4vw, 70px);
        letter-spacing: 2%;
        text-transform: uppercase; }
