/** Shopify CDN: Minification failed

Line 190:15 Expected identifier but found whitespace
Line 190:16 Unexpected "#222"

**/


/* CSS from section stylesheet tags */
.custom-product-grid-wrapper {
  padding: 40px 0;
  position: relative;
}

.custom-product-grid-wrapper .page-width {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  margin-bottom: 30px;
  text-align: left;
}

.section-heading {
  font-family: var(--font-heading-family);
  font-size: 32px;
  font-weight: var(--font-heading-weight, 600);
  color: #000;
  margin: 0;
  line-height: 1.2;
}

.custom-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.custom-product-card {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
}

.custom-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  margin-bottom: 10px;
}

.custom-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f9f9f9;
}

.custom-image-wrapper .secondary-image {
  opacity: 0;
}

.custom-product-card:hover .custom-image-wrapper .primary-image {
  opacity: 0;
}

.custom-product-card:hover .custom-image-wrapper .secondary-image {
  opacity: 1;
}

.custom-image-wrapper .single-image {
  position: relative;
  transition: transform 0.3s ease;
}

.custom-product-card:hover .custom-image-wrapper .single-image {
  transform: scale(1.05);
}

.custom-info-wrapper {
  padding-left: 2px;
  text-align: left;
  flex-grow: 1;
}

.custom-title {
  font-family: var(--font-heading-family);
  font-size: 2rem;
  color: #000;
  font-weight: var(--font-heading-weight, 400);
  margin-bottom: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.4em * 2);
}

.custom-price {
  font-family: var(--font-body-family);
  font-size: 1.6rem!important;
  color: #000;
  font-weight: var(--font-body-weight, 400);
}

.wishlist-heart-icon {
  position: absolute;
  top: 10px!important;
  right: 10px!important;
  width: 32px!important;
  height: 32px!important;
  background-color: rgba(255, 255, 255, 0.9)!important;
  border-radius: 50%!important;
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
  cursor: pointer!important;
  z-index: 2!important;
  transition: all 0.3s ease!important;
  border: none!important;
  outline: none!important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1)!important;
}

.wishlist-heart-icon:hover {
  background-color: rgba(255, 255, 255, 1)!important;
  transform: scale(1.1)!important;
}

.wishlist-heart-icon:focus-visible {
  outline: 2px solid #000!important;
  outline-offset: 2px!important;
}

.wishlist-heart-icon svg {
  width: 20px!important;
  height: 20px!important;
  stroke: rgba(0, 0, 0, 0.7)!important;
  stroke-width: 1.8!important;
  fill: none!important;
  transition: all 0.3s ease!important;
}

.wishlist-heart-icon.active svg {
  fill: black!important;
  stroke: black!important;
  stroke-width: 1.5!important;
}

.wishlist-heart-icon.adding {
  opacity: 0.6!important;
  pointer-events: none!important;
}

.view-more-container {
  text-align: center;
  margin-top: 20px;
}

.view-more-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font-family: var(--font-body-family);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #000;
}
/* 
.view-more-btn:hover {
  background-color: #222; /* dull black */
  border-color: #222;     /* match border */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* softer black shadow */
} */


/* Tablet (768px to 1023px) - 3 products grid */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .custom-title {
    font-size: 14px;
  }
  
  .custom-price {
    font-size: 13px;
  }
}

/* Mobile (below 768px) - 2 products grid */
@media screen and (max-width: 767px) {
  .section-heading {
    font-size: 24px;
  }
  
  .section-header {
    margin-bottom: 20px;
  }
  
  .custom-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .custom-title {
    font-size: 13px;
  }
  
  .custom-price {
    font-size: 12px;
  }
  
  .view-more-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* Small mobile (below 576px) */
@media screen and (max-width: 576px) {
  .custom-product-grid-wrapper .page-width {
    padding: 0 15px;
  }
  
  .custom-product-grid {
    gap: 12px;
  }
  
  .wishlist-heart-icon {
    width: 28px;
    height: 28px;
    top: 8px;
    right: 8px;
  }
  
  .wishlist-heart-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .custom-title {
    font-size: 12px;
  }
  
  .custom-price {
    font-size: 11px;
  }
}
.scrolling-grid-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20rem;
  gap: 1rem;
  position: relative;
}

.grid-arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 32px;
  color: inherit;
  padding: 0;
  margin: 0;
  z-index: 1;
  line-height: 1;
}

.grid-arrow:hover {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.scrolling-grid-outer {
  overflow: hidden;
  flex: 1;
}

/* Enable touch scrolling on mobile */
@media screen and (max-width: 768px) {
  .scrolling-grid-outer {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .scrolling-grid-outer::-webkit-scrollbar {
    display: none;
  }
  
  .scrolling-grid {
    scroll-snap-type: x mandatory;
  }
  
  .grid-item {
    scroll-snap-align: start;
  }
}

.scrolling-grid {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.grid-item {
  flex: 0 0 auto;
  min-width: 200px;
  max-width: 300px;
  width: calc(25% - 0.75rem);
  scroll-snap-align: start;
  text-align: center;
}

.grid-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  cursor: pointer;
  border-radius: 0.5rem;
}

.grid-link {
  text-decoration: none;
  display: block;
  color: inherit;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Dynamic grid sizing based on number of items */
.scrolling-grid[data-count="1"] .grid-item {
  width: 100%;
  max-width: 400px;
}

.scrolling-grid[data-count="2"] .grid-item {
  width: calc(50% - 0.5rem);
}

.scrolling-grid[data-count="3"] .grid-item {
  width: calc(33.333% - 0.67rem);
}

.scrolling-grid[data-count="4"] .grid-item {
  width: calc(25% - 0.75rem);
}

.scrolling-grid[data-count="5"] .grid-item,
.scrolling-grid[data-count="6"] .grid-item {
  width: calc(20% - 0.8rem);
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .grid-item {
    width: calc(33.333% - 0.67rem);
    min-width: 180px;
  }
  
  .scrolling-grid[data-count="1"] .grid-item,
  .scrolling-grid[data-count="2"] .grid-item {
    width: calc(50% - 0.5rem);
  }
}

@media screen and (max-width: 768px) {
  .scrolling-grid-wrapper {
    padding: 0 2rem;
    gap: 0.5rem;
  }

  .grid-arrow {
    font-size: 24px;
  }

  .scrolling-grid {
    gap: 0.75rem;
  }

  .grid-item {
    width: calc(50% - 0.375rem);
    min-width: 140px;
    max-width: 200px;
  }
  
  .grid-link {
    font-size: 0.875rem;
    margin-top: 0.375rem;
  }
  
  .scrolling-grid[data-count="1"] .grid-item {
    width: 100%;
    max-width: 250px;
  }
}

@media screen and (max-width: 480px) {
  .scrolling-grid-wrapper {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .grid-arrow {
    font-size: 20px;
  }

  .scrolling-grid {
    gap: 0.5rem;
  }

  .grid-item {
    width: calc(50% - 0.25rem);
    min-width: 120px;
    max-width: 160px;
  }

  .grid-item img {
    border-radius: 0.375rem;
  }
  
  .grid-link {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 400;
  }
}

@media screen and (max-width: 360px) {
  .scrolling-grid-wrapper {
    padding: 0 0.75rem;
  }

  .grid-item {
    width: calc(50% - 0.25rem);
    min-width: 100px;
    max-width: 140px;
  }
  
  .grid-link {
    font-size: 0.7rem;
  }
}
.three-circle-buttons {
  text-align: center;
  padding: 40px 40px; 
}

.three-circle-buttons__heading {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.three-circle-buttons__container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.three-circle-buttons__item {
  display: inline-flex; 
  align-items: center;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 6px 14px; 
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  white-space: nowrap; 
}

.three-circle-buttons__item:hover {
  border-color: black;
}

.three-circle-buttons__image {
  width: 42px; 
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 8px;
}

.three-circle-buttons__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.three-circle-buttons__text {
  font-size: 15px;
}

@media (max-width: 768px) {
  .three-circle-buttons__container {
    flex-direction: column;
    align-items: center;
  }
  .three-circle-buttons__item {
    width: auto; 
    justify-content: center;
  }
}
.wishlist-section {
  padding: 40px 0;
}

.wishlist-section .page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wishlist-heading {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #111;
}

.wishlist-container {
  width: 100%;
}

.wishlist-loading {
  text-align: center;
  padding: 60px 20px;
  font-size: 16px;
  color: #666;
}

.wishlist-empty {
  text-align: center;
  padding: 60px 20px;
}

.wishlist-empty h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #333;
}

.wishlist-empty p {
  color: #666;
  margin-bottom: 25px;
  font-size: 16px;
}

.wishlist-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.wishlist-product-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.wishlist-product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.wishlist-product-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Maintains aspect ratio, adjust if needed */
  overflow: hidden;
}

.wishlist-product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain to show full image */
  display: block;
  transition: transform 0.3s ease;
}

.wishlist-product-card:hover .wishlist-product-image {
  transform: scale(1.05);
}

.wishlist-remove-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wishlist-remove-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.wishlist-remove-btn svg {
  width: 18px;
  height: 18px;
  stroke: #333;
  stroke-width: 2;
}

.wishlist-product-info {
  padding: 20px;
}

.wishlist-product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.4em * 2); /* 2 lines of text */
}

.wishlist-product-price {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
}

.wishlist-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wishlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
}

.wishlist-btn-primary {
  background-color: #000;
  color: #fff;
}

.wishlist-btn-primary:hover {
  background-color: #333;
  color: #fff;
}

.wishlist-btn-secondary {
  background-color: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.wishlist-btn-secondary:hover {
  background-color: #f8f8f8;
  border-color: #bbb;
}

.wishlist-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wishlist-btn:disabled:hover {
  transform: none;
}

.continue-shopping-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
  background-color: #333;
  color: #fff;
}

/* Loading animation */
.wishlist-loading::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  border-top-color: #666;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .wishlist-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .wishlist-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .wishlist-actions {
    flex-direction: column;
  }
  
  .wishlist-btn {
    flex: none;
    min-width: auto;
  }
}

@media screen and (max-width: 480px) {
  .wishlist-products-grid {
    grid-template-columns: 1fr;
  }
  
  .wishlist-heading {
    font-size: 1.5rem;
  }
}