/** Shopify CDN: Minification failed

Line 199:8 Expected identifier but found whitespace
Line 199:10 Unexpected "{"
Line 199:19 Expected ":"
Line 199:51 Expected identifier but found "!"
Line 210:8 Expected identifier but found whitespace
Line 210:10 Unexpected "{"
Line 210:19 Expected ":"
Line 210:51 Expected identifier but found "!"

**/


/* CSS from section stylesheet tags */
.fc2-collection-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fc2-collection-wrapper.fc2-loaded {
  opacity: 1;
  transform: translateY(0);
}

.fc2-collection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-left: 0px;
  padding-right: 0px;
  z-index: 1;
}
@media (min-width: 768px) {
  .fc2-collection {
    grid-template-columns: repeat(4, 1fr);
    padding-left: 12px;
    padding-right: 12px;
  }
}

.fc2-product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 10px;
  overflow: hidden;
}

.fc2-product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 133.33%;
  overflow: hidden;
}

.fc2-product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fc2-hover-image {
  opacity: 0;
}

@media (min-width: 768px) {
  .fc2-product-card.fc2-has-hover .fc2-product-image-wrapper:hover .fc2-hover-image {
    opacity: 1;
    transform: scale(1);
  }
  .fc2-product-card.fc2-has-hover .fc2-product-image-wrapper:hover .fc2-primary-image {
    opacity: 0;
    transform: scale(0.95);
  }
}

@media (max-width: 767px) {
  .fc2-hover-image {
    display: none !important;
  }
}

.fc2-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 2px;
}

.fc2-product-info h3,
.fc2-product-info p {
  margin: 2px;
  padding: 0;
  line-height: 1.2;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}
.fc2-product-info h3 {
  font-weight: 600 !important;
}

.fc2-product-info p {
  font-weight: 400 !important;
}

.fc2-sold-out-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255,0,0,0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.fc2-compare-price s {
  text-decoration: line-through;
  opacity: 0.8;
}

.fc2-sale-price {
  font-weight: 600;
}

.fc2-sold-out-price {
  color: red;
  font-weight: 700;
}

.fc2-view-all-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.fc2-view-all-btn,
.fc2-view-all-btn2 {
  margin-top: 5px;
  padding: 4px 12px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: background 0.5s, border-radius 0.5s, color 0.5s;
  border-radius: 0;
  border: none;
}

.fc2-view-all-btn2 {
  padding: 8px 16px;
  margin-bottom: 10px;
}

.fc2-view-all-btn:hover,
.fc2-view-all-btn2:hover {
  border-radius: 20px;
  color: #fff !important;
}

@media (max-width: 767px) {
  .fc2-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .fc2-hide-desktop {
    display: none !important;
  }
}

.fc2-tabs-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
}

.fc2-tab-btn {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background: transparent !important;
  border: none !important;
  color: {{ section.settings.tab_btn_text_color }} !important;
  text-decoration: none !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 500 !important;
  padding: 6px 16px !important;
  cursor: pointer;
}

.fc2-tab-btn:focus,
.fc2-tab-btn:active {
  color: {{ section.settings.tab_btn_text_color }} !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.fc2-tab-btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.fc2-tab-btn:focus {
  outline: none;
}

.fc2-tab-underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: #000;
  transition: left 0.4s ease, width 0.4s ease;
  z-index: 1;
}

.fc2-tab-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.fc2-tab-content.fc2-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------
   ADDED: Single-line separators (vertical + horizontal)
   + Bottom horizontal line across the grid only
   Background set to inherit
   All separators set to black (#000)
   -------------------------- */

/* Grid background inherits from site so it matches page strip color */
.fc2-collection {
  background: inherit;
  /* bottom horizontal line for the full grid area (top intentionally removed) */
  border-bottom: 1px solid #000;
}

/* Make product tiles blend with grid background (no filled card) */
.fc2-product-card {
  background: transparent;
  padding: 16px 12px !important; /* keep inner spacing */
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: none !important; /* match screenshot: no elevation on hover by default */
}

/* Image wrapper keep its existing rounded look if any but remove heavy overflow effects */
.fc2-product-image-wrapper {
  border-radius: 0;
  overflow: visible;
}

/* Separator color & thickness between tiles */
.fc2-product-card {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}

/* Remove left border for first column items (mobile: 2 columns) */
@media (max-width: 767px) {
  /* For 2-column grid: remove left border on odd items (1,3,5...) */
  .fc2-product-card:nth-child(2n+1) {
    border-left: 0;
  }
  /* Remove top border for the first row (first 2 items) so the grid top area stays clean */
  .fc2-product-card:nth-child(-n+2) {
    border-top: 0;
  }
}

/* Desktop: 4-column grid */
@media (min-width: 768px) {
  /* Remove left border for items in first column: nth-child(4n+1) => 1,5,9,... */
  .fc2-product-card:nth-child(4n+1) {
    border-left: 0;
  }
  /* Remove top border for the first row (first 4 items) so grid top area stays clean */
  .fc2-product-card:nth-child(-n+4) {
    border-top: 0;
  }

  /* Slightly reduce inner padding on larger screens to match screenshot proportions */
  .fc2-product-card {
    padding: 14px 10px !important;
  }
}

/* If user sets gaps to 0, borders will still show as separators; if gaps exist, borders will sit inside each tile */
.fc2-collection[style*="grid-column-gap: 0px"],
.fc2-collection[style*="grid-row-gap: 0px"] {
  background: inherit;
}

/* Keep sold-out badge above separators */
.fc2-sold-out-badge {
  z-index: 5;
}