/* Clean up default Woo address box */
.woocommerce-customer-details address{
	display: none;
  
}

/* Headings inside the cards */
.woocommerce-customer-details .woocommerce-column__title,
.pickup-order-details h2{
	display: none;
}

/* Optional: unify spacing between these sections */
.woocommerce-order .woocommerce-customer-details{ margin-top: 24px; }

.woocommerce-result-count{
	display : none;
}

#table-view2 { display: none; }
#view-toggle-btn2 {
  padding: 8px 16px; margin-right: 8px; border: 1px solid #ccc; background: #f8f8f8; cursor: pointer;
}
#view-toggle-btn2.active{
  background: #037533; color: #fff; border-color: #037533;
}


/* Example: if a particular header column is overlapping the icon */
.your-header-overlay-selector { pointer-events: none; }

/* ---- Address form: modern look ---- */
.woocommerce-account .woocommerce-MyAccount-content {
	max-width: 920px;
	margin-inline: auto;
  }
  
  /* Card container */
  .woocommerce-account .woocommerce-MyAccount-content form {
	background: #fff;
	border: 1px solid rgba(0,0,0,.06);
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 6px 18px rgba(0,0,0,.06);
  }
  
  /* Two-column grid layout */
  .woocommerce-address-fields__field-wrapper {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0,1fr));
	gap: 18px;
  }
  
  /* Make these fields full width */
  .woocommerce-address-fields__field-wrapper
	#shipping_country_field,
	#shipping_address_1_field,
	#shipping_address_2_field { grid-column: 1 / -1; }
  
  /* Inputs */
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row select,
  .woocommerce form .form-row textarea {
	width: 100%;
	border: 1px solid #E4E6EB;
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 15px;
	background: #fafafa;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }
  
  /* Labels */
  .woocommerce form .form-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: #2a2d34;
	letter-spacing: .2px;
  }
  
  /* Focus state */
  .woocommerce form .form-row input:focus,
  .woocommerce form .form-row select:focus,
  .woocommerce form .form-row textarea:focus {
	background: #fff;
	border-color: #6ad19e;         /* accent */
	box-shadow: 0 0 0 4px rgba(106, 209, 158, .18);
	outline: 0;
  }
  
  /* Error state */
  .woocommerce form .form-row.woocommerce-invalid input,
  .woocommerce form .form-row.woocommerce-invalid select,
  .woocommerce form .form-row.woocommerce-invalid textarea {
	border-color: #e65a5a;
	box-shadow: 0 0 0 4px rgba(230, 90, 90, .15);
  }
  
  /* Save button */
  .woocommerce-account .woocommerce-MyAccount-content .button {
	border: 0;
	border-radius: 999px;
	padding: 12px 20px;
	font-weight: 700;
	background: #2d8f6f;           /* primary */
	color: #fff;
	transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  }
  .woocommerce-account .woocommerce-MyAccount-content .button:hover {
	background: #267b60;
	box-shadow: 0 8px 20px rgba(45,143,111,.25);
  }
  .woocommerce-account .woocommerce-MyAccount-content .button:active {
	transform: translateY(1px);
  }
  
  /* Headline spacing */
  .woocommerce-account .woocommerce-MyAccount-content h3,
  .woocommerce-account .woocommerce-MyAccount-content h2 {
	margin-bottom: 18px;
  }
  
  /* Mobile: single column */
  @media (max-width: 720px) {
	.woocommerce-address-fields__field-wrapper { grid-template-columns: 1fr; }
	.woocommerce-account .woocommerce-MyAccount-content form { padding: 18px; }
  }
  
/* === My Account → Addresses (display view) === */
/* Container width */
.woocommerce-account .woocommerce-MyAccount-content {
	max-width: 920px;
	margin-inline: auto;
  }
  
  /* Card look for the Shipping address block */
  .woocommerce-Addresses .woocommerce-Address {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,.06);
	border-radius: 16px;
	padding: 22px 22px 18px;
	box-shadow: 0 6px 18px rgba(0,0,0,.06);
	position: relative;
  }
  
  /* Title row: “Shipping address” + Edit link */
  .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
  }
  
  /* Title text */
  .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h3 {
	font-size: 22px;
	line-height: 1.2;
	font-weight: 800;
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
  }
  
  /* Add a subtle icon before the title (Dashicons font is loaded by WP) */
  .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h3::before {
	content: "\f230";                /* dashicons-location */
	font: normal 20px/1 dashicons;
	display: inline-block;
	transform: translateY(1px);
	opacity: .8;
  }
  
  /* “Edit Shipping address” link → pill button */
  .woocommerce-Addresses .woocommerce-Address .edit,
  .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #2d8f6f;            /* primary */
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	line-height: 1;
	border: 0;
	box-shadow: 0 6px 14px rgba(45,143,111,.22);
	transition: background .2s ease, transform .08s ease, box-shadow .2s ease;
  }
  .woocommerce-Addresses .woocommerce-Address .edit:hover {
	background: #267b60;
	box-shadow: 0 10px 22px rgba(45,143,111,.28);
  }
  .woocommerce-Addresses .woocommerce-Address .edit:active {
	transform: translateY(1px);
  }
  
  /* Address text block */
  .woocommerce-Addresses .woocommerce-Address address {
	margin: 6px 0 0;
	font-size: 16px;
	line-height: 1.6;
	color: #2a2d34;
	white-space: pre-line;           /* keep each line tidy */
  }
  
  /* Make lines breathe a bit */
  .woocommerce-Addresses .woocommerce-Address address br {
	line-height: 1.1;
  }
  
  /* Optional subtle divider under title */
  .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title::after {
	content: "";
	display: block;
	height: 1px;
	background: linear-gradient(90deg, rgba(0,0,0,.06), rgba(0,0,0,0));
	margin-top: 12px;
  }
  
  /* Page lead paragraph above the title */
  .woocommerce-MyAccount-content > p:first-of-type {
	max-width: 70ch;
	color: #626770;
  }
  
  /* Mobile */
  @media (max-width: 720px) {
	.woocommerce-Addresses .woocommerce-Address {
	  padding: 18px;
	  border-radius: 14px;
	}
	.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h3 {
	  font-size: 20px;
	}
  }


/* Icon-only “Edit” pill */
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a,
.woocommerce-Addresses .woocommerce-Address .edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  background: #2d8f6f;
  color: #fff !important;
  text-decoration: none !important;
  border: 0;
  box-shadow: 0 6px 14px rgba(45,143,111,.22);
  transition: background .2s ease, transform .08s ease, box-shadow .2s ease;
  font-size: 0;               /* visually hide the text */
}

/* Show a pencil (Dashicons “edit”) */
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a::before,
.woocommerce-Addresses .woocommerce-Address .edit::before {
  content: "\f464";           /* dashicons-edit */
  font: normal 20px/1 dashicons;
  color: #fff;
}

/* Hover/focus/active states */
.woocommerce-Addresses .woocommerce-Address .edit:hover,
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a:hover {
  background: #267b60;
  box-shadow: 0 10px 22px rgba(45,143,111,.28);
}
.woocommerce-Addresses .woocommerce-Address .edit:focus,
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(106,209,158,.28);
}
.woocommerce-Addresses .woocommerce-Address .edit:active,
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a:active {
  transform: translateY(1px);
}
  

