/** Shopify CDN: Minification failed

Line 223:10 Expected identifier but found whitespace
Line 223:11 Unexpected "0.25rem"

**/
.customer.addresses {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.account-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 4px 20px rgba(0,0,0,0.08);
}

.navigation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.back-link:hover {
  background: #f5f5f5;
}

.back-link svg {
  width: 20px;
  height: 20px;
}

.add-address-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-address-button:hover {
  background: #333;
  transform: translateY(-1px);
}

.add-address-button svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.account-content {
  padding: 20px;
}

.account-section {
  background: #fff;
  border-radius: 4px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 18px;
  margin: 0;
  font-weight: 500;
}

.address-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 15px;
}

.address-item {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  position: relative;
  background: #fff;
  transition: all 0.3s ease;
}

.address-item:hover {
  border-color: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.address-default-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
}

.address-details {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 15px;
  color: #666;
}

.button-group {
  display: flex;
  gap: 10px;
}

.button {
  padding: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  min-width: 100px;
  text-align: center;
}

.button--primary {
  background: #000;
  color: #fff;
  text-transform: uppercase;
}

.button--primary:hover {
  background: #333;
}

.button--secondary {
  background: #f5f5f5;
  color: #000;
}

.button--secondary:hover {
  background: #eee;
}

.button--tertiary {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.button--tertiary:hover {
  border-color: #000;
}

@media (min-width: 768px) {
  .address-list {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
  }

  .button-group {
    gap: 15px;
  }
}

.form-group input::placeholder {
  color: #999;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-save {
  background: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
}

.btn-cancel {
  background: #eee;
  color: #333;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
}

  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
}

.address-details {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 1rem;
}

.button-group {
  display: flex;
  gap: 0.5rem;
}

.button.button--secondary {
  background: #eee;
  color: #333;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.75rem;
}

.button.button--tertiary {
  background: transparent;
  color: #666;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.75rem;
}

.customer-form {
  display: none;
  margin: 15px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}

.customer-form:not(.hidden) {
  display: block;
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #000;
  font-size: 15px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #000;
  outline: none;
}

.form-group input::placeholder {
  color: #999;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-save {
  flex: 1;
  background: #000;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.btn-save:hover {
  background: #333;
}

.btn-cancel {
  flex: 1;
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel:hover {
  border-color: #000;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-group.full {
    grid-column: span 2;
  }

  .form-actions {
    justify-content: flex-end;
  }

  .btn-save,
  .btn-cancel {
    flex: none;
    min-width: 150px;
  }
}

@media screen and (max-width: 768px) {
  .customer.addresses {
    padding: 12px;
  }

  .account-container {
    border-radius: 8px;
  }

  .navigation-header {
    padding: 12px;
  }

  .back-link span {
    display: none;
  }

  .back-link {
    padding: 8px;
    border-radius: 50%;
  }

  .add-address-button span {
    display: none;
  }

  .add-address-button {
    padding: 8px;
    border-radius: 50%;
  }

  .add-address-button svg {
    width: 20px;
    height: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .button-group {
    flex-direction: column;
  }

  .customer-form {
    margin: 12px;
    padding: 16px;
  }

  .address-list {
    padding: 12px;
    gap: 12px;
  }
}
