/* ==================================
   ADDRESS
================================== */

.address-section {
  min-height: 70vh;
}

.address-card {
  background: white;

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  border: 1px solid rgba(200, 155, 60, 0.15);
}

.address-card label {
  font-weight: 500;

  margin-bottom: 7px;

  display: block;
}

.address-card input,
.address-card textarea {
  width: 100%;

  padding: 12px 15px;

  border: 1px solid var(--border);

  border-radius: 10px;

  outline: none;

  transition: 0.3s;
}

.address-card input:focus,
.address-card textarea:focus {
  border-color: var(--gold);

  box-shadow: 0 0 0 0.2rem rgba(200, 155, 60, 0.2);
}

.location-btn {
  background: white;

  color: var(--gold);

  border: 2px solid var(--gold);

  border-radius: 30px;

  font-weight: 600;

  padding: 10px;

  transition: 0.3s;
}

.location-btn:hover {
  background: var(--gold);

  color: white;
}

@media (max-width: 768px) {
  .address-card {
    padding: 25px;
  }
}
.address-box {
  background: var(--bg-main);

  padding: 20px;

  border-radius: 12px;

  border: 1px solid var(--border);
}

.address-box h6 {
  color: var(--gold);

  font-weight: 600;
}

.address-box p {
  margin-bottom: 5px;

  color: var(--gray);
}
/* address.html */
.saved-address {
  background: white;

  padding: 25px;

  border-radius: 18px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  height: 100%;

  border: 1px solid rgba(200, 155, 60, 0.15);
}

.address-header {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 15px;
}

.address-header i {
  color: var(--gold);

  font-size: 1.3rem;
}

.address-header h5 {
  margin: 0;

  font-weight: 600;
}

.saved-address p {
  color: var(--gray);

  margin-bottom: 8px;
}

.address-actions {
  margin-top: 20px;

  display: flex;

  gap: 10px;
}

@media (max-width: 768px) {
  .address-page h2 {
    font-size: 1.5rem;
  }
}
