/* =====================================================
   GLOBAL & BASIC
===================================================== */
body#app {
  background-color: white;
}

.banner--fixed img,
.lazy__bg.lazy.bg-no-repeat.entered.loaded {
  background-color: white;
}

.container.grid.grid-col-1.lg\:grid-cols-6.gap-8.lg\:gap-6 {
  margin: 20px;
}

.navbar-brand img {
  max-height: 7rem;
}


/* =====================================================
   BANNER ENTRY – GLOBAL EFFECTS
===================================================== */
.banner-entry {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  perspective: 1000px;
  height: 300px;
}

.banner-entry .lazy__bg {
  transition: all 0.8s ease;
  transform: rotateY(0deg) scale(1);
  filter: brightness(0.95);
}

.banner-entry:hover .lazy__bg {
  transform: rotateY(15deg) scale(1.08);
  filter: brightness(1.15) saturate(1.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.banner-entry::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.4) 50%,
    transparent 70%
  );
  transform: rotate(25deg);
  transition: all 0.7s ease;
}

.banner-entry:hover::after {
  top: 100%;
  left: 100%;
  transition: all 1.2s ease;
}


/* =====================================================
   GRID / LAYOUT SPECIAL CASES
===================================================== */
.two-row .banner-entry:first-child {
  grid-column: span 1 / span 1;
  grid-row: span 1 / span 2;
}


/* =====================================================
   HERO / FIXED BANNER (FIRST SECTION)
===================================================== */
section.s-block.s-block--fixed-banner.wide-placeholder:first-of-type {
  margin-top: 0;
  height: 100%;
  overflow: hidden;
}

section.s-block.s-block--fixed-banner.wide-placeholder:nth-of-type(1) > .container {
  max-width: 80%;
  margin-top: 0;
  padding: 0;
}

.index section.s-block.s-block--fixed-banner.wide-placeholder > .container {
  max-width: 80%;
  padding: 0;
}


/* =====================================================
   FEATURES BLOCK
===================================================== */
.s-block--features__item {
  background-color: #F9EBF0;
  border: 1.5px solid #AB0433;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: featureFloat 4s ease-in-out infinite;
}

.s-block--features__item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(171, 4, 51, 0.25);
}

.s-block--features__item h2 {
  margin: 16px 0 6px;
  font-size: 18px;
  color: #2b2b2b;
}

.s-block--features__item p {
  font-size: 14px;
  color: #555;
}

.s-block--features__item .feature-icon i,
i.sicon-calendar-check {
  color: white !important;
  font-size: 36px;
}

@keyframes featureFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}


/* =====================================================
   PRODUCT CARD
===================================================== */
.s-product-card-entry {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f1f1f1;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.s-product-card-image img {
  transition: transform 0.6s ease;
}

.s-product-card-content {
  display: flex;
  place-content: center;
  align-items: center;
}

.s-product-card-content-title a {
  display: block;
  font-size: 16px;
  color: #AB0433;
  transition: color 0.3s ease;
}

.s-product-card-content-sub {
  display: flex;
  justify-content: center;
  align-items: center;
}

.s-product-card-price {
  font-size: 21px;
  font-weight: 700;
  color: #000;
  transition: color 0.3s ease;
}

.s-product-card-entry:hover {
  transform: translateY(-8px);
  border-color: #AB0433;
  box-shadow: 0 18px 45px rgba(171, 4, 51, 0.25);
}

.s-product-card-entry:hover .s-product-card-image img {
  transform: scale(1.08);
}

.s-product-card-entry:hover 
.s-product-card-content-title a,
.s-product-card-entry:hover 
.s-product-card-price {
  color: #AB0433;
}

.s-product-card-entry:hover 
.s-product-card-content-footer .s-button-element:not(.s-button-disabled) {
  background-color: #AB0433;
  border-color: #AB0433;
  color: #fff;
}


/* =====================================================
   BUTTON – PRIMARY
===================================================== */
.s-button-primary-outline.s-button-btn {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: none;
  background: linear-gradient(120deg, #AB0433, #8C032A, #AB0433);
  background-size: 300% 300%;
  color: #fff;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 12px 30px rgba(171, 4, 51, 0.35);
  animation: gradientFlow 6s ease infinite, breatheGlow 3.5s ease-in-out infinite;
  transition: transform .4s ease, box-shadow .4s ease;
}

.s-button-primary-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  animation: shimmerMove 4.5s infinite;
}

.s-button-primary-outline .sicon-shopping-bag {
  margin-left: 6px;
  animation: iconFloat 2.8s ease-in-out infinite;
}

.s-button-primary-outline:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 25px 60px rgba(171, 4, 51, 0.6);
}

.s-button-primary-outline:hover::before {
  animation-duration: 1.5s;
}

.s-button-primary-outline:hover .sicon-shopping-bag {
  animation: iconJump .6s ease;
}

.s-button-primary-outline:active {
  transform: scale(.95);
}


/* =====================================================
   FOOTER
===================================================== */
.footer-is-light .store-footer,
.footer-is-light .store-footer .store-footer__inner {
  background-color: #F9EBEF !important;
}


/* =====================================================
   DESKTOP (LG)
===================================================== */
@media (min-width: 1024px) {
  #main-content > section:nth-child(5) > div {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
  }

  #main-content > section:nth-child(5) > div > a:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
    width: 150%;
    left: 25%;
  }

  #main-content > section:nth-child(5) > div > a:nth-child(2),
  #main-content > section:nth-child(5) > div > a:nth-child(3) {
    grid-column: 2 / 3;
    right: 23%;
  }

  #main-content > section:nth-child(5) > div > a:nth-child(2) {
    grid-row: 1 / 2;
  }

  #main-content > section:nth-child(5) > div > a:nth-child(3) {
    grid-row: 2 / 3;
  }

  #main-content > section:nth-child(5) > div > a:nth-child(2).banner-entry,
  #main-content > section:nth-child(5) > div > a:nth-child(3).banner-entry {
    height: 385px;
  }

  #main-content > section:nth-child(2) > div {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  #main-content > section:nth-child(2) > div > a.banner-entry {
    height: 160px;
  }
.md\:grid-cols-3 {
    grid-template-columns: repeat(6,minmax(0,1fr));
}
.banner-entry {
    height: 160px;
}
#main-content > section:nth-child(5) > div {
    grid-template-columns: repeat(3,minmax(0,1fr));
}
#main-content > section:nth-child(5) > div > a:nth-child(2).banner-entry, #main-content > section:nth-child(5) > div > a:nth-child(3).banner-entry {
    height: 385px;
    width: 200%;
}
#main-content > section:nth-child(8) > div {
    grid-template-columns: repeat(3,minmax(0,1fr));
}
#main-content > section:nth-child(8) > div > a:nth-child(1) {
    height: 295px;
}
#main-content > section:nth-child(8) > div > a:nth-child(2) {
    height: 295px;
}
#main-content > section:nth-child(8) > div > a:nth-child(3) {
    height: 295px;
}
#main-content > section:nth-child(7) > div {
    max-width: 69%;
    padding: 0;
}
}


/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 767px) {
  #photos-0-slider > div.swiper {
    padding: 0;
  }

  .s-products-slider-card {
    max-width: 185px;
  }

  .main-nav-container {
    min-height: 56px;
  }

  .s-button-element:not(:disabled):not([loading]) {
    font-size: 11px;
  }

  #main-content > section:nth-child(2) > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #main-content > section:nth-child(2) > div > a.banner-entry {
    height: 110px;
  }

  section.s-block.s-block--fixed-banner.wide-placeholder > .container,
  section.s-block.s-block--fixed-banner.wide-placeholder:nth-of-type(1) > .container,
  .index section.s-block.s-block--fixed-banner.wide-placeholder > .container {
    max-width: 100%;
    padding: 0;
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
}
.banner-entry {
    height: 80px;
}
#main-content > section:nth-child(5) > div {
    grid-template-columns: repeat(1,minmax(0,1fr));
}
#main-content > section:nth-child(8) > div {
    grid-template-columns: repeat(1,minmax(0,1fr));
}
#main-content > section:nth-child(8) > div > a:nth-child(1) {
    height: 295px;
}
#main-content > section:nth-child(8) > div > a:nth-child(2) {
    height: 295px;
}
#main-content > section:nth-child(8) > div > a:nth-child(3) {
    height: 295px;
}
#main-content > section:nth-child(5) > div > a:nth-child(1) {
    height: 390px;
}
#main-content > section:nth-child(5) > div > a:nth-child(2) {
    height: 205px;
}
#main-content > section:nth-child(5) > div > a:nth-child(3) {
    height: 205px;
}
}