:root {
  --ss-beige: #CFC1AA;
  --ss-light: #B8B8B8;
  --ss-dark: #5C5C66;
  --ss-aqua: #C0E1DF;
  --ss-teal: #295E79;
  --ss-gold: #A68967;
  --light1: var(--ss-beige);
  --light2: var(--ss-light);
  --dark1: var(--ss-dark);
  --dark2: var(--ss-teal);
}

.site-header {
  background-color: rgba(0, 0, 0, 0) !important;
  background-image: none !important;

}

body {

  background-image: url(https://media.lanecrawford.com/feature/aw25-xmas-hp-background-1920x1080.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}

@media screen and (max-width: 1400px) {
  body {
    background-image: url(https://media.lanecrawford.com/feature/aw25-xmas-hp-background-1400x1400.jpg);
  }
}

@media screen and (max-width: 767px) {
  body {
    background-image: url(https://media.lanecrawford.com/feature/aw25-xmas-hp-background-767x1159.jpg);
  }
}

/****** Grid Layout ******/
.new-in,
.hero-banners,
.discover-more {
  /* hide CMS content which is not in use */
  display: none;
}

.promo {
  max-width: none;
  width: auto;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(10, min-content);

  background: url(https://media.lanecrawford.com/feature/aw25-xmas-hp-background-footer-1920.jpg);
  background-position-x: center;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 300px;

}

.promo.promo-b {
  background-color: white;

}

.promo-grid>* {
  grid-column: 1/-1;
}

@media screen and (min-width: 768px) {
  .promo-grid {
    grid-template-columns: minmax(1em, 1fr) repeat(6, minmax(100px, 200px)) minmax(1em, 1fr);
  }

  .promo-grid>* {
    grid-column: 2/-2;
  }

  .promo-grid>.hero {
    grid-column: 1/-1;
  }
}

@media screen and (min-width: 1400px) {
  .promo {
    margin: 0 4em;
  }

  .promo-grid>.hero {
    grid-column: 2/-2;
  }

  .lc-footer {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .promo-grid {
    background-size: 1000px auto;
  }
}

/****** Hero Image ******/
.hero {
  display: grid;
  place-items: center;
}

.hero>* {
  grid-column: 1;
  grid-row: 1
}


.hero__image-wrapper>* {
  grid-column: 1/1;
  grid-row: 1/1;
}

.hero__image-wrapper,
.hero__image-wrapper>img {
  width: 100%;
}

@keyframes hero-load {

  0%,
  100% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 0%;
  }
}

/****** Features ******/
.features {
  display: flex;
  gap: 10vw;
  overflow: scroll;
  padding-inline: 10px;
}

.features__block {
  font-family: var(--font-lc);
  flex: 0 0 75vw;
  width: 75vw;
}

.features__image {
  background-color: var(--bg, var(--light1));
  transition: background-color .5s ease;
  overflow: hidden;
}

.features__image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 7/8;
  aspect-ratio: 10/11;
  transition: opacity 0.5s ease-out, transform 0.2s ease;
}

.features__block:nth-child(2) .features__image img {
  transition-delay: 0.1s, 0;
}

.features__block:nth-child(3) .features__image img {
  transition-delay: 0.2s, 0;
}

.features__block:nth-child(4) .features__image img {
  transition-delay: 0.3s, 0;
}

.features__block:nth-child(5) .features__image img {
  transition-delay: 0.4s, 0;
}

.features__block:hover img,
.features__block:active img,
.features__block:focus img {
  transform: scale(1.1) rotate(1.2deg);
}

@media screen and (min-width: 768px) {
  .features {
    gap: 25px;
    overflow: visible;
    padding-inline: 0px;
    justify-content: space-between;
  }

  .features__block {
    flex-basis: 33%;
    flex-grow: 0;
    flex-shrink: 1;
    margin: 0;
  }

  .features__block:last-child {
    margin: 0;
  }
}

.features__title {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px;
}

.features__subtitle {
  font-size: 14px;
  font-family: inherit;
  text-transform: uppercase;
  color: #444;
  line-height: 1.2;
  margin: 10px 0 0;
  animation-delay: 0.1s;
}

.features__cta {
  font-size: 14px;
  font-family: inherit;
  text-transform: uppercase;
  margin: 12px 0;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  line-height: 1;
  letter-spacing: 1px;
  animation-delay: 0.2s;
}


/***** PRODUCTS ******/
.promo .products {
  text-align: center;
}

.promo .promo__products {
  text-align: center;
  line-height: 1.2;
}

.promo .promo__products:not(.flickity-enabled) {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.4;
  margin: auto;
  min-height: auto;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

@media screen and (min-width: 768px) {
  .promo .promo__products:not(.flickity-enabled):not(.promo__products--placeholder) {
    justify-content: flex-start;
  }
}

.products__placeholder {
  min-width: 164px;
  padding: 0 5px;
}

.promo .promo__products.flickity-enabled .products__placeholder {
  margin: 0 10px;
}

.products__wrapper {
  padding: 10px;
  background: transparent;
}

.products__wrapper .flickity-viewport {
  background: white;
}

.promo .products__product {
  display: inline-block;
  width: 13.5%;
  min-width: 150px;
  height: auto;
  /* min-height: 100%; */
  background: white;
  padding: 0 5px;
  margin: 0 5px;
  vertical-align: top;
}

.promo .products__item__figure {
  margin: auto;
}




@media only screen and (max-width: 767px) {
  .site-header {
    background-color: rgba(0, 0, 0, 0);
    background: none
  }

  .promo .products__product {
    width: 40vw;
    height: auto;
    min-height: auto;
    min-width: 40vw;
    border-radius: 3px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    margin: 0 5px;
  }
}

.promo__products .product-brick__details {
  margin: 0;
}

.promo__products .product-brick__brand {
  margin: 8px 4px 4px;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo__products .product-brick__name {
  color: #444;
  font-size: 10px;
  height: 2.4em;
  min-height: 2.4em;
  line-height: 1.2;
  margin: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loading-placeholder::-moz-selection {
  background-color: #eeeded !important;
  color: #eeeded !important;
}

.loading-placeholder::selection {
  background-color: #eeeded !important;
  color: #eeeded !important;
}

.promo .product-brick__heart {
  font-size: 18px;
  right: -10px;
  top: 0px;
  line-height: 1;
  height: 40px;
  width: 40px;
  padding: 0;
  display: flex;
  justify-content: center;
}

.promo .product-brick__heart:before {
  top: 0;
  width: 20px;
  height: 18px;
}

/****** FLICKITY *****/
.promo .products__wrapper .next {
  right: 0;
}

.promo .products__wrapper .previous {
  left: 0;
}

@media screen and (min-width: 1300px) {
  .promo .products__wrapper .next {
    right: -50px;
  }

  .promo .products__wrapper .previous {
    left: -50px;
  }
}

.flickity-page-dots {
  display: none;
}

.hero-slider .flickity-prev-next-button.next {
  transform: translateY(-50%) translateX(0%);
}

.hero-slider .flickity-prev-next-button.previous {
  transform: translateY(-50%) translateX(0%);
}

.hero-slider .flickity-prev-next-button .arrow {
  fill: #fff;
  stroke: #fff;
  stroke-width: 3px;
  stroke-opacity: .75;
}

/****** wishlist size select *****/
@media screen and (min-width: 1380px) {
  .flickity-prev-next-button.next {
    transform: translateY(-50%) translateX(120%);
  }

  .flickity-prev-next-button.previous {
    transform: translateY(-50%) translateX(-120%);
  }

  .flickity-prev-next-button:not(.is-disabled) {
    opacity: .25;
  }
}

@media screen and (max-width: 737px) {
  .ui-dialog--add-to-wishlist-size {
    position: fixed;
    top: auto !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
    transform: translate3d(0, 110%, 0);
  }

  .ui-dialog--add-to-wishlist-size.is-open {
    transition: transform .33s ease !important;
    transform: translate3d(0, 0%, 0);
  }
}

/****** wishlist size dialog *****/
.ui-dialog--add-to-wishlist-size .product-brick {
  width: 50px;
}

.ui-dialog--add-to-wishlist-size .product-sizes__select {
  max-width: 150px;
}

.ui-dialog--add-to-wishlist-size .product-brick__heart,
.ui-dialog--add-to-wishlist-size .product-brick__details {
  display: none;
}

/***** CNY *****/
.show-for-larger-dt {
  display: none;
}

.hero__image-wrapper,
.hero__image-wrapper>img {
  width: 100%;
  max-width: none;
}

.txt-letter-spacing {
  letter-spacing: 0.25rem;
}

.features__image img {
  position: relative;
  z-index: 10;
  aspect-ratio: 1/1;
}

#fixed-floating-banner-container {
  position: fixed;
  right: 0px;
  bottom: 125px;
  width: 230px;
  z-index: 11;
}

.popup-small-mascot {
  top: 12px;
  width: 60px;
  position: absolute;
  z-index: -10;
  transition: 0.5s;
  transition-timing-function: ease;
}

.transition-class {
  transform: translateY(-60px);
}

.features__image_mascot_pop {
  overflow: visible;
}

.features__block:hover .popup-small-mascot {
  transform: translateY(-70px);
  z-index: 10;
}

@media screen and (min-width: 1400px) {
  .promo .rotation-skinny-banner {
    margin-bottom: -15px;
  }

  .promo {
    margin: 0;
  }

  .promo-grid>.hero {
    grid-column: 1/-1;
    overflow: hidden;
    position: relative;
    width: auto;
  }

  .hero__image-wrapper,
  .hero__image-wrapper>img {
    width: 100%;
    max-width: none;
  }


  .show-for-larger-dt {
    display: block;
    z-index: 1;
  }

  .show-for-tb {
    display: none;
    z-index: 0;
  }

  .show-for-mb-only {
    z-index: 0;
  }
}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .promo .rotation-skinny-banner {
    margin-bottom: -15px
  }

  .promo-grid>.hero {
    grid-column: 1/-1;
    overflow: hidden;
    position: relative;
    width: auto;
  }

  .hero__image-wrapper,
  .hero__image-wrapper>img {
    width: 100%;
    max-width: none;
  }

  #fixed-floating-banner-container {
    width: 200px;
    height: auto;
  }

  .show-for-larger-dt {
    z-index: 1;
  }

  .show-for-tb {
    z-index: 0;
  }

  .show-for-mb-only {
    z-index: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .promo .rotation-skinny-banner {
    margin-bottom: -15px
  }

  #fixed-floating-banner-container {
    width: 150px;
    height: auto;
  }

  .show-for-larger-dt {
    z-index: 0;
  }

  .show-for-tb {
    z-index: 1;
  }

  .show-for-mb-only {
    z-index: 0;
  }

}

@media only screen and (max-width: 767px) {
  .bar-heading {
    line-height: 2.5;
  }

  .features__block {
    padding-top: 60px;
  }

  .hero__image-wrapper,
  .hero__image-wrapper>img {
    width: 100%;
  }

  #fixed-floating-banner-container {
    width: 100px;
    height: auto;
    right: 0;
    bottom: 100px;
  }

  .show-for-larger-dt {
    z-index: 0;
  }

  .show-for-tb {
    z-index: 0;
  }

  .show-for-mb-only {
    z-index: 1;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
  padding: 5px 0px !important;
  border: 1px solid #fff;
  width: 160px;
}

.dropdown:hover,
.dropdown:has(.tab-link.active),
.dropdown.tab-link.active {
  border: 1px solid #A03C37;
  background-color: #A03C37;
  color: #fff;

}

.dropdown:hover .dropbtn,
.dropdown:has(.tab-link.active) .dropbtn,
.dropdown.tab-link.active:hover {
  color: #fff;
}

.dropbtn {
  color: black;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FAF1E0;
  width: 160px;
  left: -1px;
  top: 30px;
  border: 1px solid #CCCCCC;
  z-index: 1;
  max-height: 228px;
}

.dropdown-content a {
  color: black;
  padding: 5px 21px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #CCCCCC;
  background-color: #FAF1E0;
}

.dropdown-content a {
  color: black;
}

.dropdown-content a:last-child {
  border-bottom: 0px solid;
}

.dropdown-content a:hover {}

.dropdown:hover .dropdown-content {
  display: block;
}


.release-date-tab-nav {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.release-date-tab-nav li {
  display: inline;

}

.release-date-tab-nav li a {
  width: 160px;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .dropdown {
    width: 46%;
  }

  .dropdown-content {
    width: 100%;
  }

  .release-date-tab-nav li .tab-link.dropdown {
    width: 46%;
  }

  .release-date-tab-nav li a {
    width: 100%;
  }
}

.section-title {
  height: 38px;
  max-width: none;
}

@media only screen and (max-width: 767px) {
  .locale-en_US .section-title.section-title-xmas-curation {
    height: 20px;
  }
}