/** Shopify CDN: Minification failed

Line 7:11 Unexpected "/"
Line 450:0 Unexpected "<"

**/
<!-- assets/pawsome-product-cards.css -->
<style>
/* Pawsome Product Cards - Base Styles */
.pawsome-cards {
  background-color: var(--pc-section-bg);
  padding: 48px 0;
}

.pc-container {
  max-width: 1280px;
  margin: 25px auto;
  padding: 25px 24px;
}

/* Visually Hidden Helper */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header Styles */
.pc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.pc-header__badge {
  display: inline-block;
  background-color: var(--pc-accent);
  color: white;
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pc-header__title {
  color: var(--pc-text);
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

/* Grid Layout */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(var(--pc-desktop-cols), 1fr);
  gap: var(--pc-gap);
}

/* Card Styles */
.pc-card {
  background: var(--pc-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--pc-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (prefers-reduced-motion: reduce) {
  .pc-card {
    transition: none;
  }
}

/* .pc-card:hover {
  transform: translateY(-40px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
} */

.pc-card:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}


/* Image Wrapper */
.pc-card__image-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

/*.pc-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.pc-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.pc-card:hover .pc-card__image {
  transform: scale(1.12);
}

.pc-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f3f4f6;
}

.pc-card__placeholder-icon {
  width: 48px;
  height: 48px;
  color: #9ca3af;
}

/* Badge */
.pc-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--pc-accent);
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

/* Content */
.pc-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pc-card__title {
  color: var(--pc-text);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-card__description {
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Feature Pills */
.pc-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pc-card__pill {
  display: inline-block;
  background-color: var(--pc-pill-bg);
  color: var(--pc-muted);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer */
.pc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.pc-card__price {
  color: var(--pc-accent);
  font-size: 24px;
  font-weight: 700;
}

/* Button */
.pc-card__button {
  background-color: var(--pc-accent);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.pc-card__button:hover {
  background-color: #ea580c;
  transform: scale(1.02);
}

.pc-card__button:focus {
  outline: 2px solid var(--pc-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .pc-card__button {
    transition: background-color 0.3s ease;
  }
  
  .pc-card__button:hover {
    transform: none;
  }
}

/* Empty State */
.pc-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--pc-muted);
  background: #f9fafb;
  border-radius: 16px;
  border: 2px dashed #e5e7eb;
}

.pc-empty-state p {
  margin: 0;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1023px) and (min-width: 640px) {
  .pc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pc-header__title {
    font-size: 28px;
  }
}

@media (max-width: 639px) {
  .pawsome-cards {
    padding: 32px 0;
  }
  
  .pc-container {
    padding: 0 16px;
  }
  
  .pc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pc-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  
  .pc-header__title {
    font-size: 24px;
  }
  
  .pc-card__content {
    padding: 20px;
  }
  
  .pc-card__title {
    font-size: 18px;
  }
  
  .pc-card__price {
    font-size: 20px;
  }
  
  .pc-card__button {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  /* Full-bleed images on mobile */
  .pc-card__image-wrapper {
    margin: 0;
    border-radius: 16px 16px 0 0;
  }
}

/* Print Styles */
@media print {
  .pc-card {
    break-inside: avoid;
  }
  
  .pc-card__button {
    color: var(--pc-accent);
    text-decoration: underline;
  }
}

/* Color Swatches */
.pc-card__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0; /* Changed from 12px to 0 */
}

.pc-swatch {
  position: relative;
  cursor: pointer;
}

.pc-swatch__image {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  border: 1px solid #fcfcfc;
  object-fit: cover;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pc-swatch:hover .pc-swatch__image {
  border-color: #444; /* Change this to your preferred color */
  transform: scale(1.1);
}

/* Tooltip */
.pc-swatch__tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pc-text);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 10;
  margin-bottom: 8px;
}

.pc-swatch__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--pc-text);
}

/* Show tooltip on hover (desktop only) */
@media (min-width: 768px) {
  .pc-swatch:hover .pc-swatch__tooltip {
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile: show tooltip on tap - UPDATED VERSION */
@media (max-width: 767px) {
  .pc-swatch__tooltip {
    display: none !important; /* Initially hidden */
    transition: none !important; /* Override the base transition */
  }
  
  .pc-swatch.active .pc-swatch__tooltip {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    background: var(--pc-text) !important;
    color: white !important;
    margin-top: 4px !important;
    margin-bottom: 0 !important;
    transform: none !important;
    transition: none !important; /* Critical: disable transitions */
  }
  
  .pc-swatch.active .pc-swatch__tooltip::after {
    display: none !important;
  }
  
  .pc-swatch:hover .pc-swatch__image {
    transform: none;
  }
}

/* Colors section */
.pc-card__colors-section {
  margin-top: 12px;
}

.pc-card__colors-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--pc-text);
  margin-bottom: 8px;
}

</style>