/**
 * WooCommerce My Account Page Styles
 * Modern, cool styling for the My Account page - Horizontal Navigation
 */

@import url("https://fonts.googleapis.com/css2?family=Days+One&display=swap");

.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce::before {
  content: unset !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
}

/* Main Container */
.woocommerce-MyAccount-navigation {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin-bottom: 30px;
  overflow: hidden;
}

/* Navigation List - Horizontal */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
}

/* Navigation Links - Horizontal Layout */
.woocommerce-MyAccount-navigation-link {
  margin: 0;
  border-bottom: none;
  border-right: 1px solid #f0f0f0;
  border-top: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 120px;
}

.woocommerce-MyAccount-navigation-link:last-child {
  border-right: none;
}

.woocommerce-MyAccount-navigation-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-left: none;
  text-align: center;
}

/* Hide icons - remove ::before content */
.woocommerce-MyAccount-navigation-link a::before {
  display: none;
}

.woocommerce-MyAccount-navigation-link a::after {
  display: none; /* Hide arrow for horizontal layout */
}

/* Top border indicator for horizontal nav */
.woocommerce-MyAccount-navigation-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: #0071bd;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.woocommerce-MyAccount-navigation-link a br {
  display: none;
}

.woocommerce-MyAccount-navigation-link--downloads {
  display: none;
}

/* Hover State - Horizontal */
.woocommerce-MyAccount-navigation-link:hover,
.woocommerce-MyAccount-navigation-link:focus-within {
  background: linear-gradient(to bottom, rgba(0, 113, 189, 0.05), transparent);
}

.woocommerce-MyAccount-navigation-link:hover a,
.woocommerce-MyAccount-navigation-link:focus-within a {
  color: #0071bd;
}

.woocommerce-MyAccount-navigation-link:hover::after,
.woocommerce-MyAccount-navigation-link:focus-within::after {
  transform: scaleX(1);
}

/* Active State - Horizontal */
.woocommerce-MyAccount-navigation-link.is-active {
  background: linear-gradient(to bottom, rgba(0, 113, 189, 0.08), transparent);
}

.woocommerce-MyAccount-navigation-link.is-active a {
  color: #0071bd;
  font-weight: 600;
}

.woocommerce-MyAccount-navigation-link.is-active::after {
  transform: scaleX(1);
}

/* Logout Link - Special Styling - Horizontal */
.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #eb1b24;
}

.woocommerce-MyAccount-navigation-link--customer-logout::after {
  background: #eb1b24;
}

.woocommerce-MyAccount-navigation-link--customer-logout:hover,
.woocommerce-MyAccount-navigation-link--customer-logout:focus-within {
  background: linear-gradient(to bottom, #eb1b24, rgba(235, 27, 36, 0.1));
}

.woocommerce-MyAccount-navigation-link--customer-logout:hover a,
.woocommerce-MyAccount-navigation-link--customer-logout:focus-within a {
  color: #fff;
}

/* Content Area */
.woocommerce-MyAccount-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 30px;
  min-height: 400px;
}

/* Info Messages */
.woocommerce-info,
.shopengine-woocommerce-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  border-left: 4px solid #0071bd;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 0 0 20px 0;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.woocommerce-info a,
.shopengine-woocommerce-info a {
  color: #0071bd;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.woocommerce-info a:hover,
.shopengine-woocommerce-info a:hover {
  color: #eb1b24;
  text-decoration: underline;
}

/* Button in Info Messages */
.woocommerce-info .button,
.shopengine-woocommerce-info .button {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 24px;
  background: #0071bd;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 113, 189, 0.2);
}

.woocommerce-info .button:hover,
.shopengine-woocommerce-info .button:hover {
  background: #eb1b24;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(235, 27, 36, 0.3);
}

.woocommerce-info .button:active,
.shopengine-woocommerce-info .button:active {
  transform: translateY(0);
}

/* Responsive Design - Horizontal Nav */
@media (min-width: 768px) {
  .woocommerce {
    display: block;
  }

  .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
  }

  .woocommerce-MyAccount-navigation ul {
    justify-content: space-around;
  }

  .woocommerce-MyAccount-navigation-link {
    flex: 1 1 0;
  }
}

@media (max-width: 767px) {
  .woocommerce-MyAccount-navigation {
    margin-bottom: 20px;
  }

  .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
  }

  .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
    display: none;
  }

  .woocommerce-MyAccount-navigation-link {
    border-right: 1px solid #f0f0f0;
    flex-shrink: 0;
    min-width: 100px;
  }

  .woocommerce-MyAccount-navigation-link:last-child {
    border-right: none;
  }

  .woocommerce-MyAccount-navigation-link a {
    padding: 14px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .woocommerce-MyAccount-content {
    padding: 20px;
  }
}

/* Smooth Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.woocommerce-MyAccount-content {
  animation: slideIn 0.4s ease-out;
}

/* Additional Modern Touches */
.woocommerce-MyAccount-navigation-link a:focus {
  outline: 2px solid #0071bd;
  outline-offset: -2px;
  border-radius: 4px;
}

/* Wishlist Table Styles */
table.shopengine-wishlist {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.shopengine-wishlist thead {
  background: linear-gradient(135deg, #0071bd 0%, #005a94 100%);
}

.shopengine-wishlist thead th {
  padding: 16px 20px;
  text-align: left;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.shopengine-wishlist thead th:last-child {
  border-right: none;
}

.shopengine-wishlist tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.shopengine-wishlist tbody tr:last-child {
  border-bottom: none;
}

.shopengine-wishlist tbody tr:hover {
  background: linear-gradient(to right, rgba(0, 113, 189, 0.03), transparent);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.shopengine-wishlist tbody td {
  padding: 20px;
  vertical-align: middle;
  border: none;
  border-right: 1px solid #f0f0f0;
  color: #333;
  font-size: 15px;
}

.shopengine-wishlist tbody td:last-child {
  border-right: none;
}

/* Product Image */
.shopengine-wishlist-product-image {
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}

.shopengine-wishlist-product-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 5px;
  background: #fff;
  transition: all 0.3s ease;
}

.shopengine-wishlist tbody tr:hover .shopengine-wishlist-product-image img {
  border-color: #0071bd;
  box-shadow: 0 2px 8px rgba(0, 113, 189, 0.2);
  transform: scale(1.05);
}

/* Product Name */
.wishlist-product-name {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.wishlist-product-name a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  display: inline-block;
  line-height: 1.4;
}

.wishlist-product-name a:hover {
  color: #0071bd;
  text-decoration: underline;
}

/* Product Image and Name Container */
.shopengine-wishlist tbody td:first-child {
  display: flex;
  align-items: center;
  gap: 15px;
}

.shopengine-wishlist-product-image br,
.wishlist-product-name br {
  display: none;
}

/* Price Styling */
.shopengine-wishlist .woocommerce-Price-amount {
  font-weight: 600;
  color: #0071bd;
  font-size: 16px;
}

.shopengine-wishlist .woocommerce-Price-currencySymbol {
  font-weight: 600;
  margin-right: 2px;
}

/* Stock Status */
.shopengine-wishlist tbody td:nth-child(3) {
  font-weight: 500;
}

.shopengine-wishlist tbody td:nth-child(3):contains("In Stock"),
.shopengine-wishlist tbody td:nth-child(3) {
  position: relative;
  color: #28a745;
}

/* Stock Status Badge */
.shopengine-wishlist tbody td:nth-child(3) {
  padding-left: 30px;
}

/* Out of Stock Indicator */
.shopengine-wishlist tbody td:nth-child(3):contains("Out of Stock") {
  color: #dc3545;
}

/* Remove Action Button */
.shopengine-remove-action,
.remove-badge,
.remove-from-wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #dc3545;
  border: 1px solid #e0e0e0;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}

.shopengine-remove-action:hover,
.remove-badge:hover,
.remove-from-wishlist:hover {
  background: #eb1b24;
  color: #fff;
  border-color: #eb1b24;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 2px 8px rgba(235, 27, 36, 0.3);
}

.shopengine-remove-action:active,
.remove-badge:active,
.remove-from-wishlist:active {
  transform: rotate(90deg) scale(0.95);
}

/* Responsive Design for Wishlist Table */
@media (max-width: 768px) {
  .shopengine-wishlist {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shopengine-wishlist thead {
    display: none;
  }

  .shopengine-wishlist tbody {
    display: block;
  }

  .shopengine-wishlist tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .shopengine-wishlist tbody td {
    display: block;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
  }

  .shopengine-wishlist tbody td:last-child {
    border-bottom: none;
    text-align: center;
    padding-top: 15px;
  }

  .shopengine-wishlist tbody td:first-child {
    display: block;
  }

  .shopengine-wishlist tbody td::before {
    content: attr(data-label) ": ";
    font-weight: 600;
    color: #0071bd;
    margin-right: 8px;
  }

  .shopengine-wishlist-product-image {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .wishlist-product-name {
    display: block;
    width: 100%;
  }
}

/* Alternative: Keep table layout on mobile but make it scrollable */
@media (max-width: 767px) {
  .shopengine-wishlist {
    font-size: 14px;
  }

  .shopengine-wishlist thead th {
    padding: 12px 10px;
    font-size: 13px;
  }

  .shopengine-wishlist tbody td {
    padding: 15px 10px;
    font-size: 14px;
  }

  .shopengine-wishlist-product-image img {
    width: 60px;
    height: 60px;
  }

  .wishlist-product-name a {
    font-size: 14px;
  }
}

/* Empty Wishlist Message */
.shopengine-wishlist:empty::after {
  content: "Your wishlist is empty.";
  display: block;
  padding: 40px;
  text-align: center;
  color: #999;
  font-size: 16px;
}

/* No table borders on mobile card view */
@media (max-width: 768px) {
  .shopengine-wishlist tbody tr {
    border: 1px solid #e0e0e0;
  }
}

/* ============================================
    Order Received / Thank You Page Styles
    ============================================ */

/* Page Header */
.woocommerce-order-received {
  #content {
    max-width: 100%;
  }

  .page-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 45vh;
    margin-top: -75px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    background-color: transparent;
    background-image: linear-gradient(
      180deg,
      var(--e-global-color-2b3031c) 0%,
      #f6f7fb 100%
    );
  }

  .page-header .entry-title {
    color: #ffffff;
    margin: 0px 0px 0px 0px;
    font-family: "Days One", Sans-serif;
    font-size: 56px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
  }

  /* Page Content Container */
  .page-content {
    max-width: 1200px;
    margin: 20px auto;
  }

  /* WooCommerce Order Container */
  .woocommerce-order {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 40px 10px;
    margin-bottom: 30px;
  }

  .woocommerce ul.order_details::after,
  .woocommerce ul.order_details::before,
  .woocommerce .col2-set::after,
  .woocommerce .col2-set::before,
  .woocommerce-page .col2-set::after,
  .woocommerce-page .col2-set::before {
    content: unset !important;
  }

  /* Success Notice */
  .woocommerce-notice.woocommerce-notice--success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: none;
    border-left: 4px solid #28a745;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 0 0 30px 0;
    color: #155724;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .woocommerce-notice.woocommerce-notice--success::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
  }

  /* Order Overview List */
  .woocommerce-order-overview {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .woocommerce-order-overview li {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 3px solid #0071bd;
    float: none !important;
    margin-right: 0 !important;
    text-transform: uppercase;
    font-size: 0.715em;
    line-height: 1;
    border-right: 0 !important;
    padding-right: 20px !important;
    margin-left: 0 !important;
    padding-left: 20px !important;
    list-style-type: none !important;
  }

  .woocommerce-order-overview li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  }

  .woocommerce-order-overview li::before {
    display: none;
  }

  .woocommerce-order-overview li strong {
    font-size: 18px;
    font-weight: 600;
    color: #0071bd;
    margin-top: 4px;
  }

  .woocommerce-order-overview__order,
  .woocommerce-order-overview__date,
  .woocommerce-order-overview__email,
  .woocommerce-order-overview__total,
  .woocommerce-order-overview__payment-method {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  .woocommerce-order-overview__total {
    border-left-color: #28a745;
  }

  .woocommerce-order-overview__total strong {
    color: #28a745;
    font-size: 20px;
  }

  .woocommerce-order-overview__payment-method {
    border-left-color: #eb1b24;
  }

  .woocommerce-order-overview__payment-method strong {
    color: #eb1b24;
  }

  /* Payment Method Notice */
  .woocommerce-order > p:not(.woocommerce-notice) {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: none;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0 0 30px 0;
    color: #856404;
    font-size: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  /* Order Details Section */
  .woocommerce-order-details {
    margin-bottom: 40px;
  }

  .woocommerce-order-details__title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .woocommerce-order-details__title::before {
    content: "";
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #0071bd 0%, #005a94 100%);
    border-radius: 2px;
  }

  /* Order Details Table */
  .woocommerce-table--order-details {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
  }

  .woocommerce-table--order-details thead {
    background: linear-gradient(135deg, #0071bd 0%, #005a94 100%);
  }

  .woocommerce-table--order-details thead th {
    padding: 18px 24px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .woocommerce-table--order-details thead th:last-child {
    border-right: none;
    text-align: right;
  }

  .woocommerce-table--order-details tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
  }

  .woocommerce-table--order-details tbody tr:last-child {
    border-bottom: none;
  }

  .woocommerce-table--order-details tbody tr:hover {
    background: linear-gradient(to right, rgba(0, 113, 189, 0.03), transparent);
  }

  .woocommerce-table--order-details tbody td {
    padding: 20px 24px;
    vertical-align: middle;
    border: none;
    color: #333;
    font-size: 15px;
  }

  .woocommerce-table--order-details tbody td:last-child {
    text-align: right;
  }

  .woocommerce-table--order-details tbody td a {
    color: #0071bd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .woocommerce-table--order-details tbody td a:hover {
    color: #eb1b24;
    text-decoration: underline;
  }

  .woocommerce-table--order-details .product-quantity {
    color: #666;
    font-weight: 400;
    font-size: 14px;
    margin-left: 8px;
  }

  /* Table Footer (Totals) */
  .woocommerce-table--order-details tfoot {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .woocommerce-table--order-details tfoot tr {
    border-bottom: 1px solid #e0e0e0;
  }

  .woocommerce-table--order-details tfoot tr:last-child {
    border-bottom: none;
    background: linear-gradient(135deg, #0071bd 0%, #005a94 100%);
  }

  .woocommerce-table--order-details tfoot tr:last-child th,
  .woocommerce-table--order-details tfoot tr:last-child td {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 20px 24px;
  }

  .woocommerce-table--order-details tfoot th {
    padding: 16px 24px;
    text-align: left;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    border: none;
  }

  .woocommerce-table--order-details tfoot td {
    padding: 16px 24px;
    text-align: right;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    border: none;
  }

  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1,
  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-2 {
    width: 100% !important;
  }

  .woocommerce-table--order-details tfoot .woocommerce-Price-amount {
    color: #0071bd;
    font-weight: 600;
  }

  .woocommerce-table--order-details
    tfoot
    tr:last-child
    .woocommerce-Price-amount {
    color: #fff;
  }

  .woocommerce-table--order-details tfoot .shipped_via {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    margin-left: 8px;
  }

  /* Customer Details Section */
  .woocommerce-customer-details {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-top: 30px;
  }

  .woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 25px;
  }

  .woocommerce-column__title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .woocommerce-column__title::before {
    content: "";
    width: 3px;
    height: 20px;
    background: linear-gradient(135deg, #0071bd 0%, #005a94 100%);
    border-radius: 2px;
  }

  .woocommerce-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .woocommerce-column address {
    font-style: normal;
    line-height: 1.8;
    color: #333;
    font-size: 15px;
    margin: 0;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .woocommerce-column address br {
    display: block;
    margin: 4px 0;
  }

  .woocommerce-customer-details--phone,
  .woocommerce-customer-details--email {
    margin: 12px 0 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0071bd;
    font-weight: 500;
  }

  .woocommerce-customer-details--phone::before {
    content: "📞";
    font-size: 16px;
  }

  .woocommerce-customer-details--email::before {
    content: "✉";
    font-size: 16px;
  }

  @media (max-width: 1024px) {
    #content {
      max-width: 100%;
      padding-inline-end: 0 !important;
      padding-inline-start: 0 !important;
    }

    .page-header {
      min-height: 25vh;
      margin-top: -70px;
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .page-header {
      min-height: 25vh;
      margin-top: -56px;
    }

    .woocommerce-order {
      padding: 25px 20px;
    }

    .page-header .entry-title {
      font-size: 26px;
    }

    .woocommerce-order-overview {
      grid-template-columns: 1fr;
      padding: 20px;
    }

    .woocommerce-order-overview li {
      padding: 16px;
    }

    .woocommerce-table--order-details {
      display: block;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .woocommerce-table--order-details thead th,
    .woocommerce-table--order-details tbody td,
    .woocommerce-table--order-details tfoot th,
    .woocommerce-table--order-details tfoot td {
      padding: 12px 16px;
      font-size: 14px;
    }

    .woocommerce-columns--addresses {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .woocommerce-customer-details {
      padding: 25px 20px;
    }
  }

  @media (max-width: 480px) {
    .woocommerce-order {
      padding: 20px 15px;
    }

    .woocommerce-notice.woocommerce-notice--success {
      padding: 16px 20px;
      font-size: 14px;
    }

    .woocommerce-order-overview {
      padding: 15px;
    }

    .woocommerce-order-overview li {
      padding: 14px;
    }

    .woocommerce-order-overview li strong {
      font-size: 16px;
    }

    .woocommerce-order-details__title,
    .woocommerce-column__title {
      font-size: 18px;
    }
  }
}
