/* Added fallbacks to help with CLS, feel free to remove if it doesn't help on your project */
/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
#breadcrumb {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-bottom: 1px solid #BABABA;
  border-top: 1px solid #BABABA;
}
#breadcrumb .rank-math-breadcrumb .separator {
  display: inline-block;
  margin-left: 7px;
  margin-right: 7px;
  padding-top: 22px;
  padding-bottom: 22px;
}
#breadcrumb .rank-math-breadcrumb p {
  padding: 0;
}
#breadcrumb .rank-math-breadcrumb .separator,
#breadcrumb .rank-math-breadcrumb a,
#breadcrumb .rank-math-breadcrumb .last {
  font: normal normal bold 16px/19px Rubik;
  letter-spacing: 0px;
  color: #131F35;
  text-transform: capitalize;
}

#main {
  padding-top: 3em;
  padding-bottom: 3em;
}

.woocommerce-notices-wrapper,
.woocommerce-account .woocommerce::after, .woocommerce-account .woocommerce::before,
.woocommerce-message:before, .woocommerce-info:before, .woocommerce-error:before {
  display: none;
}

.woocommerce-account .woocommerce {
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
  }
}

.woocommerce-MyAccount-navigation {
  flex: 0 0 280px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(19, 31, 53, 0.08);
  overflow: hidden;
  height: fit-content;
  position: sticky;
  top: 120px;
}
@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    flex: 1;
    position: relative;
    top: 0;
  }
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
  margin: 0;
  border-bottom: 1px solid #E8E8E8;
}
.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}
.woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  color: #2F2F2F;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.woocommerce-MyAccount-navigation ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #131F35;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.woocommerce-MyAccount-navigation ul li a:hover {
  background: #f5f5f5;
  color: #131F35;
  padding-left: 32px;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  background: linear-gradient(90deg, rgba(19, 31, 53, 0.08) 0%, rgba(19, 31, 53, 0.02) 100%);
  color: #131F35;
  font-weight: 600;
  padding-left: 32px;
}
.woocommerce-MyAccount-navigation ul li.is-active a:before {
  width: 4px;
}

.woocommerce-MyAccount-content {
  flex: 1;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(19, 31, 53, 0.08);
}
@media (max-width: 768px) {
  .woocommerce-MyAccount-content {
    padding: 24px;
  }
}
.woocommerce-MyAccount-content h2, .woocommerce-MyAccount-content h3 {
  color: #131F35;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E8E8E8;
}
.woocommerce-MyAccount-content p {
  color: #2F2F2F;
  line-height: 1.7;
  margin-bottom: 16px;
}

.woocommerce form .form-row {
  margin-bottom: 20px;
}
.woocommerce form .form-row label {
  display: block;
  font-weight: 600;
  color: #2F2F2F;
  margin-bottom: 8px;
  font-size: 14px;
}
.woocommerce form .form-row label .required {
  color: #EB010F;
  margin-left: 3px;
}
.woocommerce form .form-row input[type=text],
.woocommerce form .form-row input[type=email],
.woocommerce form .form-row input[type=password],
.woocommerce form .form-row input[type=tel],
.woocommerce form .form-row input[type=number],
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #FFFFFF;
  color: #2F2F2F;
}
.woocommerce form .form-row input[type=text]:focus,
.woocommerce form .form-row input[type=email]:focus,
.woocommerce form .form-row input[type=password]:focus,
.woocommerce form .form-row input[type=tel]:focus,
.woocommerce form .form-row input[type=number]:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  outline: none;
  border-color: #131F35;
  box-shadow: 0 0 0 3px rgba(19, 31, 53, 0.1);
}
.woocommerce form .form-row input[type=text]::placeholder,
.woocommerce form .form-row input[type=email]::placeholder,
.woocommerce form .form-row input[type=password]::placeholder,
.woocommerce form .form-row input[type=tel]::placeholder,
.woocommerce form .form-row input[type=number]::placeholder,
.woocommerce form .form-row select::placeholder,
.woocommerce form .form-row textarea::placeholder {
  color: #B2B2B2;
}
.woocommerce form .form-row textarea {
  min-height: 120px;
  resize: vertical;
}
.woocommerce form .form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23131F35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
  width: 48%;
  float: left;
}
@media (max-width: 768px) {
  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last {
    width: 100%;
    float: none;
  }
}
.woocommerce form .form-row-first {
  margin-right: 4%;
}
@media (max-width: 768px) {
  .woocommerce form .form-row-first {
    margin-right: 0;
  }
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce .button {
  background: #131F35;
  color: #FFFFFF;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(19, 31, 53, 0.2);
}
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover {
  background: #253145;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(19, 31, 53, 0.3);
  color: #FFFFFF;
}
.woocommerce button.button:active,
.woocommerce a.button:active,
.woocommerce input.button:active,
.woocommerce .button:active {
  transform: translateY(0);
}
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt,
.woocommerce .button.alt {
  background: #EB010F;
}
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce .button.alt:hover {
  background: rgb(194.3728813559, 0.8271186441, 12.406779661);
}
.woocommerce button.button.disabled, .woocommerce button.button:disabled,
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce .button.disabled,
.woocommerce .button:disabled {
  background: #BEBEBE;
  cursor: not-allowed;
  box-shadow: none;
}
.woocommerce button.button.disabled:hover, .woocommerce button.button:disabled:hover,
.woocommerce a.button.disabled:hover,
.woocommerce a.button:disabled:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled:hover,
.woocommerce .button.disabled:hover,
.woocommerce .button:disabled:hover {
  transform: none;
}

.woocommerce-orders-table,
.woocommerce-table,
.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(19, 31, 53, 0.06);
}
.woocommerce-orders-table thead,
.woocommerce-table thead,
.shop_table thead {
  background: #131F35;
}
.woocommerce-orders-table thead th,
.woocommerce-table thead th,
.shop_table thead th {
  color: #FFFFFF;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.woocommerce-orders-table tbody tr,
.woocommerce-table tbody tr,
.shop_table tbody tr {
  background: #FFFFFF;
  transition: background 0.2s ease;
}
.woocommerce-orders-table tbody tr:nth-child(even),
.woocommerce-table tbody tr:nth-child(even),
.shop_table tbody tr:nth-child(even) {
  background: #f5f5f5;
}
.woocommerce-orders-table tbody tr:hover,
.woocommerce-table tbody tr:hover,
.shop_table tbody tr:hover {
  background: rgba(19, 31, 53, 0.04);
}
.woocommerce-orders-table tbody tr td,
.woocommerce-table tbody tr td,
.shop_table tbody tr td {
  padding: 16px 20px;
  border-bottom: 1px solid #E8E8E8;
  color: #2F2F2F;
  font-size: 14px;
}
.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-actions,
.woocommerce-table tbody tr td.woocommerce-orders-table__cell-order-actions,
.shop_table tbody tr td.woocommerce-orders-table__cell-order-actions {
  text-align: right;
}
.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-actions a,
.woocommerce-table tbody tr td.woocommerce-orders-table__cell-order-actions a,
.shop_table tbody tr td.woocommerce-orders-table__cell-order-actions a {
  display: inline-block;
  padding: 8px 16px;
  background: #f5f5f5;
  color: #131F35;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s ease;
  margin-left: 8px;
}
.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-actions a:hover,
.woocommerce-table tbody tr td.woocommerce-orders-table__cell-order-actions a:hover,
.shop_table tbody tr td.woocommerce-orders-table__cell-order-actions a:hover {
  background: #131F35;
  color: #FFFFFF;
}
.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
.woocommerce-table tbody tr td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
.shop_table tbody tr td.woocommerce-orders-table__cell-order-status .woocommerce-order-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-status .status-completed,
.woocommerce-table tbody tr td.woocommerce-orders-table__cell-order-status .status-completed,
.shop_table tbody tr td.woocommerce-orders-table__cell-order-status .status-completed {
  background: #D4EDDA;
  color: #155724;
}
.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-status .status-processing,
.woocommerce-table tbody tr td.woocommerce-orders-table__cell-order-status .status-processing,
.shop_table tbody tr td.woocommerce-orders-table__cell-order-status .status-processing {
  background: #FFF3CD;
  color: #856404;
}
.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-status .status-on-hold,
.woocommerce-table tbody tr td.woocommerce-orders-table__cell-order-status .status-on-hold,
.shop_table tbody tr td.woocommerce-orders-table__cell-order-status .status-on-hold {
  background: #CCE5FF;
  color: #004085;
}
.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-status .status-cancelled,
.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-status .status-failed,
.woocommerce-table tbody tr td.woocommerce-orders-table__cell-order-status .status-cancelled,
.woocommerce-table tbody tr td.woocommerce-orders-table__cell-order-status .status-failed,
.shop_table tbody tr td.woocommerce-orders-table__cell-order-status .status-cancelled,
.shop_table tbody tr td.woocommerce-orders-table__cell-order-status .status-failed {
  background: #F8D7DA;
  color: #721C24;
}
.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-status .status-pending,
.woocommerce-table tbody tr td.woocommerce-orders-table__cell-order-status .status-pending,
.shop_table tbody tr td.woocommerce-orders-table__cell-order-status .status-pending {
  background: #E8E8E8;
  color: #464646;
}
.woocommerce-orders-table tbody tr:last-child td,
.woocommerce-table tbody tr:last-child td,
.shop_table tbody tr:last-child td {
  border-bottom: none;
}

.woocommerce-Address {
  background: #f5f5f5;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}
.woocommerce-Address address {
  font-style: normal;
  line-height: 1.8;
  color: #2F2F2F;
  margin-bottom: 16px;
}
.woocommerce-Address .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.woocommerce-Address .woocommerce-Address-title h3 {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 18px;
  color: #131F35;
}
.woocommerce-Address .woocommerce-Address-title a.edit {
  color: #131F35;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}
.woocommerce-Address .woocommerce-Address-title a.edit:hover {
  color: #253145;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  font-size: 15px;
}
.woocommerce-message:before,
.woocommerce-info:before,
.woocommerce-error:before {
  margin-right: 12px;
  font-size: 18px;
}
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}
.woocommerce-message a:hover,
.woocommerce-info a:hover,
.woocommerce-error a:hover {
  text-decoration: none;
}
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  margin-left: auto;
  padding: 8px 20px;
  font-size: 14px;
}

.woocommerce-message {
  background: #D4EDDA;
  color: #155724;
  border-left: 4px solid #28A745;
}

.woocommerce-info {
  background: #CCE5FF;
  color: #004085;
  border-left: 4px solid #007BFF;
  gap: 15px;
}

.woocommerce-error {
  background: #F8D7DA;
  color: #721C24;
  border-left: 4px solid #EB010F;
}
.woocommerce-error li {
  list-style: none;
}

.woocommerce-table--order-downloads td.download-file {
  font-weight: 600;
  color: #131F35;
}
.woocommerce-table--order-downloads td.download-file a {
  color: #131F35;
  text-decoration: none;
}
.woocommerce-table--order-downloads td.download-file a:hover {
  text-decoration: underline;
}
.woocommerce-table--order-downloads td.download-actions a {
  background: #131F35;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  transition: all 0.3s ease;
}
.woocommerce-table--order-downloads td.download-actions a:hover {
  background: #253145;
  transform: translateY(-2px);
}

.woocommerce-order-details {
  margin-top: 32px;
}
.woocommerce-order-details h2 {
  color: #131F35;
  font-size: 22px;
  margin-bottom: 20px;
}

.woocommerce-customer-details {
  margin-top: 32px;
}
.woocommerce-customer-details address {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  font-style: normal;
  line-height: 1.8;
  color: #2F2F2F;
}

.woocommerce-checkout {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.woocommerce-checkout #customer_details {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(19, 31, 53, 0.08);
  margin-bottom: 24px;
}
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout h3 {
  color: #131F35;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 20px;
}
.woocommerce-checkout #order_review {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(19, 31, 53, 0.08);
}

.woocommerce-checkout-payment {
  background: #f5f5f5;
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
}
.woocommerce-checkout-payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.woocommerce-checkout-payment ul.payment_methods li {
  margin-bottom: 12px;
}
.woocommerce-checkout-payment ul.payment_methods li input[type=radio] {
  margin-right: 10px;
}
.woocommerce-checkout-payment ul.payment_methods li label {
  font-weight: 600;
  color: #2F2F2F;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.woocommerce-checkout-payment ul.payment_methods li label img {
  max-height: 24px;
  margin-left: 10px;
}
.woocommerce-checkout-payment ul.payment_methods li .payment_box {
  background: #FFFFFF;
  padding: 16px;
  margin-top: 12px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: #464646;
}
.woocommerce-checkout-payment .place-order {
  margin-top: 20px;
}
.woocommerce-checkout-payment .place-order button {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 769px) {
  .woocommerce-MyAccount-content {
    overflow-x: auto;
  }
  .shop_table {
    font-size: 13px;
  }
  .shop_table thead th,
  .shop_table tbody td {
    padding: 12px;
  }
}