.woocommerce-shop-page {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
}

.shop-header {
    margin-bottom: 2rem;
    text-align: center;
}

.shop-content-wrap {
    display: flex;
    gap: 2rem;
}

.shop-sidebar-filters {
    flex: 0 0 250px;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
}

.filter-box {
    margin-bottom: 1.5rem;
}

.filter-box h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 0.4rem;
}

.shop-products-area {
    flex: 1;
}
.shop-content-wrap {
    display: flex;
    gap: 2rem;
}
.shop-sidebar-filters {
    flex: 0 0 250px;
    background: #f5f5f5;
    padding: 1rem;
}
.shop-products-area {
    flex: 1;
}
.ajax-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
/* === Shop Page Container === */
.woocommerce-shop-page,
body.woocommerce.archive {
  display: flex !important;
  flex-direction: column !important;
  background: #f9f9f9 !important;
  font-family: 'Segoe UI', sans-serif !important;
}

/* === Shop Header === */
.shop-header {
  background-color: #111d59 !important;
  color: #fff !important;
  padding: 20px 30px !important;
  border-radius: 8px !important;
  margin-bottom: 20px !important;
}

.shop-header .shop-title {
  margin: 0 !important;
  font-size: 28px !important;
  font-weight: bold !important;
}

/* === Shop Layout Grid === */
.shop-content-wrap {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  gap: 30px !important;
}

/* === Sidebar Filters === */
.shop-sidebar-filters {
  background: #fff !important;
  border: 2px solid #111d59 !important;
  padding: 20px !important;
  border-radius: 10px !important;
  position: sticky !important;
  top: 20px !important;
  height: fit-content !important;
}

.filter-box {
  margin-bottom: 25px !important;
}

.filter-box h4 {
  color: #111d59 !important;
  font-size: 18px !important;
  margin-bottom: 10px !important;
  border-bottom: 1px solid #eee !important;
  padding-bottom: 5px !important;
}

.filter-box ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.filter-box li {
  margin-bottom: 8px !important;
  font-size: 15px !important;
}

.filter-box input[type="checkbox"] {
  margin-right: 8px !important;
}

#apply-filters {
  background-color: #db8c1d !important;
  color: white !important;
  padding: 10px 20px !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  font-weight: bold !important;
  width: 100% !important;
  transition: background-color 0.3s !important;
}

#apply-filters:hover {
  background-color: #c27515 !important;
}

/* === Product Grid === */
body.archive ul.products.ajax-products,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 25px !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.archive ul.products li.product {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid #ddd !important;
  padding: 15px !important;
  text-align: center !important;
  border-radius: 10px !important;
  transition: box-shadow 0.3s !important;
}

body.archive ul.products li.product:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1) !important;
}

ul.products li.product .woocommerce-loop-product__title {
  font-size: 16px !important;
  color: #111d59 !important;
  font-weight: 600 !important;
  margin: 10px 0 5px !important;
}

 ul.products li.product .price {
  color: #db8c1d !important;
  font-weight: bold !important;
}

ul.products li.product a.button {
  background: #111d59 !important;
  color: white !important;
  padding: 8px 14px !important;
  border-radius: 5px !important;
  display: inline-block !important;
  margin-top: 10px !important;
  transition: background-color 0.3s !important;
}

body.archive ul.products li.product a.button:hover {
  background: #0d1547 !important;
}
body.archive .woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before{
  content: '';
  display: none;
}
body.archive ul.products.columns-4 li.product{
    width: 100%;
}
.variations {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
  margin-bottom: 20px;
}

.variations .label {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  text-align: left;
  vertical-align: middle;
  padding-right: 15px;
  width: 150px;
}

.variations .value {
  vertical-align: middle;
}

.variations select {
  width: 100%;
  max-width: 300px;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.variations select:focus {
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.3);
  outline: none;
}

.variations .reset_variations {
  display: inline-block;
  margin-left: 15px;
  font-size: 14px;
  color: #d63638;
  text-decoration: none;
  visibility: visible !important;
}

.variations .reset_variations:hover {
  text-decoration: underline;
}
/* === WooCommerce Cart Styling for Amrit Products Theme === */

.woocommerce-cart .woocommerce {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: inherit;
}

/* Cart Title */
.woocommerce-cart .page-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #111d59;
}
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title { 
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #111d59;
}

/* Table Styling */
.woocommerce-cart table.shop_table {
    border: none;
    border-collapse: collapse;
    background-color: #fafafa;
    border-radius: 10px;
    overflow: hidden;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
    border: none;
    padding: 16px 12px;
    text-align: left;
    font-size: 16px;
}

/* Product Thumbnail */
.woocommerce-cart .product-thumbnail img {
    max-width: 60px;
    border-radius: 8px;
}

/* Remove Button (neutral gray) */
.woocommerce-cart a.remove {
    color: #bbb !important;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s;
}

.woocommerce-cart a.remove:hover {
    color: #ff4d4f !important;
}

/* Coupon Input and Update Cart */
.woocommerce-cart .coupon .input-text {
    padding: 10px !important;
    border: 1px solid #ccc !important;
    border-radius: 6px;
    margin-right: 10px !important;
    width: auto !important;
}

/* Buttons (Apply Coupon, Update Cart) */
.woocommerce-cart .actions .button {
    background-color: #111d59;
    color: #fff;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 600;
    transition: 0.3s ease;
}

.woocommerce-cart .actions .button:hover {
    background-color: #0e1747;
}

/* Disabled Button */
.woocommerce-cart .actions .button:disabled,
.woocommerce-cart .actions .button:disabled:hover {
    background-color: #ccc;
    color: #666;
}

/* Cart Totals Box */
.cart_totals {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.cart_totals h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111d59;
}

/* Proceed to Checkout */
.woocommerce-cart .checkout-button {
    background-color: #111d59 !important;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 8px;
    transition: 0.3s;
    text-align: center;
}

.woocommerce-cart .checkout-button:hover {
    background-color: #0e1747 !important;
}
/* === WooCommerce Checkout Page Styling for Amrit Products === */

.woocommerce-checkout {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: inherit;
}

/* Title */
.woocommerce-checkout h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111d59;
    margin-bottom: 20px;
}

/* Form Fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 14px;
    width: 100%;
    font-size: 15px;
    transition: 0.3s ease;
    background-color: #fff;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: #111d59;
    box-shadow: 0 0 0 1px #111d59;
}

/* Labels */
.woocommerce form .form-row label {
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

/* Checkout Button */
.woocommerce-checkout .button.alt {
    background-color: #111d59 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    transition: 0.3s ease;
}

.woocommerce-checkout .button.alt:hover {
    background-color: #0e1747 !important;
}

/* Order Summary Styling */
.woocommerce-checkout-review-order-table {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 12px 10px;
    font-size: 15px;
    border: none;
}

.woocommerce-checkout-review-order-table tfoot tr:last-child td,
.woocommerce-checkout-review-order-table tfoot tr:last-child th {
    font-weight: bold;
    color: #111d59;
    font-size: 16px;
}

/* Payment Methods Box */
.woocommerce-checkout #payment {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid #ddd;
}

/* Error Notices */
.woocommerce-error, .woocommerce-message, .woocommerce-info {
    border: 2px solid #111d59;
    background: #f5f8ff;
    padding: 24px;
    margin-bottom: 20px;
    color: #111d59;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    left: 3px;
    top: 25px;
}

/* Responsive Optimization */
@media (max-width: 768px) {
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review {
        width: 100%;
    }
}
/* Container and page title */
.woocommerce-account .page-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #111d59;
}

/* Navigation menu */
.woocommerce-MyAccount-navigation {
    width: 25%;
    float: left;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 12px 20px;
    background-color: white;
    color: #111d59;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    background-color: #111d59;
    color: white;
}

/* Account content */
.woocommerce-MyAccount-content {
    width: 70%;
    float: right;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

/* Input styles */
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Buttons */
.woocommerce-MyAccount-content button,
.woocommerce-MyAccount-content input.button {
    background-color: #111d59;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-content button:hover,
.woocommerce-MyAccount-content input.button:hover {
    background-color: #0d1642;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 768px) {
  .woocommerce-shop-page,
  body.woocommerce.archive {
    padding: 15px !important;
  }

  .shop-content-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .shop-sidebar-filters {
    width: 100% !important;
    position: relative !important;
    top: unset !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
  }

  .shop-products-area {
    width: 100% !important;
  }

  .ajax-products,
  body.archive ul.products.ajax-products,
  ul.products {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
    gap: 15px !important;
  }

  ul.products li.product {
    padding: 10px !important;
  }

  ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px !important;
  }

  ul.products li.product a.button {
    padding: 6px 12px !important;
    font-size: 14px !important;
  }

  .variations .label {
    width: 100% !important;
    padding-right: 0 !important;
    margin-bottom: 5px;
  }

  .variations td {
    display: block !important;
    width: 100% !important;
  }

  .variations select {
    width: 100% !important;
    max-width: 100% !important;
  }

  .shop-header {
    padding: 15px !important;
    text-align: center !important;
  }

  .shop-header .shop-title {
    font-size: 22px !important;
  }

  #apply-filters {
    font-size: 16px !important;
    padding: 10px !important;
  }

  .filter-box h4 {
    font-size: 16px !important;
  }
}
.account-menu-wrap {
  position: relative;
  display: inline-block;
}

.account-menu-wrap .account-icon {
  font-size: 20px;
  color: #111d59; /* Your primary color */
  padding: 10px;
}
.fa-user:before {
    content: "\f007";
}
.account-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  z-index: 99;
}

.account-dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #111d59;
  text-decoration: none;
}

.account-dropdown li a:hover {
  background-color: #f0f0f0;
}

.account-menu-wrap:hover .account-dropdown {
  display: block;
}
.header-column-third .elementor-widget-wrap.elementor-element-populated {
    display: flex;
/*     flex-direction: row-reverse; */
    flex-wrap: nowrap;
    align-items: center;
}
.elementor-element.elementor-element-c33fbb0.toggle-icon--cart-medium.elementor-menu-cart--items-indicator-bubble.elementor-menu-cart--show-subtotal-yes.elementor-menu-cart--cart-type-side-cart.elementor-menu-cart--show-remove-button-yes.elementor-widget.elementor-widget-woocommerce-menu-cart {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}
.quantity.buttons-added button {
    color: white;
}
.elementor-123 .elementor-element.elementor-element-7ac7b2c8 .eael-contact-form.eael-fluent-form-wrapper .ff-el-group .ff-btn-submit {
    background-color: #111d59 !important;
}

.custom-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.custom-popup-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.custom-popup-close {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.custom-popup-close:hover {
    color: black;
}
.custom-login-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.custom-login-popup .popup-content {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
}

.custom-login-popup .popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
}
button[name="register"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
form.woocommerce-ResetPassword.lost_reset_password {
    margin: auto;
    width: 900px;
    padding: 10px;
}
.woocommerce {
    width: 1120px;
    margin: auto;
}