/** Shopify CDN: Minification failed

Line 262:17 Expected "}" to go with "{"

**/
/* ====================================
   LENS PICKER MODAL STYLES
==================================== */

/* Modal Container */
.lens-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
}

.lens-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.lens-modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Modal Header */
.lens-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
  position: relative;
  z-index: 10;
}

.lens-modal__back,
.lens-modal__close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #333;
  transition: color 0.2s ease;
}

.lens-modal__back:hover,
.lens-modal__close:hover {
  color: #666;
}

.lens-modal__back svg,
.lens-modal__close svg {
  width: 20px;
  height: 20px;
}

/* Modal Content */
.lens-modal__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.lens-modal__form {
  padding: 40px;
  overflow-y: auto;
  background: #fff;
}

.lens-modal__product-preview {
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

/* Product Info */
.lens-modal__product-info {
  text-align: center;
  margin-bottom: 30px;
}

.lens-modal__product-title {
  font-size: 32px;
  font-weight: 300;
  color: #333;
  letter-spacing: 1px;
  margin: 0;
}

/* Steps */
.lens-modal__steps {
  margin-bottom: 40px;
}

.lens-steps {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
}

.lens-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.lens-step--active {
  opacity: 1;
}

.lens-step__number {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.lens-step__label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Form Elements */
.lens-selection-step {
  display: none;
}

.lens-selection-step--active {
  display: block;
}

.lens-selection-step h3 {
  font-size: 28px;
  font-weight: 300;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.lens-help-text {
  margin-bottom: 30px;
}

.lens-help-link {
  color: #333;
  text-decoration: underline;
  font-size: 14px;
}

.lens-help-link:hover {
  color: #666;
}

/* Lens Options */
.lens-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.lens-option {
  position: relative;
}

.lens-option input[type="radio"] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.lens-option__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #f8f8f8;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
}

.lens-option input[type="radio"]:checked + .lens-option__label {
  background: #2c2c3e;
  color: #fff;
  border-color: #2c2c3e;
}

.lens-option input[type="radio"]:focus + .lens-option__label {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
}

.lens-option__title {
  font-weight: 500;
}

.lens-option__price {
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 50px;
}

.btn--primary {
  background: #2c2c3e;
  color: #fff;
}

.btn--primary:hover:not(:disabled) {
  background: #1a