/** Shopify CDN: Minification failed

Line 267:11 Expected ":"

**/
/* Shop Look and Categories Section Styles */

/* Shop the Look Section */
.shop-the-look-section {
  margin-bottom: 80px;
}

.index-section:has(.shop-the-look-section) {
  margin-bottom: 112px;
}

.shop-the-look__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.48px;
  color: #2F3600;
  margin-bottom: 80px;
}

.shop-the-look__content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

@media (max-width: 1000px) {
  .shop-the-look__content {
    flex-direction: column;
    align-items: center !important;
    gap: 64px;
  }

  .shop-the-look__title {
    color: #2F3600;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 41.8px */
    letter-spacing: -0.38px;
    margin-bottom: 42px;
  }

  .shop-the-look-section .product-card__image-wrapper {
    margin-bottom: 24px;
  }

  .shop-the-look-section {
    margin-bottom: 64px;
  }

  .shop-by-category__title {
    color: #2F3600;
    text-align: center;
    font-size: 38px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 41.8px */
    letter-spacing: -0.38px;
    margin-bottom: 42px !important;
  }

  .shop-the-look__lifestyle-image {
    width: 100%;
  }
}

.shop-the-look__lifestyle-image {
  flex: 1;
  overflow: hidden;
}

.shop-the-look__lifestyle-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.shop-the-look__product-card {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .shop-the-look__product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(47, 54, 0, 0.1);
} */

@media (max-width: 768px) {
  .shop-the-look__product-card {
    max-width: 100%;
  }
}


.product-card__image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.product-card__image,
.product-card__secondary-image {
  width: 100%;
  overflow: hidden;
}

.product-card__image img,
.product-card__secondary-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.product-card__secondary-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shop-the-look__product-card:hover .product-card__secondary-image {
  opacity: 1;
}

.shop-the-look__product-card:hover .product-card__image img {
  opacity: 0;
}

.product-card__hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  padding: 10px;
}

.shop-the-look__product-card:hover .product-card__hover-overlay {
  opacity: 1;
}

.product-card__quick-view-btn {
  background: #737902;
  color: #fff;
  border: none;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: auto;
  width: 100%;
}

.product-card__quick-view-btn:hover {
  background: #737902;
  color: #FFF;
  transform: scale(1.05);
}

.product-card__meta {
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.product-card__meta:hover {
  color: inherit;
}

.product-card__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #222;
  margin-bottom: 12px;
}

.product-card__type {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #222;
  margin-bottom: 24px;
}

.product-card__price {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  color: #222;
}

/* Shop by Category Section */
.shop-by-category-section {
  margin-top: 112px;
}

@media (max-width: 768px) {
  .shop-by-category-section {
    margin-top: 60px;
  }
}

.shop-by-category__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.48px;
  color: #2F3600;
  text-align: center;
  margin-bottom: 80px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(312px, 1fr));
  gap: 24px;
}

@media (max-width: 1000px) {
  .category-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.category-card {
  position: relative;
  overflow: hidden;
  background: #222;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  min-heigh
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card__image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-card__image img {
  transform: scale(1.05);
}

.category-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.category-card__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-card__label {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #FFF;
}

.category-card__arrow {
  width: 16px;
  height: 16px;
  stroke: #FFF;
  color: #fff;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .category-card__image {
    height: 412px;
  }

  .category-card__meta {
    padding: 24px;
  }

  .shop-look-and-categories .page-width {
    padding-bottom: 64px !important;
  }
  
  .index-section:has(.shop-the-look-section) {
    margin-bottom: 64px;
  }
}

.shop-look-and-categories {
  background: linear-gradient(0deg, #E8E9D8 0%, #FFF 61.66%);
}

.shop-look-and-categories .page-width {
  max-width: 1440px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 112px;
  margin-left: auto;
  margin-right: auto;
}
