.elementor-386 .elementor-element.elementor-element-a24c0d2{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-386 .elementor-element.elementor-element-a24c0d2:not(.elementor-motion-effects-element-type-background), .elementor-386 .elementor-element.elementor-element-a24c0d2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-386 .elementor-element.elementor-element-c7af93c{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:60px;--margin-bottom:60px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-386 .elementor-element.elementor-element-e4215ce{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--gap:0px 25px;--row-gap:0px;--column-gap:25px;--border-radius:15px 15px 15px 15px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:60px;--padding-bottom:60px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-386 .elementor-element.elementor-element-c7af93c{--width:90%;}.elementor-386 .elementor-element.elementor-element-e4215ce{--width:100%;}}/* Start custom CSS for shortcode, class: .elementor-element-55dcd14 */.custom-address-page {
  display: flex;
  width: 90vw;
  gap: 40px;
  background-color: #000;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  padding: 40px;
  border-radius: 12px;
}

/* Left panel - saved addresses */
.address-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 16px 20px;
  transition: 0.3s;
  margin: 10px 0 !important;
}

.address-card:hover {
  border-color: #c09d35;
  box-shadow: 0 0 8px #c09d35;
}

.address-card .icon {
  font-size: 1.4em;
  background: #202020;
  border-radius: 50%;
  padding: 12px;
  margin-right: 5px;
}

.address-details h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0;
}

.address-details p {
  font-size: 13px;
  color: #bbb;
  margin: 2px 0 0;
}

.edit-address {
    background-color: transparent !important;
    border: 1px solid #c09d35 !important;
    border-radius: 3px !important;
    color: #c09d35 !important;
    display: inline-block !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    padding: .5rem 1rem !important;
    text-align: center !important;
    transition: all .3s !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
    white-space: nowrap !important;
    margin-top: 10px !important;
    width: 100% !important;
}

.delete-addr {
    background-color: transparent !important;
    border: 1px solid #c09d35 !important;
    border-radius: 3px !important;
    color: #c09d35 !important;
    display: inline-block !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    padding: .5rem 1rem !important;
    text-align: center !important;
    transition: all .3s !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
    white-space: nowrap !important;
    margin-top: 10px !important;
    width: 100% !important;
}

.edit-btn {
  background: none;
  border: none;
  color: #c09d35;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Right panel - form and static map */
.address-form-section {
  flex: 2.5;
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #333;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c09d35;
  font-weight: 500;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.3);
}

/* Form styling */
.custom-address-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.custom-address-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: #ccc;
}

.custom-address-form input {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  transition: 0.3s;
}

.custom-address-form input:focus {
  outline: none;
  border-color: #c09d35;
  box-shadow: 0 0 6px #c09d35;
}

.label-buttons {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.label-buttons button {
  flex: 1;
  padding: 10px 12px;
  background: #222;
  border: 1px solid #444;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

/*.label-buttons button.active*/

.label-buttons button:hover {
  background: #681B2B;
  color: #ffffff;
}

.save-btn {
    width: 100% !important;
  background: #c09d35;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.save-btn:hover {
    background: #c09d35;
  box-shadow: 0 0 8px #681B2B;
}




/* ================================
   📱 MOBILE UI (Matches Your Image)
   ================================ */

@media (max-width: 768px) {

  /* Map container exactly like the screenshot */
  .map-placeholder {
    height: 350px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: none;
  }

  .map-placeholder img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.85);
  }

  .map-overlay {
    font-size: 1rem;
  }

  /* Switch to vertical form layout */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Inputs full width, rounded, like mockup */
  .custom-address-form input {
    font-size: 15px;
    padding: 14px 16px;
    background: #000;
    border: 1px solid #333;
    border-radius: 10px;
  }

  .custom-address-form label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  /* Label buttons (Home / Work / Other) */
  .label-buttons {
    flex-direction: row;
    justify-content: space-between;
  }

  .label-buttons button {
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
  }

  /* Save Button - full width & centered like mockup */
  .save-btn {
    width: 100%;
    padding: 14px 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    background: #c09d35;
  }
}



/*.address-actions {*/
/*    display: flex;*/
/*    gap: 8px;*/
/*    margin-top: 6px;*/
/*}*/

/*.address-actions button,*/
/*.address-actions a {*/
/*    background: none;*/
/*    border: none;*/
/*    color: #c09d35;*/
/*    cursor: pointer;*/
/*    font-size: 14px;*/
/*}*/

/*.address-card.active {*/
/*    border: 1px solid #c09d35;*/
/*    box-shadow: 0 0 10px rgba(192,157,53,.4);*/
/*}*/

/*.address-card.static {*/
/*    opacity: 0.85;*/
/*    pointer-events: none;*/
/*}*/

/*.empty-state {*/
/*    opacity: 0.6;*/
/*    font-size: 14px;*/
/*}*//* End custom CSS */