/** Shopify CDN: Minification failed

Line 327:11 Expected ":"

**/
/* Lens Selector Styles */

/* Modal Styles */
.lens-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
  padding: 2rem;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  z-index: 1001;
}

.close-modal:hover {
  color: #000;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.step-line {
  width: 4rem;
  height: 2px;
  background-color: #e5e5e5;
}

.step.active + .step-line {
  background-color: #000;
}

/* Step Content */
.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.back-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.back-btn:hover {
  color: #000;
}

.powered-by {
  font-size: 0.875rem;
  color: #666;
}

/* Lens Auth Notice */
.lens-auth-notice {
  background-color: #fef3cd;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.lens-auth-notice p {
  margin: 0;
  color: #92400e;
}

.lens-auth-notice a {
  color: #92400e;
  text-decoration: underline;
  font-weight: 600;
}

/* Lens Type Cards */
.lens-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.lens-type-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.lens-type-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.lens-image {
  width: 100%;
  height: 200px;
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lens-image img {
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
}

.lens-type-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.lens-type-card p {
  color: #666;
  margin-bottom: 1rem;
}

.lens-type-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.lens-type-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.lens-type-card li:before {
  content: "•";
  color: #000;
  font-weight: bold;
  margin-top: 0.125rem;
}

.lens-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.select-lens-type {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
}

.select-lens-type:hover {
  background-color: #333;
}

/* Lens Options */
.lens-options-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lens-option-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.lens-option-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lens-option-image {
  width: 200px;
  height: 140px;
  background-color: #f8f8f8;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lens-option-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.option-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #000;
}

.option-subtitle {
  color: #666;
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
}

.recommended-badge {
  background-color: #dcfce7;
  color: #166534;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-item,
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.feature-icon {
  color: #10b981;
  font-weight: bold;
}

.benefit-icon {
  color: #3b82f6;
  font-weight: bold;
}

.option-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.option-price {
  font-size