.elementor-3230 .elementor-element.elementor-element-13a22a3{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-3230 .elementor-element.elementor-element-c59914f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3230 .elementor-element.elementor-element-a0e5aee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3230 .elementor-element.elementor-element-2debb80 .eael-contact-form.eael-fluent-form-wrapper .ff-el-group .ff-btn-submit{background-color:#409EFF !important;color:#ffffff !important;}@media(min-width:768px){.elementor-3230 .elementor-element.elementor-element-c59914f{--width:50%;}.elementor-3230 .elementor-element.elementor-element-a0e5aee{--width:50%;}}/* Start custom CSS for shortcode, class: .elementor-element-4f682a0 *//* === Custom Cart Wrapper === */
.custom-cart-wrapper {
  max-width: 900px;
  margin: auto;
  font-family: 'Inter', sans-serif;
  padding: 0 15px;
}

/* === Table Header === */
.custom-cart-header {
  display: grid;
  grid-template-columns: 60px 100px 1fr 80px;
  padding: 12px 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 2px solid #999;
  background-color: #f9f9f9;
}

/* === Cart List Container === */
.custom-cart-list {
  display: flex;
  flex-direction: column;
}

/* === Cart Item === */
.custom-cart-item {
  display: grid;
  grid-template-columns: 60px 100px 1fr 80px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  overflow: visible !important;
}

/* === Product Thumbnail === */
.custom-cart-item .product-thumb img {
  width: 60px;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* === Product Name Link === */
.custom-cart-item .product-name a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.custom-cart-item .product-name a:hover {
  color: #cc0000;
  text-decoration: underline;
}

/* === Remove Trash Icon (Clean, No Circle) === */
.custom-cart-item .product-remove {
  overflow: visible !important;
}

.custom-cart-item .product-remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: auto;
  height: auto;
  overflow: visible !important;
  text-decoration: none;
  cursor: pointer;
}

.custom-cart-item .product-remove a svg {
  width: 20px;
  height: 20px;
  fill: red;
  display: block;
  pointer-events: none;
}

.custom-cart-item .product-remove a:hover svg {
  fill: #a30000;
}

/* === Button Row === */
.cart-buttons-inline {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* === Button Styling === */
.cart-buttons-inline .button {
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  color: #cc0000;
  border: 2px solid #cc0000;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cart-buttons-inline .button:hover {
  background-color: #cc0000;
  color: #fff;
}

/* === Responsive Styles === */
@media (max-width: 768px) {
  .custom-cart-header {
    display: none; /* Hide table header on mobile */
  }

  .custom-cart-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 12px;
    border-radius: 6px;
    background: #fdfdfd;
  }

  .custom-cart-item .sr-no,
  .custom-cart-item .product-thumb,
  .custom-cart-item .product-name,
  .custom-cart-item .product-remove {
    width: 100%;
  }

  .custom-cart-item .product-name a {
    font-size: 15px;
  }

  .custom-cart-item .product-remove {
    text-align: right;
  }

  .cart-buttons-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-buttons-inline .button {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */