.elementor-2308 .elementor-element.elementor-element-1d1380a{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-70b2605 *//* =========================================================
   STORE SECTION
========================================================= */

.store-section {
  padding: 100px 24px;
  background: #0b0b0b;
  position: relative;
  z-index: 1;
}

/* =========================================================
   STORE HEADER
========================================================= */

.store-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.store-eyebrow {
  color: #c7a86d;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.store-header h2 {
  font-size: 54px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.store-header p {
  color: #bdbdbd;
  line-height: 1.8;
  font-size: 17px;
}

/* =========================================================
   STORE GRID
========================================================= */

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;

  max-width: 1300px;
  margin: 0 auto;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.store-card {
  background: #121212;

  border-radius: 22px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.06);

  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;

  position: relative;
}

.store-card:hover {
  transform: translateY(-8px);

  border-color: rgba(199,168,109,0.4);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.45);
}

/* =========================================================
   IMAGE AREA
========================================================= */

.store-image {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1;

  overflow: hidden;
  background: #0f0f0f;
}

/* =========================================================
   PRODUCT IMAGES
========================================================= */

.store-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;

  transition:
    opacity .45s ease,
    transform .6s ease;
}

/* FRONT IMAGE */

.primary-image {
  opacity: 1;
}

/* HOVER IMAGE */

.hover-image {
  position: absolute;
  inset: 0;

  opacity: 0;
}

/* HOVER SWITCH */

.store-card:hover .primary-image {
  opacity: 0;
  transform: scale(1.04);
}

.store-card:hover .hover-image {
  opacity: 1;
  transform: scale(1.04);
}

/* =========================================================
   CARD CONTENT
========================================================= */

.store-card-content {
  padding: 28px;
}

.store-card-content h3 {
  color: #fff;

  font-size: 24px;
  line-height: 1.2;

  margin-bottom: 14px;
}

.store-card-content p {
  color: #b9b9b9;

  line-height: 1.75;
  font-size: 15px;

  margin-bottom: 26px;
}

/* =========================================================
   BUTTON
========================================================= */

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 24px;

  background: #c7a86d;
  color: #000;

  text-decoration: none;
  font-weight: 700;
  font-size: 14px;

  border-radius: 999px;

  transition:
    transform .3s ease,
    background .3s ease,
    opacity .3s ease;
}

.store-btn:hover {
  background: #d7bb82;
  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 768px) {

  .store-section {
    padding: 80px 20px;
  }

  .store-header {
    margin-bottom: 50px;
  }

  .store-header h2 {
    font-size: 42px;
  }

}

@media (max-width: 640px) {

  .store-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .store-header h2 {
    font-size: 36px;
  }

  .store-card-content {
    padding: 24px;
  }

  .store-card-content h3 {
    font-size: 22px;
  }

}/* End custom CSS */