* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;


}

:root {
  --ap-surface: #f6f3ea;
  --ap-surface-deep: #ede9dc;
  --ap-input-surface: #fffdf6;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus,
[tabindex]:focus {
  outline: none !important;
  box-shadow: none !important;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--ap-surface);
  color: #0b0b0b;
  width: 100%;
  height: 100%;
}
  
.promo{
  height:33px;
  border-top:1px solid #333;
  border-bottom: 1px solid #d4d4d4;
  overflow:hidden;display:flex;
  align-items:center;
  white-space:nowrap;
  background: var(--ap-surface);
}

.promo-track{
  display:flex;
  animation:marquee 24s linear infinite;
}
    
.promo-track span{
  font-size:13px;
  font-weight:600;
  letter-spacing: 0;
  text-transform:uppercase;
  padding-right:34px;
}
    
.dot{
  padding:0 20px 0 0;
}

.shop-dropdown-btn {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop-dropdown {
  position: fixed;
  top: 57px;
  left: 0;
  width: 100%;
  background: var(--ap-surface);
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  z-index: 90;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  pointer-events: none;
}

.shop-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.shop-dropdown-inner {
  padding: 50px 7vw 65px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
}

.shop-dropdown-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.shop-dropdown-children {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.shop-dropdown-col a {
  color: #111;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.15;
  margin-bottom: 15px;
  /* FONT WEIGHT PURPOSELY REMOVED FROM HERE   || DONT CHANGE || */
}

.shop-dropdown-title,
.shop-main-links a {
  font-size: 18px !important;
  font-weight: 800;
  margin-bottom: 15px !important;
}

.shop-mobile-category-toggle {
  display: none;
}

.shop-dropdown-col a:hover {
  opacity: .55;
}

.shop-dropdown-btn .nav-bar-arrow img {
  transition: transform .28s ease;
}

.shop-dropdown-btn.active .nav-bar-arrow img {
  transform: rotate(180deg);
}

.page-accordion {
  width: 100%;
  display: grid;
  gap: 0;
}

.page-accordion-item {
  width: 100%;
  border-bottom: 1px solid #c9c9c9;
}

.page-accordion-item:first-child {
  border-top: 1px solid #c9c9c9;
}

.page-accordion-trigger {
  width: 100%;
  min-height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.35;
  font-weight: 800;
}

.page-accordion-arrow {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform .28s ease;
}

.page-accordion-item.open .page-accordion-arrow {
  transform: rotate(180deg);
}

.page-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.text-box .page-accordion-content p {
  margin: 0;
  padding: 0 36px 20px 0;
  color: #222;
}

@media (max-width: 560px) {
  .page-accordion-trigger {
    min-height: 50px;
    font-size: 15px;
  }

  .text-box .page-accordion-content p {
    padding-right: 0;
  }
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--ap-surface);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.45s ease;
  overflow-y: auto;
  border-bottom: 1px solid #111;
}

.side-menu.active {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 28px;
  right: 38px;
  background: transparent;
  border: 0;
  font-size: 38px;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 900px) {
  .shop-dropdown-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 28px;
  }
}

@media (max-width: 560px) {
  .shop-dropdown {
    overflow-y: auto;
  }

  .shop-dropdown-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 30px 22px 40px;
  }

  .shop-main-links,
  .shop-desktop-title {
    display: none;
  }

  .shop-category-group {
    width: 100%;
    border-bottom: 1px solid #d4d0c6;
  }

  .shop-mobile-category-toggle {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    background: transparent;
    color: #111;
    padding: 0;
    font: inherit;
    font-size: 18px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
  }

  .shop-mobile-category-toggle span:last-child {
    flex: 0 0 auto;
    font-size: 16px;
    transition: transform .24s ease;
  }

  .shop-category-group.open .shop-mobile-category-toggle span:last-child {
    transform: rotate(180deg);
  }

  .shop-dropdown-children {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
  }

  .shop-category-group.open .shop-dropdown-children {
    max-height: 420px;
    padding-bottom: 12px;
  }

  .shop-dropdown-title,
  .shop-main-links a {
    font-size: 20px !important;
  }

  .shop-dropdown-col a {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 560px) {
  .side-menu {
    width: 100%;
  }

  .close-btn {
    top: 18px;
    right: 22px;
    font-size: 34px;
  }
}

.landing-page {
  --landing-card-width: clamp(280px, 30vw, 450px);
  --landing-card-offset: clamp(424px, 45vw, 687px);
  display: block;
  background: var(--ap-surface);
  border-bottom: 1px solid #d4d4d4;
  width: 100%;
  height: clamp(520px, calc(100svh - 90px), 780px);
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.slogan-1 {
  position: absolute;
  top: 50px;
  left: 50px;
  font-size: clamp(22px, 2vw, 24px);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: .9;
}

.slogan-2 {
  position: absolute;
  bottom: 50px;
  right: 50px;
  font-size: clamp(22px, 2vw, 24px);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: .9;
}


.landing-card-1{
  width: var(--landing-card-width);
  aspect-ratio: 4 / 5;
  height: auto;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background .3s ease, scale .35s ease;
  overflow: hidden;
  position: absolute;
  top: 120px;
  left: calc(50% - var(--landing-card-offset));
  z-index: 1;
  rotate: -10deg;
}

.landing-card-2{
  width: var(--landing-card-width);
  aspect-ratio: 4 / 5;
  height: auto;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background .3s ease, scale .35s ease;
  overflow: hidden;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.landing-card-3{
  width: var(--landing-card-width);
  aspect-ratio: 4 / 5;
  height: auto;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background .3s ease, scale .35s ease;
  overflow: hidden;
  position: absolute;
  top: 50px;
  right: calc(50% - var(--landing-card-offset));
  z-index: 1;
  rotate: 10deg;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: left;
}

.landing-card {
  transition: scale 0.35s ease, box-shadow 0.35s ease;
  contain: layout paint;
    box-shadow:
   0px 0px 0px rgba(111, 111, 111, 0.181),
  2px 2px 2px rgba(0, 0, 0, 0.19);
}

.landing-card:hover
{
  scale: 1.04;
  cursor: pointer;
}

.landing-image {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  /* padding: 10px; */
  background-color: var(--ap-surface);
   box-shadow:
  inset 2px 2px 2px rgba(111, 111, 111, 0.181),
  0 0px 0px rgba(0, 0, 0, 0.19);
}


.landing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-card-info {
  display: none;
  grid-template-rows: 1fr 1fr;
  background: var(--ap-surface);
  border-top: 1px solid #c9c9c9;
  height: clamp(52px, 5vw, 65px);
  width: 100%;
  min-width: 0;
  text-transform: uppercase;
  font-size: clamp(10px, 1.1vw, 17px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 300;
  font-style: normal;
  transition: background .3s ease, color .3s ease;
  overflow: hidden;
  box-shadow:
    inset 2px 0px 2px rgba(0, 0, 0, 0.2),
    0 0px 0px rgba(0, 0, 0, 0.19);
}

.landing-card-info > p,
.landing-card-info span > p {
  height: 100%;
  margin: 0;
  padding: 0 clamp(8px, 1vw, 12px);
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.landing-card-info span {
  width: 100%;
  height: 100%;
  min-width: 0;
  border-top: 2px solid #808080;
  overflow: hidden;
}


.divider-shop {
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background: var(--ap-surface);
  border-bottom: 1px solid #cfcfcf;
}

.divider-shop h1 {
  font-family: sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(22px, 2vw, 24px);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: .9;
}

.divider-title-link {
  color: inherit;
  text-decoration: none;
}

.divider-title-link:hover,
.view-all:hover {
  color: #ff563f;
}

.divider {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100px;
  font-size: 15px;
  background: var(--ap-surface);
  border-bottom: 1px solid #cfcfcf;
  padding: 30px 20px;
}




/* LANDING RESPONSIVE ACCORDING TO INDEX STRUCTURE */
@media (max-width: 1250px) {
  .landing-page {
    --landing-card-width: clamp(230px, 30.5vw, 390px);
    --landing-card-offset: clamp(349px, 45.75vw, 597px);
  }

  .landing-card-1,
  .landing-card-2,
  .landing-card-3 {
    width: var(--landing-card-width);
    height: auto;
    aspect-ratio: 4 / 5;
    grid-template-rows: 1fr;
  }

  .landing-card-info {
    height: clamp(48px, 5vw, 60px);
    font-size: clamp(10px, 1.15vw, 14px);
  }
}

@media (max-width: 1050px) {
  .landing-page {
    --landing-card-width: clamp(215px, 31vw, 325px);
    --landing-card-offset: clamp(329px, 46.5vw, 500px);
    height: clamp(500px, 72svh, 650px);
    min-height: 500px;
  }

  .divider{
    font-size: 14px;
  }

  .landing-card-1,
  .landing-card-2,
  .landing-card-3 {
    width: var(--landing-card-width);
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 850px) {
  .landing-page {
    height: clamp(430px, 68svh, 600px);
    min-height: 430px;
  }

  .landing-card-2 {
    display: none;
  }

  .landing-card-1,
  .landing-card-3 {
    width: clamp(210px, 38vw, 300px);
    height: auto;
    aspect-ratio: 4 / 5;
    grid-template-rows: 1fr;
  }

  .landing-card-1{
      rotate: 7deg;
  }

    .landing-card-3 {
      rotate: -12deg;

  }

  .landing-card-1 {
    top: 120px;
    left: calc(50% - clamp(210px, 38vw, 300px) - 5px);
  }

  .landing-card-3 {
    right: calc(50% - clamp(210px, 38vw, 300px) - 5px);
  }

  .landing-card-info {
    height: clamp(44px, 7vw, 56px);
    font-size: clamp(10px, 1.8vw, 13px);
  }
}

@media (max-width: 620px) {
  .landing-page {
    height: clamp(340px, 58svh, 480px);
    min-height: 340px;
  }

/* 
  .landing-card-3,
  .landing-card-1 {
    display: grid;
    width: clamp(205px, 62vw, 285px);
    height: clamp(270px, 75vw, 360px);
    grid-template-rows: 1fr;
    top: 120px;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    rotate: 0deg;
  } */

  .landing-card-1,
  .landing-card-3 {
    width: clamp(128px, 40vw, 200px);
    height: auto;
    aspect-ratio: 4 / 5;
    grid-template-rows: 1fr;
  }

  .landing-card-1 {
    top: 96px;
    left: calc(50% - clamp(128px, 40vw, 200px) - 5px);
  }

   .landing-card-3 {
    /* top: 96px; */
    right: calc(50% - clamp(128px, 40vw, 200px) - 5px);
  }


  .slogan-1 {
    top: 24px;
    left: 16px;
    font-size: 18px;
  }

  .slogan-2 {
    bottom: 24px;
    right: 16px;
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .landing-page {
    height: clamp(310px, 54svh, 420px);
    min-height: 310px;
  }

  .landing-card-1,
  .landing-card-3 {
    width: clamp(118px, 40vw, 170px);
  }

  .landing-card-1 {
    left: calc(50% - clamp(118px, 40vw, 170px) - 5px);
  }

  .landing-card-3 {
    right: calc(50% - clamp(118px, 40vw, 170px) - 5px);
  }

   .divider{
    font-size: 11px;
  }
}
