/** Shopify CDN: Minification failed

Line 326:0 Unexpected "}"

**/
.section-formal-look-collection-products {
  width: 100%;
}

.formal-look-collection-products {
  width: 100%;
  background-color: #ffffff;
  position: relative;
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.formal-look-collection-products__header {
  text-align: center;
  margin-bottom: 3rem;
}

.formal-look-collection-products__tagline {
  letter-spacing: 2.16px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  font-weight: 400;
  line-height: 170%;
}

.formal-look-collection-products__title {
  font-weight: 400;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 5.04px;
  line-height: 140%;
}

/* Product Grid */
.formal-look-collection-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 48px 0;
}

/* Product Card Styles */
.formal-look-product-card {
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

.formal-look-product-card:hover {
  transform: translateY(-5px);
}

.formal-look-product-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Product Image */
.formal-look-product-card__image-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 1rem;
  border-radius: 0;
  position: relative;
}

.formal-look-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.formal-look-product-card:hover .formal-look-product-card__image {
  transform: scale(1.05);
}

.formal-look-product-card__image-placeholder {
  width: 100%;
  height: 100%;
}

.formal-look-product-card__image-placeholder .placeholder-svg {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  fill: #999;
}

/* Product Content */
.formal-look-product-card__content {
  text-align: center;
  padding: 0 5px;
}

.formal-look-product-card__vendor {
  font-size: 12px;
  color: #666666;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.formal-look-product-card__title {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: inherit;
}

/* Price Styles */
.formal-look-product-card__price {
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  display: inherit;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.formal-look-product-card__price--compare {
  font-size: 0.9em;
  color: #999999;
  text-decoration: line-through;
  font-weight: 400;
}

.formal-look-product-card__price--current {
  color: #000000;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 2.16px;
  opacity: 0.65;
}

/* Rating Styles */
.formal-look-product-card__rating {
  display: inherit;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 1;
}

.formal-look-product-card__rating-stars {
  letter-spacing: 2px;
  font-size: 1.1em;
}

.formal-look-product-card__rating-count {
  font-size: 0.9em;
  font-weight: 400;
}

/* View All Button */
.formal-look-collection-products__view-all-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.formal-look-collection-products__view-all {
  display: inline-block;
  padding: 10px 28px;
  background-color: transparent;
  border: 1px solid #1c1c1c;
  font-weight: 400;
  letter-spacing: 2.34px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 21.35px;
}

.formal-look-collection-products__view-all:hover {
  color: #ffffff;
  border-color: #1c1c1c;
}

/* Placeholder Styles */
.formal-look-product-card--placeholder {
  opacity: 0.7;
  pointer-events: none;
}

.formal-look-product-card--placeholder .formal-look-product-card__image-wrapper {
  background-color: #f0f0f0;
}

.formal-look-product-card--placeholder .formal-look-product-card__vendor,
.formal-look-product-card--placeholder .formal-look-product-card__title,
.formal-look-product-card--placeholder .formal-look-product-card__price,
.formal-look-product-card--placeholder .formal-look-product-card__rating {
  color: #999;
}

/* Responsive Styles - Tablet Landscape */
@media screen and (max-width: 1024px) {
  .formal-look-collection-products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .formal-look-collection-products__title {
    font-size: 32px;
  }
}

/* Responsive Styles - Tablet Portrait */
@media screen and (max-width: 768px) {
  .formal-look-collection-products__header {
    margin-bottom: 2rem;
  }
  
  .formal-look-collection-products__tagline {
    font-size: 12px;
    margin-bottom: 0.35rem;
  }
  
  .formal-look-collection-products__title {
    font-size: 28px;
  }
  
  .formal-look-collection-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .formal-look-product-card__title {
    font-size: 14px;
  }
  
  .formal-look-product-card__price {
    font-size: 14px;
  }
  
  .formal-look-product-card__vendor {
    font-size: 11px;
  }
  
  .page-width {
    padding: 0 15px;
  }
}

/* Responsive Styles - Mobile */
@media screen and (max-width: 480px) {
  .formal-look-collection-products__tagline {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  
  .formal-look-collection-products__title {
    font-size: 24px;
  }
  
  .formal-look-collection-products__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .formal-look-product-card__image-wrapper {
    aspect-ratio: 3/4;
    max-width: 100%;
  }
  
  .formal-look-product-card__content {
    padding: 0;
  }
  
  .formal-look-collection-products__view-all {
    width: 100%;
    padding: 12px 20px;
    text-align: center;
  }
  
  .formal-look-collection-products__view-all-wrapper {
    margin-top: 2rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 360px) {
  .formal-look-collection-products__title {
    font-size: 20px;
  }
  
  .formal-look-product-card__price {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* Ensure consistent spacing and text rendering */
.formal-look-product-card__vendor,
.formal-look-product-card__title,
.formal-look-product-card__price,
.formal-look-product-card__rating {
  word-break: break-word;
  text-rendering: optimizeLegibility;
}

/* Money formatting for Naira */
/* .formal-look-product-card__price--current:before {
  content: '#';
  font-weight: inherit; */
}

/* Focus states for accessibility */
.formal-look-product-card__link:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.formal-look-collection-products__view-all:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .formal-look-collection-products__view-all {
    display: none;
  }
  
  .formal-look-product-card {
    break-inside: avoid;
  }
}