@charset "UTF-8";
.product-list-container {
  display: flex;
  gap: 20px;
}
.product-list-container.has-sidebar .product-categories-sidebar {
  width: 20%;
  padding: 20px;
  min-width: 200px;
}
.product-list-container.has-sidebar .product-categories-sidebar .sidebar-section {
  margin-bottom: 1.5rem;
}
.product-list-container.has-sidebar .product-categories-sidebar .title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.product-list-container.has-sidebar .product-categories-sidebar .category-item {
  margin-bottom: 10px;
}
.product-list-container.has-sidebar .product-categories-sidebar .category-item input[type=checkbox] {
  margin-right: 10px;
}
.product-list-container.has-sidebar .product-categories-sidebar .category-item label {
  font-size: 14px;
  color: var(--e-global-color-text);
}
.product-list-container.has-sidebar .product-categories-sidebar .category-item input:hover, .product-list-container.has-sidebar .product-categories-sidebar .category-item label:hover {
  cursor: pointer;
}
.product-list-container.has-sidebar .products {
  width: 80%;
}
.product-list-container:not(.has-sidebar) .products {
  width: 100%;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.products.columns-1 .product {
  width: calc(100% - 10px);
}
.products.columns-2 .product {
  width: calc(50% - 10px);
}
.products.columns-3 .product {
  width: calc(33% - 10px);
}
.products.columns-4 .product {
  width: calc(25% - 10px);
}
.products .product {
  width: calc(50% - 10px);
  box-sizing: border-box;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
  position: relative;
  display: flex;
  flex-direction: column;
}
.products .product h2 {
  padding: 20px;
  color: var(--e-global-color-primary);
  font-family: var(--e-global-typography-ea5af34-font-family), Sans-serif;
  font-size: var(--e-global-typography-ea5af34-font-size);
  font-weight: var(--e-global-typography-ea5af34-font-weight);
  line-height: var(--e-global-typography-ea5af34-line-height);
  text-align: center;
  transition: 0.3s;
  margin: 0;
}
.products .product a {
  position: relative;
  min-height: 250px;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.products .product a:hover h2 {
  color: var(--e-global-color-text);
}
.products .product a:hover .img-wrapper img {
  width: 105%;
  max-width: 105%;
}
.products .product .img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
  background-color: var(--e-global-color-text);
  transition: 0.3s;
}
.products .product .img-wrapper .sale-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--e-global-color-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  z-index: 10;
}
.products .product img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.products .product .bottom {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding: 20px;
  padding-top: 0;
  flex-grow: 1;
}
.products .product .price {
  color: var(--e-global-color-text) !important;
  font-size: 18px !important;
}
.products .product .add-to-cart {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}
.products .product .add-to-cart input {
  max-width: 100px;
}
.products .product .add-to-cart button {
  margin-top: 20px;
  background-color: var(--e-global-color-primary) !important;
  font-family: var(--e-global-typography-4d92b8a-font-family), Sans-serif;
  font-size: var(--e-global-typography-4d92b8a-font-size);
  font-weight: var(--e-global-typography-4d92b8a-font-weight);
  color: white !important;
  font-weight: bold !important;
  border-radius: 0;
  transition: 0.3s;
  padding: 20px 30px;
  border: none;
  width: 100%;
}
.products .product .add-to-cart button:hover {
  background-color: #6fac02 !important;
}

.product-sorting {
  margin-bottom: 20px;
}
.product-sorting label {
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
}
.product-sorting select {
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: 0.3s;
}
.product-sorting select:focus {
  border-color: var(--e-global-color-primary);
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--e-global-color-primary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.product-overlay::before {
  content: "";
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--e-global-color-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
button[disabled], a[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.popup-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  color: var(--e-global-color-text);
  padding: 15px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-size: 14px;
  animation: fadeInOut 3s ease-in-out;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.popup-notification .view-cart-link {
  display: inline-block;
  margin-top: 10px;
  background-color: var(--e-global-color-primary);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.popup-notification .view-cart-link:hover {
  background-color: #6fac02;
  color: #fff;
}

.cart-item-quantity .quantity-input {
  max-width: 80px;
}

.product-aanbieding-filter .aanbieding-item {
  font-size: 14px;
}
.product-aanbieding-filter .aanbieding-item input {
  margin-right: 10px;
}
.product-aanbieding-filter .aanbieding-item input:hover, .product-aanbieding-filter .aanbieding-item label:hover {
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: center !important;
  margin: 2rem auto;
}
.pagination.sidebar-enabled {
  padding-left: 20%;
}
.pagination a,
.pagination span {
  margin: 0 3px;
  padding: 5px 10px;
  background: white;
  font-size: 1rem !important;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #0e0e0e;
}
.pagination a:hover {
  background-color: var(--e-global-color-primary);
  color: #0e0e0e;
}
.pagination .current {
  background-color: var(--e-global-color-primary);
  color: #0e0e0e;
}

.pagination .pagination-mobile {
  display: none;
  gap: 15px;
  width: 100%;
  margin-top: 40px;
  font-size: 0.9rem !important;
  justify-content: center;
}
.pagination .pagination-mobile .page-numbers {
  display: flex;
}
.pagination .pagination-mobile .pagination-page-select {
  width: auto;
}
.pagination .pagination-desktop {
  display: flex;
  flex-direction: row;
}
.pagination .page-numbers.disabled {
  background-color: rgb(215, 215, 215);
  cursor: not-allowed;
}

#product-sorting-dropdown {
  padding: 15px;
  max-width: 200px;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
    transform: translateY(20px);
  }
  10%, 90% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1040px) {
  .products .product .img-wrapper {
    height: 150px;
  }
  .products .product .add-to-cart .button {
    padding: 15px 10px;
    font-size: 0.9rem;
    text-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .product-list-container {
    flex-direction: column;
  }
  .product-list-container .product-categories-sidebar {
    width: 100%;
    min-width: auto;
    padding: 10px 0;
  }
  .product-list-container.has-sidebar .products {
    width: 100%;
  }
  .product-list-container.has-sidebar .product-categories-sidebar {
    width: 100%;
    min-width: auto;
    padding: 10px 0;
    display: flex;
  }
  .product-list-container.has-sidebar .product-category-selection.sidebar-section {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    display: flex;
  }
  .product-list-container.has-sidebar .product-category-selection.sidebar-section .title {
    width: 100%;
  }
  .product-list-container .products {
    width: 100%;
  }
  .pagination .pagination-mobile {
    display: flex;
  }
  .pagination .pagination-desktop {
    display: none;
  }
  .pagination.sidebar-enabled {
    padding-left: 0;
  }
}
@media (max-width: 500px) {
  .products .product .img-wrapper {
    height: 120px;
  }
  .products .product h2 {
    font-size: 0.9rem;
    padding: 10px 5px;
  }
  .products .product a {
    min-height: 150px;
  }
}
@media (max-width: 400px) {
  .products .product .img-wrapper {
    height: 80px;
  }
}
/* Step-Based Shopping Cart Widget Styles */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.step-based-shopping-cart {
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.step-cart-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}
.step-cart-progress::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #ffffff !important;
  padding: 0 10px;
  transition: all 0.3s ease;
}
.step.active .step-number {
  background: rgb(160, 207, 79);
  color: #ffffff;
  border-color: rgb(160, 207, 79);
  transform: scale(1.1);
}
.step.active .step-label {
  color: rgb(160, 207, 79);
  font-weight: 600;
}
.step.completed .step-number {
  background: rgb(160, 207, 79);
  color: #ffffff;
  border-color: rgb(160, 207, 79);
}
.step.completed .step-number::after {
  content: "✓";
  font-size: 14px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 14px;
  text-align: center;
  color: #666;
  transition: all 0.3s ease;
}

.step-content {
  display: none;
  padding: 20px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease-in-out;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
}
.step-content.active {
  display: flex;
}
.step-content h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid rgb(160, 207, 79);
  padding-bottom: 10px;
  width: 100%;
}
.step-content .cart-items {
  width: 100%;
}
.step-content .coupon-section {
  width: calc(50% - 15px);
}
.step-content .cart-totals-summary {
  width: calc(50% - 15px);
}
.step-content .step-actions {
  width: 100%;
}
.step-content .shipping-form {
  width: 100%;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}
.cart-item:nth-child(even) {
  background-color: #f8f9fa;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item.updating {
  opacity: 0.6;
  pointer-events: none;
}
.cart-item.removing {
  opacity: 0.3;
  pointer-events: none;
}
.cart-item .cart-item-remove {
  transition: all 0.3s ease;
}
.cart-item .cart-item-remove .remove-item {
  font-size: 1.5rem;
}
.cart-item .cart-item-remove:hover {
  transform: scale(1.25);
}
.cart-item .cart-item-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.cart-item-price {
  color: rgb(160, 207, 79);
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin: 0 15px;
  flex-direction: row;
  gap: 5px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: bold;
  color: var(--e-global-color-text);
}
.quantity-btn:hover {
  background: #6fac02;
  border-color: rgb(160, 207, 79);
}
.quantity-btn:focus {
  background: #ffffff;
  color: var(--e-global-color-text);
}
.quantity-btn.clicked {
  transform: scale(0.9);
  background-color: rgb(160, 207, 79) !important;
  color: #ffffff !important;
}

.quantity-input {
  width: 50px;
  height: 30px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
  font-weight: 600;
}

.cart-item-total {
  font-weight: 600;
  color: #333;
  margin: 0 15px;
}

.remove-item {
  color: #dc3545;
  cursor: pointer;
  padding: 5px;
  font-size: 18px;
  transition: color 0.2s ease;
}
.remove-item:hover {
  color: rgb(209.4151898734, 36.2848101266, 52.8721518987);
  transform: scale(1.1);
}

.form-row {
  display: flex;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}
.form-group:not(:only-child):first-child {
  margin-right: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgb(160, 207, 79);
  box-shadow: 0 0 0 2px rgba(160, 207, 79, 0.1);
}
.form-group input.error,
.form-group select.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}

.validation-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}

.step-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.step-cart-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.step-cart-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.step-cart-btn-primary {
  background: rgb(160, 207, 79) !important;
  color: #ffffff;
}
.step-cart-btn-primary:hover:not(:disabled) {
  background: rgb(147.8705357143, 200.8714285714, 56.5285714286);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(160, 207, 79, 0.3);
}
.step-cart-btn-secondary {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}
.step-cart-btn-secondary:hover:not(:disabled) {
  background: rgb(233.475, 236.55, 239.625);
  border-color: rgb(160, 207, 79);
}

.order-summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgb(233.475, 236.55, 239.625);
  width: 100%;
}
.order-summary h4 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 5px 0;
}
.summary-row.total {
  font-weight: bold;
  font-size: 18px;
  border-top: 2px solid rgb(160, 207, 79);
  padding-top: 15px;
  margin-top: 15px;
  color: rgb(160, 207, 79);
}

.payment-methods {
  margin-bottom: 20px;
}
.payment-methods h4 {
  margin-bottom: 15px;
  color: #333;
}

.payment-method {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.payment-method:hover {
  border-color: rgb(160, 207, 79);
  box-shadow: 0 2px 5px rgba(160, 207, 79, 0.1);
}
.payment-method.selected {
  border-color: rgb(160, 207, 79) !important;
  background-color: rgba(160, 207, 79, 0.05) !important;
}
.payment-method label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}
.payment-method input[type=radio] {
  margin-right: 10px;
  margin-top: 2px;
}

.payment-method-description {
  margin-top: 4px;
  font-size: 14px;
  color: #666;
  font-weight: normal;
  margin-left: 10px;
}

.order-confirmation {
  text-align: center;
  padding: 40px 20px;
  width: 100%;
}
.order-confirmation h4 {
  color: rgb(160, 207, 79);
  margin-bottom: 15px;
  font-size: 24px;
}
.order-confirmation p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgb(160, 207, 79);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
  animation: pulse 2s infinite;
}

.order-details {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: left;
}
.order-details p {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.loading {
  position: relative;
  pointer-events: none;
}
.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 600;
  z-index: 9999;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.3s ease;
  cursor: pointer;
  transition: all 0.3s ease;
}
.step-cart-notification:hover {
  transform: translateX(-5px);
}
.step-cart-notification.success {
  background-color: rgb(160, 207, 79);
}
.step-cart-notification.error {
  background-color: #dc3545;
}
.step-cart-notification.warning {
  background-color: #ffc107;
}
.step-cart-notification.info {
  background-color: rgb(160, 207, 79);
}

/* Cart Totals Summary Styles */
.cart-totals-summary {
  margin-top: 30px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid rgb(160, 207, 79);
}

.cart-totals-summary h4 {
  margin: 0 0 20px 0;
  font-size: 18px;
  color: #333;
  font-weight: 700;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #f8f9fa;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f8f9fa;
}

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

.totals-label {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

.totals-value {
  font-size: 15px;
  color: #333;
  font-weight: 600;
}

.discount-row {
  background: rgba(160, 207, 79, 0.1);
  padding: 12px 15px;
  margin: 8px -5px;
  border-radius: 4px;
  border-bottom: none;
}

.discount-row .totals-label {
  color: rgb(160, 207, 79);
  font-weight: 600;
}

.discount-row .discount-value {
  color: rgb(160, 207, 79);
  font-weight: 700;
  font-size: 16px;
}

.total-row {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 2px solid rgb(160, 207, 79);
  border-bottom: none;
}

.total-row .totals-label {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.total-row .totals-value {
  font-size: 20px;
  font-weight: 700;
  color: rgb(160, 207, 79);
}

/* Coupon Section Styles */
.coupon-section {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.coupon-section h4 {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.coupon-input-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.coupon-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.coupon-input:focus {
  outline: none;
  border-color: rgb(160, 207, 79);
  box-shadow: 0 0 0 2px rgba(160, 207, 79, 0.1);
}

.coupon-message {
  display: none;
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
  margin-top: 10px;
}

.coupon-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.coupon-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.applied-coupons {
  margin-top: 15px;
}

.applied-coupon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgb(160, 207, 79);
  color: white;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.applied-coupon .coupon-code {
  text-transform: uppercase;
}

.applied-coupon .remove-coupon {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  transition: all 0.2s ease;
}

.applied-coupon .remove-coupon:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .step-based-shopping-cart {
    padding: 15px;
  }
  .step-cart-progress {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .step-cart-progress::before {
    display: none;
  }
  .step {
    flex-direction: row;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
  }
  .step .step-number {
    margin-right: 15px;
    margin-bottom: 0;
  }
  .form-row {
    flex-direction: column;
  }
  .step-actions {
    flex-direction: column;
  }
  .cart-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  .cart-item-image {
    align-self: center;
  }
  .cart-item-quantity {
    margin: 0;
    align-self: center;
  }
  .cart-item-total {
    align-self: center;
    margin: 0;
  }
  .order-details p {
    flex-direction: column;
  }
  .step-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid rgb(160, 207, 79);
    padding-bottom: 10px;
    width: 100%;
  }
  .step-content .cart-items {
    width: 100%;
  }
  .step-content .coupon-section {
    width: 100%;
  }
  .step-content .cart-totals-summary {
    width: 100%;
  }
  .step-content .cart-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .step-content .cart-item .cart-item-image {
    width: 25%;
    display: flex;
  }
  .step-content .cart-item .cart-item-details {
    width: 75%;
    display: flex;
    flex-direction: column;
  }
  .step-content .cart-item .cart-item-actions {
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .step-content {
    padding: 15px;
  }
  .step-cart-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  .order-confirmation {
    padding: 20px 10px;
  }
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}

/*# sourceMappingURL=custom-widget-styles.css.map */
