.evs-add-to-quote,
.evs-quote-form button,
.evs-quote-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f3f6ff;
  color: #21356b;
  cursor: pointer;
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  padding: 11px 18px;
  text-decoration: none;
  transition: .2s ease;
}

.evs-add-to-quote:hover,
.evs-quote-empty a:hover {
  background: #21356b;
  color: #fff;
}

.evs-add-to-quote.is-added {
  background: #e6f7ee;
  color: #2fae6b;
}

.evs-quote-buybar {
  direction: rtl;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px;
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: 560px;
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
}

.evs-quote-buybar .evs-quote-main-button {
  min-height: 60px;
  border-radius: 999px;
  background: linear-gradient(90deg, #258ce9 0%, #57c4b8 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(35, 154, 241, .22);
  font-size: 16px;
  padding: 14px 26px;
}

.evs-quote-buybar .evs-quote-main-button:hover {
  background: linear-gradient(90deg, #1f7fd4 0%, #48bbb0 100%);
  color: #fff;
}

.evs-quote-buybar .evs-quote-main-button.is-added {
  background: linear-gradient(90deg, #2fae6b 0%, #4ec3b2 100%);
  color: #fff;
}

.evs-quote-tag-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 4px 1px;
  transform: rotate(45deg);
}

.evs-quote-tag-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 4px;
  height: 4px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.evs-quote-qty {
  direction: ltr;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  min-height: 60px;
  border: 1px solid #e3e8f2;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 35, 74, .06);
  overflow: hidden;
}

.evs-quote-qty button,
.evs-quote-qty input {
  width: 100%;
  height: 100%;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: #21356b;
  text-align: center;
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.evs-quote-qty button {
  cursor: pointer;
}

.evs-quote-qty button:hover {
  background: #f5f8ff;
}

.evs-quote-qty input {
  -moz-appearance: textfield;
  color: #18244d;
  font-size: 16px;
  font-weight: 900;
}

.evs-quote-qty input::-webkit-outer-spin-button,
.evs-quote-qty input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.evs-quote-plus {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(35, 154, 241, .14);
  font-size: 17px;
  line-height: 1;
}

.evs-quote-count {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f6ff;
  color: #21356b;
  text-decoration: none;
}

.evs-quote-icon {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 3px 3px 6px 6px;
}

.evs-quote-icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 4px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.evs-quote-count-number {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #239af1;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.evs-rfq-page {
  --evs-navy: #21356b;
  --evs-navy-900: #16234a;
  --evs-teal: #4ec3b2;
  --evs-sky: #239af1;
  --evs-line: #e6e9f0;
  --evs-line-2: #eef1f6;
  --evs-mist: #f5f7fb;
  --evs-slate: #566079;
  --evs-danger: #d94b4b;
  direction: rtl;
  color: #12161f;
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
}

.evs-rfq-page * {
  box-sizing: border-box;
}

.evs-rfq-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2vw, 32px);
}

.evs-rfq-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(44px, 6vw, 76px);
  background: linear-gradient(135deg, #16234a 0%, #21356b 52%, #314d98 100%);
  color: #dbe4ff;
}

.evs-rfq-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.evs-rfq-mesh::before,
.evs-rfq-mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .45;
}

.evs-rfq-mesh::before {
  width: 520px;
  height: 520px;
  inset-block-start: -120px;
  inset-inline-end: -80px;
  background: radial-gradient(circle, #4ec3b2, transparent 65%);
}

.evs-rfq-mesh::after {
  width: 480px;
  height: 480px;
  inset-block-end: -160px;
  inset-inline-start: -100px;
  background: radial-gradient(circle, #239af1, transparent 65%);
  opacity: .35;
}

.evs-rfq-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #9aa9d6;
  font-size: 13px;
}

.evs-rfq-crumbs a {
  color: #9aa9d6;
  text-decoration: none;
}

.evs-rfq-crumbs span:last-child {
  color: #72ded0;
}

.evs-rfq-hero h1 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
}

.evs-rfq-hero p {
  max-width: 660px;
  margin: 16px 0 0;
  color: #aebbe0;
  font-size: 17px;
  line-height: 1.9;
}

.evs-rfq-section {
  padding-block: clamp(52px, 6vw, 86px);
  background: #fff;
}

.evs-rfq-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: start;
}

.evs-rfq-items,
.evs-rfq-form {
  overflow: hidden;
  border: 1px solid var(--evs-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22,35,74,.08);
}

.evs-rfq-items-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--evs-line);
}

.evs-rfq-items-head h3,
.evs-rfq-form h3 {
  margin: 0;
  color: var(--evs-navy-900);
  font-size: 20px;
  font-weight: 900;
}

.evs-rfq-clear {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--evs-danger);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.evs-rfq-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--evs-line-2);
}

.evs-rfq-line:last-child {
  border-bottom: 0;
}

.evs-rfq-img {
  display: grid;
  place-items: center;
  flex: none;
  width: 66px;
  height: 66px;
  border: 1px solid var(--evs-line);
  border-radius: 16px;
  background: radial-gradient(120% 120% at 50% 0%, #fff, #eef2f8);
  padding: 6px;
}

.evs-rfq-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.evs-rfq-info {
  min-width: 0;
  flex: 1;
}

.evs-rfq-info b {
  display: block;
  color: var(--evs-navy-900);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.evs-rfq-info span {
  display: block;
  margin-top: 3px;
  color: #7c869c;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  text-align: right;
}

.evs-rfq-stepper {
  direction: ltr;
  display: flex;
  align-items: center;
  flex: none;
  height: 42px;
  overflow: hidden;
  border: 1px solid var(--evs-line);
  border-radius: 999px;
  background: #fff;
}

.evs-rfq-stepper button,
.evs-rfq-stepper input {
  width: 38px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--evs-navy);
  text-align: center;
  font-weight: 900;
}

.evs-rfq-stepper button {
  cursor: pointer;
  font-size: 20px;
}

.evs-rfq-stepper input {
  width: 44px;
  -moz-appearance: textfield;
  font-size: 14px;
}

.evs-rfq-stepper input::-webkit-outer-spin-button,
.evs-rfq-stepper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.evs-rfq-remove {
  flex: none;
  border: 0;
  background: transparent;
  color: #9aa4ba;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.evs-rfq-remove:hover {
  color: var(--evs-danger);
}

.evs-rfq-form {
  position: sticky;
  top: 96px;
  padding: 26px;
}

.evs-rfq-form h3 {
  margin-bottom: 20px;
}

.evs-rfq-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.evs-rfq-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  color: #2b3242;
  font-size: 14px;
  font-weight: 800;
}

.evs-rfq-form input,
.evs-rfq-form select,
.evs-rfq-form textarea {
  width: 100%;
  border: 1.5px solid var(--evs-line);
  border-radius: 14px;
  background: #fff;
  color: #12161f;
  font: inherit;
  font-size: 14px;
  padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.evs-rfq-form select {
  cursor: pointer;
}

.evs-rfq-form textarea {
  min-height: 130px;
  line-height: 1.7;
  resize: vertical;
}

.evs-rfq-form input:focus,
.evs-rfq-form select:focus,
.evs-rfq-form textarea:focus {
  outline: none;
  border-color: var(--evs-sky);
  box-shadow: 0 0 0 4px rgba(35,154,241,.14);
}

.evs-rfq-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
}

.evs-rfq-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--evs-sky);
}

.evs-rfq-submit,
.evs-rfq-whatsapp,
.evs-rfq-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.evs-rfq-submit {
  background: linear-gradient(90deg, #239af1, #4ec3b2);
  color: #fff;
  box-shadow: 0 12px 26px rgba(35,154,241,.28);
}

.evs-rfq-whatsapp {
  margin-top: 12px;
  background: #25d366;
  color: #053d21;
  box-shadow: 0 12px 26px rgba(37,211,102,.25);
}

.evs-rfq-note {
  margin: 18px 0 0;
  color: #7c869c;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}

.evs-rfq-empty {
  padding: 56px 24px;
  color: var(--evs-slate);
  text-align: center;
}

.evs-rfq-empty-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 3px solid var(--evs-teal);
  border-radius: 14px 14px 14px 4px;
  transform: rotate(45deg);
}

.evs-rfq-empty h3 {
  margin: 22px 0 8px;
  color: var(--evs-navy-900);
  font-size: 22px;
}

.evs-rfq-empty p {
  max-width: 420px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.evs-rfq-empty a {
  width: auto;
  min-width: 180px;
  background: var(--evs-navy);
  color: #fff;
  padding-inline: 22px;
}

.evs-quote-page {
  direction: rtl;
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 20px 70px;
  color: #12161f;
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
}

.evs-quote-page-head {
  margin-bottom: 28px;
  text-align: center;
}

.evs-quote-page-head span {
  color: #4ec3b2;
  font-size: 13px;
  font-weight: 900;
}

.evs-quote-page-head h1 {
  margin: 6px 0 10px;
  color: #16234a;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
}

.evs-quote-page-head p {
  max-width: 680px;
  margin: 0 auto;
  color: #566079;
  line-height: 1.9;
}

.evs-quote-alert,
.evs-quote-empty {
  border: 1px solid #e6e9f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22,35,74,.08);
  padding: 28px;
  text-align: center;
}

.evs-quote-alert {
  margin-bottom: 24px;
  background: #e6f7ee;
  color: #2fae6b;
  font-weight: 900;
}

.evs-quote-empty h2 {
  margin: 0 0 16px;
  color: #16234a;
}

.evs-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.evs-quote-items,
.evs-quote-form {
  border: 1px solid #e6e9f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22,35,74,.08);
}

.evs-quote-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 82px auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eef1f6;
}

.evs-quote-item:last-child {
  border-bottom: 0;
}

.evs-quote-item img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 14px;
  background: #f5f7fb;
}

.evs-quote-item h3 {
  margin: 0 0 5px;
  color: #16234a;
  font-size: 16px;
  font-weight: 900;
}

.evs-quote-item p {
  direction: ltr;
  margin: 0;
  color: #7c869c;
  text-align: right;
  font-size: 12px;
}

.evs-quote-item input {
  width: 72px;
  height: 42px;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  text-align: center;
  font-weight: 800;
}

.evs-quote-remove {
  border: 0;
  background: none;
  color: #d94b4b;
  cursor: pointer;
  font-weight: 900;
}

.evs-quote-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.evs-quote-form h2 {
  margin: 0;
  color: #16234a;
  font-size: 20px;
  font-weight: 900;
}

.evs-quote-form label {
  display: grid;
  gap: 7px;
  color: #1f2a44;
  font-size: 13px;
  font-weight: 900;
}

.evs-quote-form input,
.evs-quote-form textarea {
  width: 100%;
  border: 1px solid #e6e9f0;
  border-radius: 14px;
  color: #12161f;
  padding: 12px 14px;
}

.evs-quote-form button {
  width: 100%;
  background: #21356b;
  color: #fff;
}

@media (max-width: 900px) {
  .evs-rfq-grid {
    grid-template-columns: 1fr;
  }

  .evs-rfq-form {
    position: static;
  }

  .evs-quote-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .evs-rfq-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .evs-rfq-line {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    padding: 16px;
  }

  .evs-rfq-stepper,
  .evs-rfq-remove {
    grid-column: span 2;
    justify-self: stretch;
  }

  .evs-rfq-stepper {
    justify-content: space-between;
  }

  .evs-rfq-remove {
    min-height: 38px;
    border-radius: 999px;
    background: #fff5f5;
    font-size: 14px;
  }

  .evs-quote-buybar {
    grid-template-columns: 1fr;
  }

  .evs-quote-buybar .evs-quote-main-button,
  .evs-quote-qty {
    min-height: 54px;
  }

  .evs-quote-item {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .evs-quote-item input,
  .evs-quote-remove {
    grid-column: span 2;
    width: 100%;
  }
}


.evs-custom-order-note {
  margin: 0 0 16px;
  padding: 14px 18px;
  border: 1px solid rgba(77, 197, 184, 0.35);
  border-radius: 16px;
  background: rgba(77, 197, 184, 0.1);
  color: #16295c;
  font-weight: 700;
  line-height: 1.8;
}

.evs-cart-buybar .evs-quote-main-button {
  cursor: pointer;
}


.evs-single-product-price {
  margin: 0 0 18px;
  color: #16295c;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}

.evs-single-product-price .woocommerce-Price-amount {
  color: #2f97e5;
  font-weight: 900;
}

.evs-single-product-price del {
  color: #94a3b8;
  font-size: 20px;
  font-weight: 700;
}

.evs-single-product-price ins {
  color: #2f97e5;
  text-decoration: none;
}
