.shop_pattern_container {
  background-color: #fff7f0;
  height: var(--gPatternHeight);
}

.shop_pattern_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop_module_wrapper {
  padding: var(--gSectionPadding);
  background-color: #fff7f0;
}

.shop_module_container {
  display: flex;
  flex-direction: column;
  max-width: var(--gMaxWidth);
  margin: 0 auto;
}

.shop_module_title {
  text-align: center;
  margin-bottom: 60px;
}

.shop_card_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--gGap);
  width: 100%;
}

.shop_card_list_item {
  width: calc((100% - (2 * var(--gGap))) / 3);
}

/* shop card item */
.shop_article_container {
  background-color: #f3ece0;
  border: 2px solid #164959;
  height: 700px;
  display: flex;
  flex-direction: column;
}

.shop_card_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.shop_card_content_title {
  text-align: center;
  font-family: "ArminSoft", sans-serif;
  font-size: 37px;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-transform: none;
  color: #174959;
}

.shop_card_content_sub_title {
  text-align: center;
  font-family: "ArminSoft", sans-serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #164959;
  text-transform: uppercase;
}

.shop_card_content_small {
  text-align: center;
  font-family: "ArminSoft", sans-serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  color: #164959;
}

.shop-image-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 40px;
}

.shop-image-swiper {
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}

.shop-image-swiper .swiper-slide {
  display: flex !important;
  justify-content: center !important;
}

.shop-card-image {
  width: 200px;
  height: 300px;
  object-fit: cover;
  cursor: zoom-in;
}

.shop-card-content {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Swiper buttons */
.shop-swiper-nav-btn {
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  background: none;
  color: #f5eee4;
}

.shop-swiper-nav-btn svg {
  width: 44px;
  height: 44px;
  transition: color 0.2s ease;
}

.shop-swiper-nav-btn:hover svg {
  color: #ffffff;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: zoom-out;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .shop_card_list_item {
    width: calc((100% - (1 * var(--gGap))) / 2);
  }
}

@media (max-width: 1024px) {
  .shop_card_list_item {
    width: calc((100% - (1 * var(--gGap))) / 2);
  }
}

@media (max-width: 768px) {
  .shop_card_list_item {
    width: 100%;
  }

  .shop-image-row {
    padding: 20px;
  }
}
