/** Shopify CDN: Minification failed

Line 94:2 Unexpected "{"
Line 94:3 Expected identifier but found "%"
Line 95:16 Unexpected "{"
Line 95:17 Expected identifier but found "%"
Line 202:2 Unexpected "{"
Line 202:3 Expected identifier but found "%"
Line 202:74 Unexpected "{"
Line 202:75 Expected identifier but found "%"
Line 213:2 Unexpected "{"
Line 213:3 Expected identifier but found "%"
... and 10 more hidden warnings

**/
/* Breadcrumbs */
.product-breadcrumbs {
  padding: 1rem 0;
  background-color: var(--color-background);
  font-size: 0.875rem;
}

.product-breadcrumbs a {
  color: rgba(var(--color-foreground-rgb), 0.6);
  transition: color 0.2s ease;
}

.product-breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumb-sep {
  margin: 0 0.5rem;
  color: rgba(var(--color-foreground-rgb), 0.4);
}

.breadcrumb-current {
  color: var(--color-foreground);
}

/* Product Page Layout */
.product-page {
  padding: 4rem 0 4rem;
  background-color: var(--color-background);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
  .product-gallery {
    position: sticky;
    top: 20px;
    align-self: start;
  }
}

/* Product Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  
}

.product-main-image {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--color-muted);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.product-thumbnail {
  {% comment %} width: 80px;
  height: 80px; {% endcomment %}
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  background: none;
  padding: 0;
  transition: border-color 0.2s ease;
}

.product-thumbnail:hover {
  border-color: rgba(var(--color-primary-rgb), 0.3);
}

.product-thumbnail.active {
  border-color: var(--color-primary);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-badge-inline {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  width: fit-content;
}

.badge-easy-care,
.badge-statement,
.badge-pet-friendly,
.badge-low-light,
.badge-air-purifying {
  background-color: var(--color-secondary);
  color: white;
}



.product-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .product-title {
    font-size: 2.5rem;
  }
}

.product-price-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-price-main {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-foreground);
}

.product-rating-full {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-stars {
  display: flex;
  gap: 2px;
  color: var(--color-secondary);
}

.product-review-count {
  font-size: 0.9rem;
  color: rgba(var(--color-foreground-rgb), 0.6);
}

.product-description-short {
  color: rgba(var(--color-foreground-rgb), 0.75);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Plant Care Specs */
.product-care-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  {% comment %} border: 1px solid rgba(var(--color-foreground-rgb), 0.1); {% endcomment %}
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 0.5rem 0;
}

.care-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  {% comment %} padding: 1.25rem 1rem; {% endcomment %}
  {% comment %} background-color: white; {% endcomment %}
}

.care-spec:not(:last-child) {
  {% comment %} border-right: 1px solid rgba(var(--color-foreground-rgb), 0.1); {% endcomment %}
}

.care-spec-icon {
  color: rgba(var(--color-foreground-rgb), 0.5);
  margin-bottom: 0.5rem;
  padding: 1rem;
  background: #e6e6e6;
  border-radius: 50px;
}

.care-spec-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
  margin-bottom: 0.25rem;
}

.care-spec-value {
  font-size: 0.8rem;
  color: rgba(var(--color-foreground-rgb), 0.7);
  line-height: 1.3;
}

/* Add to Cart Row */
.product-add-row {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.quantity-selector {
  display: none;
  align-items: center;
  border: 1px solid rgba(var(--color-foreground-rgb), 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
  background: white;
}

.quantity-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-foreground);
  transition: background-color 0.2s ease;
}

.quantity-btn:hover {
  background-color: var(--color-muted);
}

.quantity-value {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  -moz-appearance: textfield;
}

.quantity-value::-webkit-outer-spin-button,
.quantity-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-btn {
  flex: 1;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  min-height: 48px;
}

/* Trust Badges */
.product-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(var(--color-foreground-rgb), 0.7);
}

.trust-badge svg {
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* Product Tabs */
.product-tabs-wrapper {
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid rgba(var(--color-foreground-rgb), 0.1);
}

.product-tab {
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(var(--color-foreground-rgb), 0.6);
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.product-tab:hover {
  color: var(--color-foreground);
}

.product-tab.active {
  color: var(--color-foreground);
}

.product-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
}

.product-tab-content {
  padding: 2rem 0;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel-content {
  color: rgba(var(--color-foreground-rgb), 0.75);
  line-height: 1.8;
}

.tab-panel-content h4 {
  color: var(--color-foreground);
  font-family: var(--font-heading-family);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.tab-panel-content h4:first-child {
  margin-top: 0;
}

.tab-panel-content p {
  margin-bottom: 1rem;
}

/* Variant Options */
.product-variants {
  margin-bottom: 1rem;
}

.product-variants label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.variant-options {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.variant-option {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(var(--color-foreground-rgb), 0.2);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  width:100%;
}

.variant-option:hover {
  border-color: var(--color-primary);
}

.variant-option.selected {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: white;
}