/* =====================================================
   Elite Commerce – Styles
   ===================================================== */

:root {
  --eca-blue:        #EC8B6B;
  --eca-blue-dark:   #EC8B6B;
  --eca-blue-light:  #EC8B6B;
  --eca-text:       #353a3f;
  --eca-muted:      #666;
  --eca-border:     #e0e0e0;
  --eca-bg:         #F5F0EA;
  --eca-white:      #ffffff;
  --eca-radius:     4px;
  --eca-shadow:     0 2px 12px rgba(0,0,0,.08);
  --eca-transition: 0.3s ease-in-out;
}

/* ── Reset inside plugin ── */
.eca-cart-wrap *,
.eca-checkout-wrap *,
.eca-thankyou-wrap * {
  box-sizing: border-box;
}

/* =====================================================
   PAGE TITLES
   ===================================================== */
.eca-page-title {
  font-size: 37px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid #EC8B6B;
  display: inline-block;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.eca-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  line-height: 1;
}
.eca-btn-primary {
  background: #EC8B6B;
  color: #ffffff !important;
  border-color: #EC8B6B;
}
.eca-btn-primary:hover {
  background: #EC8B6B;
  border-color: #EC8B6B;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(236,139,107,.3);
}
.eca-btn-outline {
  background: transparent;
  color: #EC8B6B;
  border-color: #EC8B6B;
}
.eca-btn-outline:hover {
  background: #EC8B6B;
  color: #ffffff;
}

/* =====================================================
   ADD TO CART / BUY NOW BLOCK
   ===================================================== */
.eca-product-cart-options {
}
.eca-price-bar {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--eca-text);
}
.eca-price-label {
  font-weight: 600;
}
.eca-price-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--eca-blue);
}
.eca-price-suffix {
  color: var(--eca-muted);
  font-size: 13px;
}
.eca-atc-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =====================================================
   EMPTY CART
   ===================================================== */
.eca-empty-cart {
  text-align: center;
  padding: 60px 20px;
}
.eca-empty-icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: .5;
}
.eca-empty-cart p {
  font-size: 18px;
  color: var(--eca-muted);
  margin-bottom: 24px;
}

/* =====================================================
   CART TABLE
   ===================================================== */
.eca-cart-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 0 40px;
}

.eca-cart-table-wrap {
  overflow-x: auto;
  border-radius: 4px;
  box-shadow: var(--eca-shadow);
  background: #ffffff;
}

.eca-cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.eca-cart-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: #2a2a2a;
  border-bottom: 2px solid var(--eca-border);
  white-space: nowrap;
  background: #f1eee4;
}
.eca-cart-table tbody td {
  padding: 16px;
  border-bottom: 1px solid var(--eca-border);
  vertical-align: middle;
}
.eca-cart-table tfoot td {
  padding: 16px;
}

/* Item info */
.eca-item-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.eca-item-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--eca-border);
  flex-shrink: 0;
}
.eca-item-name {
  font-weight: 600;
  color: #353a3f;
}

/* Qty controls */
.eca-qty-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.eca-qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: #EC8B6B;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease-in-out;
  flex-shrink: 0;
}
.eca-qty-btn:hover { background: #EC8B6B; }
.eca-qty-input {
  width: 52px;
  height: 34px;
  text-align: center;
  border: 2px solid var(--eca-border);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  -moz-appearance: textfield;
}
.eca-qty-input::-webkit-inner-spin-button,
.eca-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.eca-update-btn {
  padding: 0 14px;
  height: 34px;
  background: #EC8B6B;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  white-space: nowrap;
}
.eca-update-btn:hover { background: #EC8B6B; }

/* Remove */
.eca-remove-btn {
  padding: 6px 14px;
  background: #EC8B6B;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease-in-o
}
.eca-remove-btn:hover { background: #EC8B6B; }

/* Totals */
.eca-total-row td {
  border-top: 2px solid var(--eca-border);
}
.eca-total-label {
  text-align: right;
  font-weight: 600;
  font-size: 16px;
  color: #2a2a2a;
}
.eca-total-val {
  font-weight: 700;
  font-size: 18px;
  color: #EC8B6B;
}

/* Cart actions */
.eca-cart-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Row removing animation */
.eca-cart-row.eca-removing {
  opacity: 0;
  transition: opacity .3s ease;
}
.eca-empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: .5;
    display: flex;
    justify-content: center;
}
/* =====================================================
   CHECKOUT V2 – REDESIGNED LAYOUT
   ===================================================== */

/* ── Wrapper & Page Title ── */
.eca-checkout-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0 60px;
}

/* Step indicator bar */
.eca-steps-bar {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.eca-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #aab;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.eca-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d0d4e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #aab;
  background: #fff;
  transition: all .3s;
}
.eca-step-done .eca-step-dot {
  background: #EC8B6B;
  border-color: #EC8B6B;
  color: #fff;
}
.eca-step-done { color: #EC8B6B; }
.eca-step-active .eca-step-dot {
  background: #EC8B6B;
  border-color: #EC8B6B;
  color: #fff;
  box-shadow: 0 0 0 4px #EC8B6B22;
}
.eca-step-active { color: #EC8B6B; }
.eca-step-line {
  flex: 1;
  height: 2px;
  background: #e0e4f4;
  margin: 0 6px;
  margin-bottom: 18px;
}

/* ── V2 Grid layout ── */
.eca-checkout-v2-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .eca-checkout-v2-layout { grid-template-columns: 1fr; }
}

/* ── Section blocks (numbered) ── */
.eca-v2-section {
  margin-bottom: 28px;
}
.eca-v2-section-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.eca-v2-section-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #EC8B6B;
  background: rgba(236,139,107,.08);
  border-radius: 6px;
  padding: 6px 10px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}
.eca-v2-section-title {
  font-size: 17px;
  font-weight: 700;
  color: #1e2030;
  margin: 0 0 3px;
}
.eca-v2-section-sub {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* ── V2 card ── */
.eca-v2-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  padding: 28px;
}
.eca-v2-card-inner {
  padding: 24px 28px;
}

/* ── V2 form fields ── */
.eca-v2-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.eca-v2-field:last-child { margin-bottom: 0; }
.eca-v2-label {
  font-size: 12px;
  font-weight: 700;
  color: #4a4f6a;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.eca-req { color: #e74c3c; }

.eca-v2-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.eca-v2-three-col {
  grid-template-columns: 1fr 1fr 1fr;
}
.eca-v2-dims-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.eca-v2-section-checkbox a{
 color : var(--primary-color);
}
.eca-v2-section-checkbox {
  margin: 0;
}
@media (max-width: 600px) {
  .eca-v2-field-row { grid-template-columns: 1fr; }
  .eca-v2-three-col { grid-template-columns: 1fr; }
  .eca-v2-dims-row  { grid-template-columns: 1fr 1fr; }
   .eca-cart-wrap { padding: 24px 40px 40px; }
	.eca-cart-count { top: 2px !important; }
    .email-field { margin-top: 30px;}
}

/* ── Input styles (V2 form) ── */
.eca-checkout-v2 input[type="text"],
.eca-checkout-v2 input[type="email"],
.eca-checkout-v2 input[type="tel"],
.eca-checkout-v2 input[type="number"],
.eca-checkout-v2 select,
.eca-checkout-v2 textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde0ef;
  border-radius: 8px;
  font-size: 14px;
  color: #1e2030;
  background-color: #EC8B6B09;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.eca-checkout-v2 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%234D6FD8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.eca-checkout-v2 input:focus,
.eca-checkout-v2 select:focus,
.eca-checkout-v2 textarea:focus {
  border-color: #EC8B6B;
  box-shadow: 0 0 0 3px rgba(236,139,107,.14);
  background-color: #fff;
}
.eca-checkout-v2 textarea { resize: vertical; min-height: 100px; }
.eca-err { color: #e74c3c; font-size: 12px; display: none; }
.eca-v2-field.has-error input,
.eca-v2-field.has-error select,
.eca-v2-field.has-error textarea { border-color: #e74c3c; }
.eca-v2-field.has-error .eca-err { display: block; }

/* Phone wrap */
.eca-phone-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #dde0ef;
  border-radius: 8px;
  overflow: hidden;
  background: #EC8B6B09;
  transition: border-color .25s;
}
.eca-phone-wrap:focus-within { border-color: #EC8B6B; }
.eca-phone-flag {
  padding: 0 12px;
  font-size: 13px;
  color: #888;
  white-space: nowrap;
  background: #EC8B6B11;
  border-right: 1px solid #dde0ef;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.eca-phone-wrap input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

/* ── Form bottom: captcha + submit ── */
.eca-v2-bottom {
  margin-top: 4px;
}
.eca-fake-captcha {
  border: 1px solid #dde0ef;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
  background: #f7f8fc;
  font-size: 14px;
  color: #1e2030;
  margin-bottom: 20px;
}
.eca-fake-captcha label { display: flex; align-items: center; gap: 10px; cursor: pointer; }

/* Form message */
#eca-form-msg {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: none;
  font-size: 14px;
}
#eca-form-msg.eca-msg-error   { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c6; display: block; }
#eca-form-msg.eca-msg-success { background: #eafaf1; color: #1e8449; border: 1px solid #a9dfbf; display: block; }

/* Submit button V2 */
.eca-v2-submit-btn {
  width: 100%;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  border-radius: 10px;
  letter-spacing: .4px;
  background: linear-gradient(135deg, #EC8B6B 0%, #EC8B6B 100%);
  box-shadow: 0 4px 18px rgba(236,139,107,.35);
  transition: transform .2s, box-shadow .2s;
}
.eca-v2-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236,139,107,.45);
}
.eca-submit-arrow {
  margin-left: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════
   RIGHT SIDEBAR
═══════════════════════════════ */
.eca-v2-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Panel base */
.eca-v2-panel {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  overflow: hidden;
}
.eca-v2-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 14px;
  border-bottom: 1px solid #edf0f7;
}
.eca-v2-panel-header svg { color: #EC8B6B; flex-shrink: 0; }
.eca-v2-panel-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1e2030;
  margin: 0;
  flex: 1;
}
.eca-v2-item-count {
  font-size: 11px;
  font-weight: 700;
  background: #EC8B6B33;
  color: #EC8B6B;
  border-radius: 20px;
  padding: 3px 10px;
}

/* Items list */
.eca-v2-items-list {
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 200px;
  overflow-y: auto;
}
.eca-v2-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eca-v2-item-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #edf0f7;
  flex-shrink: 0;
}
.eca-v2-item-placeholder {
  width: 48px;
  height: 48px;
  background: #EC8B6B11;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.eca-v2-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.eca-v2-item-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e2030;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eca-v2-item-qty {
  font-size: 12px;
  color: #888;
}
.eca-v2-item-price {
  font-size: 13px;
  font-weight: 700;
  color: #EC8B6B;
  white-space: nowrap;
}

/* Totals */
.eca-v2-totals {
  padding: 14px 22px 18px;
  border-top: 1px solid #edf0f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eca-v2-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
}
.eca-v2-free {
  font-size: 12px;
  font-weight: 700;
  color: #27ae60;
  background: rgba(39,174,96,.1);
  padding: 2px 8px;
  border-radius: 20px;
}
.eca-v2-grand-total {
  font-size: 16px;
  font-weight: 800;
  color: #1e2030;
  border-top: 1px solid #edf0f7;
  padding-top: 10px;
  margin-top: 2px;
}
.eca-v2-grand-total span:last-child { color: #EC8B6B; }

/* ─── Payment Options ─── */
.eca-v2-payment-panel .eca-v2-panel-header {
  border-bottom: 1px solid #edf0f7;
}

.eca-v2-pay-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  margin: 8px 14px;
  border: 2px solid #edf0f7;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  position: relative;
}
.eca-v2-pay-option:hover {
  border-color: #EC8B6B33;
  background: #EC8B6B11;
}
.eca-v2-pay-option.eca-v2-pay-selected {
  border-color: #EC8B6B;
  background: rgba(236,139,107,.05);
  box-shadow: 0 2px 10px rgba(236,139,107,.12);
}

/* Payment icon bubbles */
.eca-v2-pay-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eca-pay-icon-bank  { background: #e8edfb; color: #EC8B6B; }
.eca-pay-icon-paypal { background: #e8f4fd; color: #0070ba; }
.eca-pay-icon-later { background: #fef3e8; color: #e67e22; }

.eca-v2-pay-info {
  flex: 1;
  min-width: 0;
}
.eca-v2-pay-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1e2030;
  margin-bottom: 2px;
}
.eca-v2-pay-info span {
  font-size: 12px;
  color: #888;
}

/* Check circle */
.eca-v2-pay-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #d0d4e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
  color: transparent;
}
.eca-v2-pay-option.eca-v2-pay-selected .eca-v2-pay-check {
  background: #EC8B6B;
  border-color: #EC8B6B;
  color: #fff;
}

.eca-v2-pay-note {
  font-size: 11.5px;
  color: #aaa;
  padding: 10px 20px 0px;
  margin: 0;
}
.eca-v2-pay-note a{
  color : var(--primary-color);
	text-decoration : underline;
}
/* ─── Trust strip ─── */

.eca-v2-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: #fff;
  border-radius: 10px;
  font-size: 10.5px;
  font-weight: 700;
  color: #555;
  text-align: center;
  letter-spacing: .3px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.eca-v2-trust-item svg { color: #EC8B6B; }

/* Legacy compatibility */
.eca-form-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: var(--eca-shadow);
  padding: 32px;
}
.eca-form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.eca-two-col   { grid-template-columns: 1fr 1fr; }
.eca-three-col { grid-template-columns: 1fr 1fr 1fr; }
.eca-four-col  { grid-template-columns: 1fr 1fr 1fr 1fr; }
.eca-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.eca-summary-card, .eca-payment-card { background:#fff; border-radius:4px; box-shadow:var(--eca-shadow); padding:24px; margin-bottom:20px; }
.eca-summary-row { display:flex; justify-content:space-between; font-size:14px; color:#353a3f; padding:8px 0; }
.eca-summary-total { font-weight:600; font-size:16px; color:#2a2a2a; }
.eca-free-shipping { color:#27ae60; font-weight:600; }
.eca-summary-divider { height:1px; background:var(--eca-border); margin:4px 0; }
.eca-payment-option { border:2px solid var(--eca-border); border-radius:4px; padding:14px 16px; display:flex; align-items:flex-start; gap:12px; cursor:pointer; transition:border-color .3s; }
.eca-payment-option.selected { border-color:#EC8B6B; }
.eca-no-hidden-fees { font-size:12px; color:var(--eca-muted); margin-top:12px; }
.eca-trust-badges { display:flex; gap:12px; margin-bottom:16px; }
.eca-badge { flex:1; border-radius:4px; padding:12px; display:flex; align-items:center; gap:8px; font-size:11px; }
.eca-badge-ssl { background:#EC8B6B; color:#fff; }
.eca-badge-safe { background:#2a2a2a; color:#fff; }
.eca-payment-methods { display:flex; gap:8px; flex-wrap:wrap; }
.eca-pm-option { flex:1; min-width:70px; padding:10px 8px; border:1.5px solid var(--eca-border); border-radius:4px; text-align:center; font-size:12px; font-weight:600; cursor:pointer; transition:all .3s; color:#353a3f; }
.eca-pm-option.active, .eca-pm-option:hover { border-color:#EC8B6B; color:#EC8B6B; }
.eca-submit-btn { width:100%; padding:14px; font-size:15px; justify-content:center; margin-top:8px; }

/* =====================================================
   THANK YOU PAGE
   ===================================================== */
.eca-thankyou-wrap {
  max-width: 560px;
  margin: 60px auto;
  padding: 24px;
  text-align: center;
}
.eca-thankyou-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: var(--eca-shadow);
  padding: 48px 40px;
}
.eca-ty-icon { font-size: 64px; margin-bottom: 20px; }
.eca-thankyou-card h2 { font-size: 32px; font-weight: 600; color: #2a2a2a; margin: 0 0 14px; }
.eca-thankyou-card p  { color: var(--eca-muted); font-size: 15px; line-height: 1.7; margin: 0 0 28px; }

/* =====================================================
   CART ICON (header + floating)
   ===================================================== */
.eca-cart-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  padding: 4px;
}
.eca-cart-icon-nav {
  margin-left: 8px;
}
.eca-cart-svg {
  display: block;
}
.eca-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #EC8B6B;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #fff;
  animation: eca-pop .2s ease;
}
@keyframes eca-pop {
  0%   { transform: scale(0); }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Floating icon */
.eca-cart-icon-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #EC8B6B;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(236,139,107,.45);
  z-index: 9999;
  justify-content: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.eca-cart-icon-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(236,139,107,.55);
  color: #fff;
}
.eca-cart-icon-float .eca-cart-count {
  top: -4px;
  right: -4px;
  border-color: transparent;
}

/* =====================================================
   TOAST NOTIFICATION
   ===================================================== */
.eca-toast {
  position: fixed;
  bottom: 90px;
  right: 28px;
  background: #2a2a2a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  max-width: 300px;
}
.eca-toast.eca-toast-show {
  opacity: 1;
  transform: translateY(0);
}
.eca-toast.eca-toast-success { background: #27ae60; }
.eca-toast.eca-toast-error   { background: #EC8B6B; }

/* =====================================================
   RESPONSIVE TWEAKS
   ===================================================== */
@media (max-width: 600px) {
  .eca-form-card { padding: 20px; }
  .eca-cart-icon-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }

  /* Cart: hide table, show cards */
  .eca-cart-table-wrap { overflow-x: visible; box-shadow: none; background: transparent; }
  .eca-cart-table,
  .eca-cart-table thead,
  .eca-cart-table tbody,
  .eca-cart-table tfoot,
  .eca-cart-table tr,
  .eca-cart-table td { display: block; width: 100%; }

  .eca-cart-table thead { display: none; }

  .eca-cart-row {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    margin-bottom: 14px;
    padding: 14px;
    border-bottom: none !important;
  }

  .eca-cart-row .col-item { padding: 0 0 10px 0; border-bottom: 1px solid #e8e8e8; margin-bottom: 10px; }
  .eca-item-thumb { width: 64px; height: 64px; }
  .eca-item-name { font-size: 15px; }

  .eca-cart-row .col-price,
  .eca-cart-row .col-qty,
  .eca-cart-row .col-subtotal {
    padding: 5px 0;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
  }
  .eca-cart-row .col-price::before    { content: "Price";    font-weight: 600; color: #888; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; }
  .eca-cart-row .col-qty::before      { content: "Quantity"; font-weight: 600; color: #888; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; }
  .eca-cart-row .col-subtotal::before { content: "Subtotal"; font-weight: 600; color: #888; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; }

  .eca-cart-row .col-remove { padding: 10px 0 0; border-bottom: none; text-align: right; }
  .eca-remove-btn { width: 100%; }
  .eca-qty-wrap { justify-content: flex-end; }

  .eca-cart-table tfoot { display: block; }
  .eca-total-row {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    padding: 14px;
    margin-top: 4px;
  }
  .eca-total-row .eca-total-label,
  .eca-total-row .eca-total-val { padding: 0; border: none; }
  .eca-total-label { text-align: left; }

  .eca-cart-actions { flex-direction: column; }
  .eca-cart-actions .eca-btn { width: 100%; text-align: center; justify-content: center; }
   .eca-checkout-wrap.eca-checkout-v2{ padding: 24px 30px 60px; }
	.eca-v2-three-col { margin-bottom : 20px;}
}
/* =====================================================
   UPLOAD DESIGN FIELD — drag & drop zone + file list
   ===================================================== */
.eca-v2-upload-zone {
  border: 2px dashed #d9d9d9;
  border-radius: 10px;
  background: #fafafa;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}
.eca-v2-upload-zone:hover,
.eca-v2-upload-zone.eca-drag-over {
  border-color: #EC8B6B;
  background: #fff8f8;
}
.eca-v2-upload-zone.eca-has-files {
  border-color: #c0392b;
  padding: 16px 20px;
}
.eca-upload-zone-inner svg {
  color: #EC8B6B;
  margin-bottom: 10px;
}
.eca-upload-zone-text {
  font-size: 14px;
  color: #444;
  margin: 0 0 4px;
}
.eca-upload-zone-sub {
  font-size: 11px;
  color: #aaa;
  margin: 0 0 14px;
}
.eca-v2-upload-btn {
  display: inline-block;
  background: #EC8B6B;
  color: #fff !important;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.eca-v2-upload-btn:hover { background: #EC8B6B; }

/* File list */
.eca-upload-file-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: none;
}
.eca-upload-file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 6px;
  font-size: 13px;
}
.eca-file-icon { font-size: 18px; flex-shrink: 0; }
.eca-file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  font-weight: 500;
}
.eca-file-size {
  color: #999;
  font-size: 11px;
  flex-shrink: 0;
}
.eca-file-remove {
  background: none;
  border: none;
  color: #bbb;
  font-size: 14px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  flex-shrink: 0;
  transition: color .15s;
}
.eca-file-remove:hover { color: #c0392b; }

/* =====================================================
   TRUST STRIP - SECURE ICONS IMAGE
   ===================================================== */
.eca-v2-trust-strip {
  text-align: center;
  padding: 12px 0 4px;
}

/* Submit button placed in summary column below trust strip */
.eca-summary-submit-btn {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  font-size: 15px;
  justify-content: center;
  display: flex;
}
.eca-v2-secure-icons-img {
  max-width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Upload summary — shown inside zone after files are selected */
.eca-upload-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 10px;
  font-size: 14px;
}
.eca-summary-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #27ae60;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}
.eca-summary-label {
  color: #222;
  font-weight: 600;
}
.eca-add-more-btn {
  background: none;
  border: 1.5px solid #EC8B6B;
  color: #EC8B6B;
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.eca-add-more-btn:hover { background: #c0392b; color: #fff; }

/* File list rows */
.eca-upload-file-item {
  position: relative;
  overflow: hidden;
}
.eca-upload-file-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #27ae60;
  border-radius: 6px 0 0 6px;
}