/* Header */
.edu-products-header {
  /* text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px; */
}

.page-title {
  /* font-size: 42px;
    font-weight: 500;
    margin: 0 0 30px 0;
    color: #1e3a8a; */
}

/* Toolbar */
.edu-toolbar {
  /* display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px; */
}

.edu-filters .filter-btn {
  /* padding: 10px 22px;
    border-radius: 10px;
    border: 1px solid #e6e6ff;
    margin-right: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer; */
}

/* .edu-filters .filter-btn:hover {
    border-color: #fde2df;
    background: rgba(253, 226, 223, 0.5);
} */

.edu-filters .active {
  /* background: #fde2df;
    border-color: transparent;
    color: #d32f2f;
    font-weight: 600; */
}

/* Search */
.edu-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.edu-search input {
  /* padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid #e6e6ff;
    font-size: 14px;
    transition: border-color 0.3s ease;
    flex: 1;
    min-width: 200px; */
}

.edu-search input:focus {
  /* outline: none;
    border-color: #1e3a8a; */
}

.edu-search .search-submit {
  /* padding: 10px 16px;
    background: #1e3a8a;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px; */
}

.edu-search .search-submit:hover {
  /* background: #152d7a;
    transform: translateY(-2px); */
}

.edu-search .search-submit svg {
  /* width: 18px;
    height: 18px; */
}

/* Product Grid */
.woocommerce ul.products {
  /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0;
    list-style: none;
    max-width: 1400px;
    margin: 0 auto; */
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  /* margin: 0; */
  /* float: none;
    padding: 0;
    position: relative;
    width: auto; */
}

/* Center pagination */
.woocommerce-pagination {
  /* display: flex;
    justify-content: center;
    margin: 60px 0;
    padding: 30px;
    width: 100%; */
}

/* Wishlist Popup */
.wp-wishlist-popup {
  /* ✅ THIS IS THE MISSING KEY */
  /* bump higher to beat theme */
  /* position: fixed; 
    z-index: 999999;
    display: block;
    min-width: 260px;
    max-width: 360px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    color: #222;
    overflow: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease;
    bottom: 20px;   
    right: 20px;   */
  /* fallback position */
  /* fallback position */
}
.wp-wishlist-popup {
  /* transform: translateY(10px); */
}
.wp-wishlist-popup[style] {
  /* transform: translateY(0); */
}
.wp-wishlist-popup-inner {
  /* padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: center; */
}

.wp-wishlist-close {
  /* position: absolute;
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    z-index: 2; */
}
.wp-wishlist-close:hover {
  color: #d32f2f;
}
.wp-wishlist-icon svg {
  width: 34px;
  height: 34px;
  color: #d32f2f;
}
.wp-wishlist-msg {
  flex: 1;
  font-size: 14px;
  color: #333;
  line-height: 1.2;
}
.wp-wishlist-actions {
  margin-left: 8px;
}
.wp-wishlist-view {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  background: #1e3a8a;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
/* .wp-wishlist-popup[style] { opacity: 1; } */

/* Sticky footer View Wishlist button */
.wp-wishlist-footer-btn {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 99999;
  padding: 12px 20px;
  background: #1e3a8a;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 600px) {
  .wp-wishlist-footer-btn {
    left: auto;
    right: 16px;
    transform: none;
  }
}

/* List reset */
.woocommerce-pagination ul.page-numbers {
  /* display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap; */
}

/* Page numbers & arrows */
.woocommerce-pagination .page-numbers {
  /* display: inline-block;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    padding: 10px 14px;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer; */
}

/* Hover */
.woocommerce-pagination a.page-numbers:hover {
  /* color: #fff;
    background: #1e3a8a;
    border-color: #1e3a8a; */
}

/* Active page */
.woocommerce-pagination .page-numbers.current {
  /* font-weight: 600;
    color: #1e3a8a;
    border : none !important;
    background: transparent !important; */
}

/* Arrow icons */
.woocommerce-pagination .prev,
.woocommerce-pagination .next {
  /* font-size: 16px;
    padding: 10px 14px; */
}
.woocommerce nav.woocommerce-pagination ul {
  /* border:none !important;
    gap:14px !important; */
}
.woocommerce-pagination a.prev:hover,
.woocommerce-pagination a.next:hover {
  /* color: #1e3a8a; */
}
.woocommerce nav.woocommerce-pagination ul li {
  /* border:none !important; */
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .woocommerce ul.products {
    /* grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1000px; */
  }
}

@media (max-width: 768px) {
  .woocommerce ul.products {
    /* grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px; */
  }

  .page-title {
    font-size: 32px;
  }

  .edu-toolbar {
    /* flex-direction: column;
        align-items: stretch; */
  }

  .edu-filters {
    /* display: flex;
        flex-wrap: wrap;
        gap: 10px; */
  }

  .edu-search input {
    width: 100%;
  }
}

/* Card */
.edu-product-card {
  /* background: #fff;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 400px; */
}

.edu-product-card:hover {
  /* transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); */
}

.card-image {
  /* margin-bottom: 20px;
    overflow: hidden; */
}

.card-image img {
  /* border-radius: 18px;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease; */
}

.card-image:hover img {
  /* transform: scale(1.05); */
}

.card-image a {
  display: block;
}

.card-content {
  /* flex-grow: 1;
    display: flex;
    flex-direction: column; */
}

.card-title {
  /* font-size: 20px;
    color: #1e3a8a;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.4; */
}

.card-desc {
  /* font-size: 14px;
    color: #777;
    margin: 0 0 15px 0;
    flex-grow: 1;
    line-height: 1.6; */
}

.card-price {
  /* font-size: 16px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px; */
}

/* Add to Cart Button */
.card-content a.button,
.card-content button.button {
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  background: #1e3a8a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  align-self: flex-start;
}

.card-content a.button:hover,
.card-content button.button:hover {
  background: #15288a;
  transform: translateX(2px);
}

.woocommerce-product-gallery {
  margin-bottom: 20px;
}


.woocommerce-form-coupon-toggle .woocommerce-info {
  border-radius: 12px;
  margin: 0px !important;
  padding-top: 0px !important;
  padding-bottom: 10px !important;
}

.woocommerce-info::before {
  position: absolute;
  top: 0 !important;
}

.woocommerce-error {
  border-radius: 12px;
  margin-bottom: 20px;
}

.wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #f5f5f5;
  border: 2px solid #e6e6ff;
  border-radius: 8px;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.wishlist-btn:hover {
  background: #fde2df;
  border-color: #d32f2f;
  color: #d32f2f;
  transform: translateX(2px);
}

.wishlist-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.wishlist-btn.added {
  background: #fde2df;
  border-color: #d32f2f;
  color: #d32f2f;
}

.wishlist-btn.added svg {
  fill: currentColor;
}

.yith-wcwl-add-to-wishlist {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #e6e6ff;
  border-bottom: 1px solid #e6e6ff;
}

.yith-wcwl-add-to-wishlist a,
.yith-wcwl-add-to-wishlist button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #f5f5f5;
  border: 2px solid #e6e6ff;
  border-radius: 8px;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.yith-wcwl-add-to-wishlist a:hover,
.yith-wcwl-add-to-wishlist button:hover {
  background: #fde2df;
  border-color: #d32f2f;
  color: #d32f2f;
  transform: translateX(2px);
}

.yith-wcwl-add-to-wishlist.in-wishlist a,
.yith-wcwl-add-to-wishlist.in-wishlist button {
  background: #fde2df;
  border-color: #d32f2f;
  color: #d32f2f;
}

/* Wishlist Page */
.wishlist-page-wrapper {
  background: #fafafa;
  padding: 40px 20px;
  min-height: 60vh;
}

.wishlist-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wishlist-no-plugin {
  text-align: center;
  padding: 40px;
  color: #666;
  background: #f5f5f5;
  border-radius: 8px;
}

/* YITH Wishlist Table Styling */
.yith-wcwl-wishlist-table {
  width: 100%;
  border-collapse: collapse;
}

.yith-wcwl-wishlist-table th,
.wishlist_table thead tr th {
  background: transparent;
  color: #373737;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
}

.yith-wcwl-wishlist-table td {
  padding: 15px;
  border-bottom: 1px solid #e6e6ff;
  vertical-align: middle;
}

.yith-wcwl-wishlist-table tr:hover {
  background: #f9f9f9;
}

.yith-wcwl-wishlist-table .product-name a {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.yith-wcwl-wishlist-table .product-name a:hover {
  color: #d32f2f;
}

.yith-wcwl-wishlist-table .product-price {
  color: #d32f2f;
  font-weight: 600;
}

.wishlist_table .product-add-to-cart a {
  display: inline-block !important;
}

.yith-wcwl-wishlist-table .add-to-cart-button,
.wishlist_table .product-add-to-cart .button,
.wishlist_table td.product-add-to-cart > a {
  /* display: inline-block;
    padding: 10px 30px !important;
    background: linear-gradient(90deg, #6A0E81 0%, #A236BD 100%);
    color: white !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-primary, sans-serif);
    cursor: pointer; */
}

.yith-wcwl-wishlist-table .add-to-cart-button:hover,
.wishlist_table .product-add-to-cart .button:hover,
.wishlist_table td.product-add-to-cart > a:hover {
  /* background: linear-gradient(90deg, #A236BD 0%, #C057CE 100%);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(162, 54, 189, 0.4); */
}

.yith-wcwl-wishlist-table .remove-item,
.wishlist_table .remove-item {
  color: #d32f2f;
  cursor: pointer;
  font-size: 16px;
}

.wishlist_table tr td {
  text-align: left;
}

/* Custom Remove Icon Styling */
.wishlist_table .remove_from_wishlist,
.yith-wcwl-wishlist-table .remove_from_wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wishlist_table .remove_from_wishlist svg,
.yith-wcwl-wishlist-table .remove_from_wishlist svg {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.wishlist_table .remove_from_wishlist:hover svg path,
.yith-wcwl-wishlist-table .remove_from_wishlist:hover svg path {
  stroke: #ff5757;
}

.wishlist_table .remove_from_wishlist.custom-remove-icon,
.yith-wcwl-wishlist-table .remove_from_wishlist.custom-remove-icon {
  font-size: 0;
  line-height: 0;
}

/* Hide original × symbol */
.wishlist_table .remove_from_wishlist:not(.custom-remove-icon),
.yith-wcwl-wishlist-table .remove_from_wishlist:not(.custom-remove-icon) {
  font-size: 20px;
  font-weight: 300;
  color: #373737;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.3s ease;
}

.wishlist_table .remove_from_wishlist:not(.custom-remove-icon):hover,
.yith-wcwl-wishlist-table .remove_from_wishlist:not(.custom-remove-icon):hover {
  color: #ff5757;
}

/* Empty Wishlist - Custom UI */
.empty-wishlist-container {
  /* padding: 20px 0; */
}

.empty-wishlist-message {
  /* font-size: 16px;
    color: #706971;
    line-height: 160%;
    margin: 0 0 20px;
    font-weight: normal;
    font-family: var(--font-primary, sans-serif);
    padding-left: 20px; */
}

.empty-wishlist-button {
  /* display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #6A0E81 0%, #A236BD 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-primary, sans-serif);
    margin-left: 20px;
    cursor: pointer; */
}

.empty-wishlist-button:hover {
  /* background: linear-gradient(90deg, #A236BD 0%, #C057CE 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(162, 54, 189, 0.4); */
}

/* Hide default YITH empty message when custom UI is shown */
.empty-wishlist-container ~ .yith-wcwl-empty-wishlist,
.empty-wishlist-container ~ .wishlist-empty,
.wishlist-content:has(.empty-wishlist-container) .yith-wcwl-empty-wishlist,
.wishlist-content:has(.empty-wishlist-container) .wishlist-empty {
  display: none;
}

/* YITH Default Empty Wishlist (fallback - when custom UI not used) */
.yith-wcwl-empty-wishlist:not(.empty-wishlist-container ~ *),
.wishlist-empty:not(.empty-wishlist-container ~ *) {
  text-align: center;
  padding: 60px 20px;
}

.yith-wcwl-empty-wishlist:not(.empty-wishlist-container ~ *) p,
.wishlist-empty:not(.empty-wishlist-container ~ *) {
  font-size: 16px;
  color: #706971;
  margin-bottom: 20px;
  line-height: 160%;
}

.yith-wcwl-empty-wishlist:not(.empty-wishlist-container ~ *) a {
  display: inline-block;
  padding: 12px 32px;
  background: #254570;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid #254570;
}

.yith-wcwl-empty-wishlist:not(.empty-wishlist-container ~ *) a:hover {
  background: #a236bd;
  border-color: #a236bd;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(162, 54, 189, 0.3);
}

/* Table empty state styling */
.yith-wcwl-wishlist-table .wishlist-empty {
  text-align: center;
  padding: 60px 20px;
  background: transparent;
}

.yith-wcwl-wishlist-table .wishlist-empty td {
  border: none;
  padding: 60px 20px;
}

/* Wishlist Share Options */
.yith-wcwl-wishlist-share {
  margin-top: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #1e3a8a;
}

.yith-wcwl-wishlist-share h3 {
  font-size: 14px;
  color: #1e3a8a;
  margin-bottom: 10px;
  font-weight: 600;
}

.yith-wcwl-wishlist-share a {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 8px 14px;
  background: white;
  border: 1px solid #e6e6ff;
  border-radius: 6px;
  color: #1e3a8a;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.yith-wcwl-wishlist-share a:hover {
  background: #1e3a8a;
  color: white;
  border-color: #1e3a8a;
}

/* =====================================================
   Product Detail Layout - Gallery Left, Info Right
   ===================================================== */

.product-detail-layout {
  /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px; */
}

.product-gallery-section {
  width: 100%;
}

.product-gallery {
  width: 100%;
}

.product-info-section {
  width: 100%;
}

.product-header {
  margin-bottom: 30px;
}

.product-title {
  /* font-size: 32px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #1e3a8a; */
}

.product-rating {
  margin: 15px 0;
}

.product-price-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e6e6ff;
}

.product-summary {
  margin-bottom: 30px;
  color: #666;
  line-height: 1.6;
}

.product-add-to-cart {
  /* margin-bottom: 30px; */
}

.product-meta {
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.product-details-info {
  /* margin-bottom: 30px; */
}

.product-details-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
}

.product-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
}

.product-detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  min-width: 150px;
  flex-shrink: 0;
}

.detail-value {
  /* color: #666; */
  flex: 1;
  padding-left: 20px;
}

.product-wishlist {
  /* margin-bottom: 30px; */
}

.product-social-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-social-share .share-label {
  font-weight: 600;
  color: #333;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e6e6ff;
  text-decoration: none;
  color: #1e3a8a;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.social-link:hover {
  background: #1e3a8a;
  color: white;
  border-color: #1e3a8a;
}

/* Responsive */
@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-title {
    /* font-size: 24px; */
  }
}

.product-add-to-cart form.cart {
  /* display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%; */
}

/* Quantity box wrapper */
.product-add-to-cart .quantity {
  /* display: flex;
    border: 2px solid #e6ddff;
    border-radius: 6px;
    overflow: hidden; */
}

/* Minus / Plus buttons */
.product-add-to-cart .quantity button,
.product-add-to-cart .quantity .qty {
  /* padding: 0 12px;
    border: none;
    background: #fff;
    font-size: 20px;
    text-align: center; */
}

/* Quantity input */
.product-add-to-cart .quantity .qty {
  /* font-weight: 600;
    pointer-events: none; */
}

/* Add to cart button */
.product-add-to-cart button.single_add_to_cart_button {
  /* flex: 1;
    background: linear-gradient(90deg, #000, #222);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    border-radius: 6px;
    padding: 0 40px;
    border: none;
    text-transform: none; */
}

/* Hover effect */
.product-add-to-cart button.single_add_to_cart_button:hover {
  /* background: linear-gradient(90deg, #111, #333); */
}
.product-add-to-cart .quantity {
  /* display: flex;
    align-items: center;
    border:2px solid #e6ddff; */
}
.product-add-to-cart .quantity button.minus,
.product-add-to-cart .quantity button.plus {
  /* padding: 0 12px;
    font-size: 22px;
    border: none;
    background: #fff;
    cursor: pointer; */
}

.product-add-to-cart .quantity input.qty {
  /* padding:0 12px;
    text-align: center;
    border-left: 2px solid #e6ddff;
    border-right: 2px solid #e6ddff; */
}

.product-accordion {
  width: 100%;
  margin-top: 20px;
}

.accordion {
  /* background-color: #f1f1f1;
    color: #444;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:20px; */
}

.accordion:hover {
  /* background-color: #e2e2e2; */
}

.accordion.active {
  /* background-color: #ddd; */
}

.accordion .icon {
  /* font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s ease; */
}

.panel {
  /* padding: 0 20px 15px 20px;
    display: none;
    background-color: white;
    overflow: hidden;
    border-bottom: 1px solid #ddd; */
}

.event-title {
  display: flex;
  justify-content: center;
}
.date {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.event-image {
  display: flex;
  justify-content: center;
  width: 50%;
  height: 400px;
  margin: auto;
  margin-bottom: 25px;
}
.short-desc {
  display: flex;
  justify-content: center;
}
.course-content {
  display: flex;
  justify-content: center;
}
.event-info {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.event-details-info {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.product-social-share {
  display: flex;
  justify-content: center;
}

.event-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 16px;
}

.event-info-table th,
.event-info-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.event-info-table th {
  width: 35%;
  font-weight: 600;
  color: #333;
  background-color: #f8f8f8;
}

.event-info-table td {
  color: #555;
}

.enrol-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 60px 70px;

  background: #fdf9fb;
  border-radius: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Text area */
.enrol-section .text-area {
  max-width: 65%;
}

.enrol-section h2 {
  font-size: 42px;
  font-weight: 600;
  color: #1f3b6e;
  margin-bottom: 18px;
}

.enrol-section p {
  font-size: 18px;
  color: #6b6b6b;
  line-height: 1.7;
}

/* CTA button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 18px 34px;
  border-radius: 999px;

  background: linear-gradient(135deg, #ff6a5b, #ff3c7e);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(255, 60, 126, 0.35);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 60, 126, 0.45);
}

/* Responsive (mobile) */
@media (max-width: 768px) {
  .enrol-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .enrol-section .text-area {
    max-width: 100%;
  }
}

/* =====================================================
   My Account Dashboard Customization
   ===================================================== */

.woocommerce-dashboard-wrapper {
  /* max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0; */
}

.dashboard-welcome-section {
  /* margin-bottom: 2rem; */
}

.dashboard-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #333;
}

.dashboard-title .user-name {
  color: #0073aa;
}

.dashboard-subtitle {
  /* margin: 0;
    color: #666;
    font-size: 0.95rem; */
}

.dashboard-subtitle .logout-link {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dashboard-subtitle .logout-link:hover {
  color: #005177;
  text-decoration: underline;
}

.dashboard-content-section {
  /* margin-bottom: 2rem; */
}

.dashboard-description {
  /* font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0; */
}

.dashboard-description .dashboard-link {
  /* color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease; */
}

.dashboard-description .dashboard-link:hover {
  /* color: #005177;
    text-decoration: underline; */
}

@media (max-width: 768px) {
  .woocommerce-dashboard-wrapper {
    padding: 1rem;
  }

  .dashboard-title {
    font-size: 1.5rem;
  }
}

.card-section {
  /* padding: 40px 0;
    padding-top: 0 !important; */
}

.card-list {
  /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; */
}

.card-item {
  /* background: #ffffff;
    border: 1px solid #e6e1ff;
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer; */
}

.card-item:hover {
  /* box-shadow: 0 10px 30px rgba(120, 100, 255, 0.15);
    transform: translateY(-4px); */
}

.card-icon {
  /* width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center; */
}

.card-item h4 {
  /* font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0; */
}

/* =====================================================
   My Account Navigation Sidebar Customization
   ===================================================== */

.woocommerce-MyAccount-navigation {
  /* background: #ffffff;
    border: 1px solid #e6e1ff;
    border-radius: 14px;
    padding: 20px 0;
    margin-bottom: 30px; */
}

.account-navigation-list {
  /* list-style: none;
    margin: 0;
    padding: 0; */
}

.account-navigation-list li {
  /* margin: 0;
    padding: 0; */
}

.account-navigation-list .nav-link {
  /* display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: #2d2d2d;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent; */
}

.account-navigation-list .nav-link:hover {
  /* background: rgba(120, 100, 255, 0.05);
  color: #1e3a8a;
  border-left-color: #1e3a8a; */
}

.account-navigation-list .nav-link.is-active,
.account-navigation-list li.is-active .nav-link {
  /* background: rgba(120, 100, 255, 0.1);
    color: #1e3a8a;
    border-left-color: #1e3a8a;
    font-weight: 600; */
}

.nav-icon {
  /* display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0; */
}

.nav-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.account-navigation-list .nav-link:hover .nav-icon-img,
.account-navigation-list .nav-link.is-active .nav-icon-img {
  opacity: 1;
}

.nav-label {
  /* flex: 1; */
}

/* Logout link special styling */
.account-navigation-list
  li.woocommerce-MyAccount-navigation-link--customer-logout {
  /* border-top: 1px solid #e6e1ff;
    margin-top: 8px;
    padding-top: 8px; */
}

.account-navigation-list
  li.woocommerce-MyAccount-navigation-link--customer-logout
  .nav-link {
  /* color: #d32f2f; */
}

.account-navigation-list
  li.woocommerce-MyAccount-navigation-link--customer-logout
  .nav-link:hover {
  /* background: rgba(211, 47, 47, 0.05);
    color: #b71c1c;
    border-left-color: #d32f2f; */
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    /* margin-bottom: 20px; */
  }

  .account-navigation-list .nav-link {
    /* padding: 12px 15px;
        font-size: 15px; */
  }

  .nav-icon {
    width: 20px;
    height: 20px;
  }
}

.my-account-breadcrumb {
  /* padding: 20px 0; */
}

/* =====================================================
   Wishlist Custom Styling
   ===================================================== */

.woocommerce-wishlist-wrapper {
  width: 100%;
}
.wishlist-title {
  /* font-size: 2rem;
    font-weight: normal;
    color: #373737;
    margin: 0 0 8px 0;
    font-family: var(--font-secondary, serif); */
}

.wishlist-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.wishlist-content {
  /* margin-top: 20px; */
}
.wishlist_table thead tr th {
  background: transparent !important;
  border-top: none !important;
}

.woocommerce table.shop_table {
  border: none !important;
  border-collapse: collapse !important;
}
.woocommerce .col2-set::after,
.woocommerce .col2-set::before,
.woocommerce-page .col2-set::after,
.woocommerce-page .col2-set::before {
  display: none !important;
}
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  width: 100% !important;
}
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  width: 100% !important;
}
/* Responsive */
@media (max-width: 1024px) {
  .woocommerce-my-account-sidebar {
    /* position: relative;
        top: 0; */
  }
}

@media (max-width: 768px) {
  .wishlist-title {
    font-size: 1.5rem;
  }
}

.wishlist-title-with-form {
  display: none;
}

/* =====================================================
   My Account Addresses Customization
   ===================================================== */

.woocommerce-addresses-wrapper {
  width: 100%;
}

.addresses-header {
  margin-bottom: 30px;
}

.addresses-description {
  /* font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0; */
}

.addresses-grid {
  /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px; */
}

.address-card {
  overflow: hidden;
  transition: all 0.3s ease;
}

.address-card-title {
  /* font-size: 1.25rem;
    font-weight: 600;
    margin: 0; */
}

.address-card-body {
  /* padding-top: 24px;
    display: flex;
    flex-direction: column; */
}
.address-card-footer {
  /* margin-top: 10px; */
}
.address-edit-link {
  /* display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%; */
}
.address-edit-link img {
  /* width: 16px;
    height: 16px;
    display: block; */
}

/* Add Button - Primary style (when no address exists) */
.address-add-button {
  /* background: #1e3a8a;
    color: #ffffff;
    border: 2px solid #1e3a8a; */
}

.address-add-button:hover {
  /* background: #15288a;
    border-color: #15288a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3); */
}

/* Edit Button - Outlined style (when address exists) */

.address-content {
  /* font-style: normal;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0; */
}

.address-empty-message {
  color: #999;
  font-style: italic;
  margin: 0;
}

/* Single address layout (when only billing or shipping is enabled) */
.woocommerce-Addresses:not(.col2-set) .woocommerce-Address,
.woocommerce-Addresses.col2-set .woocommerce-Address {
  max-width: 100%;
}

.woocommerce-Addresses:not(.col2-set) .address-card {
  max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .addresses-grid {
    /* grid-template-columns: 1fr;
        gap: 20px; */
  }

  .address-card-title {
    font-size: 1.1rem;
  }
}

.address2-hide {
  display: none !important;
}

/* Custom styles for the Payment Methods page */
#add_payment_method #payment,
#add_payment_method #payment div.payment_box {
  background: transparent !important;
}

#add_payment_method #payment div.payment_box::before {
  display: none !important;
}
.account-payment-methods-table .button {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.account-payment-methods-table .button.delete {
  /* background-image: linear-gradient(to right, #8B5CF6, #EC4899);
		color: white;
		border: none; */
}
.account-payment-methods-table .button.delete:hover {
  /* opacity: 0.9; */
}
.account-payment-methods-table .button.default-payment-method {
  background-color: #1e40af; /* dark blue */
  color: white;
  border: none;
}
#add_payment_method #place_order {
  /* background : #1E40AF;
		color: white;
		border-radius: 0.5rem;
		padding: 0.75rem 1.5rem;
		font-weight: 600;
		border: none; */
}
#add_payment_method .StripeElement {
  padding: 0.75rem;
}
#add_payment_method .StripeElement--focus {
  border-color: red;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}
#add_payment_method .woocommerce-PaymentMethods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#add_payment_method .wc-payment-method label {
  font-weight: 500;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: left !important;
}

.woocommerce button.button.alt {
  /* background-image: linear-gradient(to right, #8B5CF6, #EC4899); */
}

.wc-stripe-elements-field {
  border-radius: 8px;
  padding: 14px;
  border: 1px solid #e5e5f5;
}

button#place_order,
button[name="woocommerce_add_payment_method"] {
  /* background: #1e3a5f;
        border-radius: 6px; */
}

.wc-stripe-payment-element .StripeElement--link {
  display: none !important;
}

.wc-stripe-payment-element .wc-stripe-test-mode {
  display: none !important;
}

/* li::marker {
  display: none !important;
  color: transparent;
} */

#payment .payment_methods li.payment_method_stripe {
    background: transparent;
    border: none !important;
    border-radius: 8px;
    padding: 0 !important;
}

#payment ul.payment_methods li.payment_method_stripe {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  margin-bottom: 15px;
  /* margin: 20px !important; */
}

#payment .payment_method_stripe > input[type="radio"] {
  /* width: 18px;
    height: 18px;
    margin: 3px 12px 0 0 !important;
    cursor: pointer;
    flex-shrink: 0;
    margin: 20px !important; */
}
#payment ul.payment_methods li.payment_method_stripe{
  padding: 20px !important;
  border: 1px solid #E7E0FF !important;
}
#payment .payment_method_stripe label {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 !important;
  cursor: pointer;
  font-weight: 500;
  vertical-align: top;
  /* padding: 20px 20px 20px 0 !important; */
  flex: 1;
}
#add_payment_method #payment .payment_method_stripe label{
  padding-left: 20px;
  padding-top: 3px;
}
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput{
    max-width: 20px;
    cursor: pointer;
    accent-color: #A236BD;
    height: 1.5rem;
    width: 1.5rem !important;
    stroke-width: 1px;
}

#payment.woocommerce-checkout-payment ul.payment_methods li.payment_method_stripe div.payment_box {
  width: 100%;
  background: transparent !important;
  border-top: 1px solid #E7E0FF;;
  padding: 0px !important;
  padding-top: 20px !important;
  margin: 15px 0 0 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods{
  width: 100%;
}
 
/* Stripe element styling */
.wc-stripe-elements-field {
  border-radius: 6px;
  border: 1px solid #e0e6ed;
  background: white;
  padding: 12px !important;
}

#payment .payment_method_stripe div.payment_box {
  width: 100%;
  background: #f8f9fb !important;
  border-top: 1px solid #E7E0FF;
  padding: 25px 25px 0 !important;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled]{
  pointer-events: none;
}
#add_payment_method .form-row{
  display: flex;
  justify-content: flex-start;
}
div.payment_box.payment_method_stripe {
  background-color: transparent !important;
  padding: 0px !important;
}

/* Save Card Button */
#place_order,
.woocommerce-button.button.save-card {
  /* background-color: #2d436b !important;
    border-radius: 5px !important;
    padding: 12px 24px !important;
    font-weight: 600; */
}

div[data-field="country"] {
  display: none !important;
}

.steps-number {
  background-color: #254570 !important;
  color: white !important;
  /* margin-right: 10px; */
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 2em;
  width: 2em;
  line-height: 1;
}

.cart_totals h2 {
  display: none !important;
}

/* ====== MODERN CHECKOUT PAGE STYLES - TAILWIND CSS ====== */
/* Purple Accent Theme: #7C5CFF | Text Dark: #1E1E2D | Borders: #ECECFA */

/* Checkout Form Base */
.woocommerce-checkout {
  /* font-family: inherit;
    background: #ffffff; */
}

/* Form Row Styling */
.woocommerce-checkout .form-row {
  /* margin-bottom: 1.5rem; */
}

/* Input Fields - Modern Style with Soft Borders */
.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row input[type="number"],
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  /* height: 48px;
    border: 1px solid #ECECFA;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
    box-sizing: border-box;
    color: #1E1E2D; */
}

.woocommerce-checkout .form-row textarea {
  /* height: auto;
    min-height: 120px;
    padding: 16px; */
}

.woocommerce-checkout .form-row input::placeholder,
.woocommerce-checkout .form-row textarea::placeholder,
.woocommerce-checkout .form-row select::placeholder {
  /* color: #B8B8C8; */
}

/* Focus State - Purple Accent */
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
  /* outline: none;
    border-color: #7C5CFF;
    box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.1);
    background-color: #ffffff; */
}

/* Labels */
.woocommerce-checkout .form-row label {
  /* display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1E1E2D;
    font-size: 0.95rem; */
}

.woocommerce-checkout .form-row .required {
  color: #e74c3c;
  font-weight: bold;
  margin-left: 2px;
}

/* Form Row Layout */
.woocommerce-checkout .form-row.form-row-first,
.woocommerce-checkout .form-row.form-row-last,
.woocommerce-checkout .form-row.form-row-wide {
  width: 100%;
  display: block;
}

/* Billing and Shipping Fields Wrapper - 2 Column Grid */
/* .woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
} */

/* @media (min-width: 768px) {
  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
} */

/* Checkbox Styling - Purple Accent */
.woocommerce-checkout input[type="checkbox"],
.woocommerce-checkout input[type="radio"] {
  /* width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #7C5CFF;
    border-radius: 4px;
    transition: all 0.2s ease; */
}

.woocommerce-checkout input[type="checkbox"]:checked,
.woocommerce-checkout input[type="radio"]:checked {
  background-color: #7c5cff;
  min-width: 23px;
}

/* Shipping Checkbox */
#ship-to-different-address-checkbox,
#createaccount {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #7c5cff;
}

#ship-to-different-address label,
.woocommerce-form__label-for-checkbox label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
  color: #1e1e2d;
}

/* Account Creation Section */
.woocommerce-account-fields {
  background-color: #f8f8fc;
  border: 1px solid #ececfa;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.woocommerce-account-fields:hover {
  background-color: #f5f3ff;
  border-color: #ececfa;
}

.woocommerce-account-fields .create-account {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 12px !important;
}

/* Order Review/Summary Table */
.woocommerce-checkout-review-order {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 1rem;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.woocommerce-checkout-review-order-table thead {
  border-bottom: 1px solid #ececfa;
}

.woocommerce-checkout-review-order-table th {
  /* text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid #ECECFA;
    font-weight: 600;
    color: #1E1E2D;
    background-color: transparent;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em; */
}

.woocommerce-checkout-review-order-table td {
  /* padding: 16px 0;
    border-bottom: 1px solid #ECECFA;
    color: #4B5563;
    font-weight: 500; */
}

.woocommerce-checkout-review-order-table tr:last-child td {
  /* border-bottom: none; */
}

.woocommerce-checkout-review-order-table .product-name {
  color: #1e1e2d;
  font-weight: 600;
}

.woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  color: #1e1e2d;
  font-weight: 600;
}

.woocommerce-checkout-review-order-table .product-quantity {
  color: #b8b8c8;
  font-weight: 400;
}

/* Order Totals */
.woocommerce-checkout-review-order-table .order-total {
  /* background-color: transparent;
    border: none;
    border-top: 2px solid #7C5CFF;
    padding-top: 16px;
    font-size: 1.2rem; */
}

.woocommerce-checkout-review-order-table .order-total th {
  /* border: none;
    padding-top: 0;
    font-size: 1.1rem;
    color: #1E1E2D; */
}

.woocommerce-checkout-review-order-table .order-total td {
  /* border: none;
    padding-top: 0;
    font-size: 1.1rem;
    color: #1E1E2D;
    font-weight: 700;
    text-align: right; */
}

.woocommerce-checkout-review-order-table .cart-subtotal,
.woocommerce-checkout-review-order-table .cart-discount,
.woocommerce-checkout-review-order-table .shipping,
.woocommerce-checkout-review-order-table .fee,
.woocommerce-checkout-review-order-table .tax-rate,
.woocommerce-checkout-review-order-table .tax-total {
  /* font-size: 0.9rem; */
}

.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout-review-order-table .cart-subtotal td {
  /* color: #4B5563; */
}

/* Payment Methods - Card Style */
.woocommerce-PaymentMethods {
  /* margin-bottom: 2rem; */
  margin-top: 2rem;
}

.woocommerce-PaymentMethods .payment-method {
  border: 1px solid #ececfa;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
}

.woocommerce-PaymentMethods .payment-method:hover {
  border-color: #7c5cff;
  background-color: rgba(124, 92, 255, 0.02);
  box-shadow: 0 4px 12px rgba(124, 92, 255, 0.1);
}

.woocommerce-PaymentMethods
  .payment-method
  input[type="radio"]:checked
  + label {
  color: #7c5cff;
  font-weight: 600;
}

.woocommerce-PaymentMethods .payment-method input[type="radio"]:checked {
  border-color: #7c5cff;
  background-color: #7c5cff;
}

.woocommerce-PaymentMethods .payment-method.active {
  border-color: #7c5cff;
  background-color: rgba(124, 92, 255, 0.05);
}

.woocommerce-PaymentMethods .payment-method input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #7c5cff;
  margin-right: 12px;
}

.woocommerce-PaymentMethods .payment-method label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #1e1e2d;
}

/* Place Order Button - Dark Navy */
#place_order {
  /* width: 100%;
    height: 56px;
    padding: 0 32px;
    font-size: 1.05rem;
    font-weight: 600;
    background-color: #162B49;
    color: white;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(22, 43, 73, 0.2);
    margin-top: 24px; */
}

#place_order:hover:not(:disabled) {
  /* background-color: #0F1D31;
    box-shadow: 0 8px 25px rgba(22, 43, 73, 0.3);
    transform: translateY(-2px); */
}

#place_order:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(22, 43, 73, 0.2);
}

#place_order:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #b8b8c8;
}

.place-order {
  margin-top: 2rem;
  text-align: left;
}

/* Error Messages */
.woocommerce-NoticeGroup-checkout,
.woocommerce-error {
  background-color: #faddd9;
  /* border: 1px solid #f5a5a0; */
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: #c0392b;
  list-style: none;
}

.woocommerce-error li {
  margin-bottom: 0.5rem;
}

.woocommerce-error li:last-child {
  margin-bottom: 0;
}

/* Success Messages */
.woocommerce-message {
  /* background-color: #D5F4E6;
    border: 1px solid #A8E6D5;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 1.5rem;
    color: #27AE60; */
}

/* Additional Fields */
.woocommerce-additional-fields {
  margin-top: 2rem;
}

.woocommerce-additional-fields h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e1e2d;
  margin-bottom: 1rem;
  margin-top: 0;
}

/* Terms and Conditions */
.woocommerce-terms-and-conditions-checkbox-text {
  display: flex;
  gap: 12px;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.woocommerce-terms-and-conditions-checkbox-text input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #7c5cff;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.woocommerce-terms-and-conditions-checkbox-text label {
  cursor: pointer;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}

.woocommerce-terms-and-conditions-checkbox-text label a {
  color: #7c5cff;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.woocommerce-terms-and-conditions-checkbox-text label a:hover {
  color: #6b4fd9;
}

/* Promo Code Toggle */
#promo-toggle {
  font-size: 0.9rem;
  color: #7c5cff;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
  border: none;
  background: none;
  padding: 0;
  font-weight: 500;
}

#promo-toggle:hover {
  color: #6b4fd9;
}

#promo-form {
  display: none;
  margin-top: 12px;
}

#promo-form.show {
  display: block;
}

#promo-form input {
  border: 1px solid #ececfa;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  width: 100%;
  transition: all 0.3s ease;
}

#promo-form input:focus {
  outline: none;
  border-color: #7c5cff;
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.1);
}

#promo-form button {
  background-color: #7c5cff;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#promo-form button:hover {
  background-color: #6b4fd9;
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce-checkout .form-row {
    /* margin-bottom: 1rem; */
  }

  /* .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr !important;
    gap: 16px;
  } */

  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    padding: 12px 0;
  }

  /* #place_order {
    height: 52px;
    font-size: 0.95rem;
    padding: 0 24px;
  } */

  .woocommerce-checkout .form-row input[type="text"],
  .woocommerce-checkout .form-row input[type="email"],
  .woocommerce-checkout .form-row input[type="tel"],
  .woocommerce-checkout .form-row textarea,
  .woocommerce-checkout .form-row select {
    height: 44px;
    padding: 10px 14px;
  }
}

/* Loading State */
.woocommerce-checkout.processing {
  opacity: 0.6;
  pointer-events: none;
}

/* Print Styles */
@media print {
  .woocommerce-checkout form {
    max-width: 100%;
  }
}

.select2-container .select2-selection--single {
  height: auto !important;
}

.custom-review-wrapper {
  padding: 0 !important;
}

.checkout-product-item {
  /* display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #eee; */
}

.product-image img {
  width: 80px !important;
  border-radius: 12px !important;
}

.product-info {
  flex: 1;
  margin-left: 20px;
}

.product-title {
  /* font-size: 18px;
    font-weight: 500; */
}

.product-qty {
  /* font-size: 14px;
    margin-top: 5px;
    color: #666; */
}

.product-price {
  /* font-size: 18px;
    font-weight: 500; */
}
.product-info dl,
.product-info .wc-item-meta {
  display: none;
}

.coupon-row {
  display: flex;
  gap: 10px;
}

.coupon-row input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.coupon-row button {
  /* padding: 12px 24px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px; */
}
.woocommerce-form-coupon-toggle {
  /* border-bottom: 1px solid #eee; */
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  border-top: none !important;
  background-color: transparent !important;
}

.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout-review-order-table .cart-subtotal td {
  /* border-bottom: none !important; */
  /* padding:0px !important; */
}

.woocommerce-checkout #payment {
  /* border-top: 1px solid #ececfa !important; */
  background-color: transparent !important;
  border-radius: 0px !important;
}
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  padding-bottom: 15px !important;
  padding: 0px !important;
  border-bottom: 0px !important;
}

#payment ul.payment_methods li.payment_method_stripe {
  /* margin : 0px !important;
    margin-top : 20px !important; */
}

.woocommerce-checkout #payment div.payment_box::before {
  content: "";
  display: none !important;
  border: 1em solid #dcd7e2;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -0.75em;
  left: 0;
  margin: -1em 0 0 2em;
}

#payment .payment_method_stripe label {
  /* padding: 20px !important; */
}

.woocommerce-checkout #payment ul.payment_methods li {
  /* border: 1px solid #f0f0f0 !important;
    padding : 15px !important;
    border-radius : 8px !important;
    margin-bottom: 20px !important; */
}

.woocommerce-additional-fields {
  display: none !important;
}

.bacs-upload-box {
  position: relative;
  border: 2px dashed #cbd5e0;
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 20px; /* Increased padding for a larger click area */
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  overflow: hidden;
}

.bacs-upload-box:hover {
  border-color: #667eea;
  background: #f8faff;
}

/* THE TRICK: Make the input invisible but cover the whole box */
#payment_slip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Hide the "Choose File" button */
  cursor: pointer;
  z-index: 10; /* Put it on top of the text */
}

.bacs-upload-box .icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
  color: #a0aec0;
}

.bacs-upload-box .main-text {
  display: block;
  font-weight: bold;
  font-size: 16px;
  color: #4a5568;
}

.bacs-upload-box .sub-text {
  font-size: 13px;
  color: #a0aec0;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  /* background-color: transparent !important;
        width: 0px; */
}

.bacs-field-row {
  padding: 10px 0;
}

#wc-stripe_alipay-upe-form {
  display: none !important;
}

/* WooCommerce Custom Thank You Page */
.custom-thankyou-wrapper {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.custom-thankyou-wrapper h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.custom-thankyou-wrapper p {
  margin-bottom: 15px;
  color: #555;
}

.order-summary {
  margin-bottom: 20px;
  border-top: 1px solid #E7E0FF;
  border-bottom: 1px solid #E7E0FF;
  padding: 20px 0;
}

.order-summary p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.order-summary p strong {
  font-weight: normal;
}

.order-summary p:last-child strong {
  font-weight: bold;
}

.return-home {
  /* display: inline-block;
    padding: 15px 40px;
    background: #1d3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    width: 100%; */
}

.woocommerce-notice--error {
  color: red;
  font-size: 16px;
  margin-bottom: 20px;
}

.woocommerce-notice--error a.button {
  display: inline-block;
  margin: 10px 5px;
  padding: 10px 20px;
  background: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
.woocommerce-orders-table {
  margin-top: 30px !important;
}
.woocommerce-info {
  border-top: none !important;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button.added::after,
.added_to_cart {
  display: none !important;
}

.cart-page-wrapper .woocommerce-notices-wrapper .woocommerce-message {
  display: none !important;
}

/* Social Login CSS */
.social-login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Nextend Social Login Container */
.social-login-container .nsl-container,
.social-login-container .nextend-social-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Social Login Buttons */
.social-login-container .nsl-container .nsl-button,
.social-login-container .nextend-social-login .nsl-button,
.social-login-container a[class*="nsl-button"],
.social-login-container .nsl-container a,
.social-login-container .nextend-social-login a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #b8a9d9;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.5;
  box-shadow: none;
  margin: 0;
}

.social-login-container .nsl-container .nsl-button:hover,
.social-login-container .nextend-social-login .nsl-button:hover,
.social-login-container a[class*="nsl-button"]:hover,
.social-login-container .nsl-container a:hover,
.social-login-container .nextend-social-login a:hover {
  background: #f8f8f8;
  border-color: #a599c7;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Social Login Button Icons */
.social-login-container .nsl-container .nsl-button img,
.social-login-container .nextend-social-login .nsl-button img,
.social-login-container a[class*="nsl-button"] img,
.social-login-container .nsl-container a img,
.social-login-container .nextend-social-login a img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  display: block;
}

/* Google Button Specific */
.social-login-container .nsl-container [data-provider="google"],
.social-login-container .nextend-social-login [data-provider="google"],
.social-login-container a[href*="google"] {
  order: 1;
}

/* Facebook Button Specific */
.social-login-container .nsl-container [data-provider="facebook"],
.social-login-container .nextend-social-login [data-provider="facebook"],
.social-login-container a[href*="facebook"] {
  order: 2;
}

/* Button Text */
.social-login-container .nsl-container .nsl-button span,
.social-login-container .nextend-social-login .nsl-button span,
.social-login-container a[class*="nsl-button"] span {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
}

/* Remove any default list styles */
.social-login-container ul,
.social-login-container .nsl-container ul,
.social-login-container .nextend-social-login ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}

.social-login-container ul li,
.social-login-container .nsl-container ul li,
.social-login-container .nextend-social-login ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Lost Password Form CSS */
.lost_reset_password {
  width: 100%;
}

.lost_reset_password .woocommerce-form-row {
  margin-bottom: 0;
}

.lost-password-back-link {
  /* color: #b8a9d9;
  text-decoration: none;
  transition: color 0.3s ease; */
}

.lost-password-back-link:hover {
  /* color: #a599c7;
  text-decoration: underline; */
}

.lost_reset_password .woocommerce-Button {
  min-width: 150px;
}

/* @media (max-width: 640px) {
  .lost_reset_password .flex.items-center.justify-between {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .lost_reset_password .woocommerce-form-row {
    width: 100%;
  }

  .lost-password-back-link {
    text-align: center;
  }
} */


.highlight-search-term {
  color: rgb(162 54 189 / var(--tw-text-opacity));
  background-color: transparent;
}

.remove-coupon-border-top{
  border-top: 0px !important;
  padding-top: 0px !important;
  margin-top: 0px !important;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}