/** Shopify CDN: Minification failed

Line 651:2 Unexpected "{"
Line 651:3 Expected identifier but found "%"
Line 651:36 Unexpected "{"
Line 651:37 Expected identifier but found "%"

**/
 #offerSuccess {
    max-width: 800px;
    margin: 60px auto;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #111;
  }

  #offerSuccess h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 25px;
  }

  .loading-message {
    padding: 10px;
    color: #555;
    font-size: 14px;
    text-align: center;
  }

  .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
/*-----start loader styling-----*/
.loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 8px;
}

.loader-box {
  text-align: center;
}
.relative-container {
  position: relative; /* so overlay can position itself inside */
}

  /* make sure grid is relative so overlay stays on top of it */
  #deviceGrid {
    position: relative;
    min-height: 300px;
  }
/*-----end-----*/
/* .loader-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  z-index: 10;
}

.loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
} */

  .back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .back-link svg {
    margin-right: 5px;
    width: 18px;
    height: 18px;
  }

  .offer-details {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
  }

  .offer-details div {
    width: 48%;
  }

  .offer-details p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .offer-details strong {
    display: block;
    margin-bottom: 2px;
    color: #555;
    font-weight: 500;
  }

  .value {
    color: #0a0a0a;
    font-weight: 600;
  }

  .shipping-btn {
    display: inline-flex;
    align-items: center;
    background-color: #9fc7e3;
    border: none;
    border-radius: 5px;
    padding: 8px 18px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    margin-top: 10px;
  }

  .shipping-btn svg {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    fill: #fff;
  }





.address-wrapper {
  position: relative;
}

.address-suggestions {
  margin-top: -15px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  /* border: 1px solid #ddd; */
  border-radius: 6px;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.suggestion-item {
  text-align: left;
    padding-left: 10px;
  cursor: pointer;
}

.suggestion-item:hover {
  background: #f3f3f3;
}

.no-result {
  padding: 8px 12px;
  color: #777;
  font-style: italic;
}


.offer-form-wrapper {
  flex-basis: 100%;
  width: 100%;
  display: block;
  align-self: flex-start;
    /* optional: make sure it comes after summary */
  background: #fff;
  /* border-radius: 12px; */
  /* padding: 25px; */
  margin-top: 50px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: system-ui, sans-serif;
}
.form-section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}
.form-group, .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
 
}
.form-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  margin-bottom: 20px;
}
.payout-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.payout-option {
  flex: 1 1 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.payout-option svg {
  color: #97c5e4;
  width: 56px;
  height: 56px;
}
/* .payout-option svg.selected {
  color: #FFFFFF;
} */
.payout-option.selected {
  border-color: #97c5e4;
  background: rgb(251 251 251);
}
.payout-option:hover {
  border-color: #97c5e4;
}
.checkbox {
  font-size: 14px;
  color: #333;
  /* display: flex;
  align-items: center; */
  gap: 8px;
  margin: 10px 0;
}
.offer-terms {
  background: #fff8e5;
  border: 1px solid #ffe9b2;
  border-radius: 6px;
 
  font-size: 12px;
  margin-top: 10px;
  color: #444;
}
.offer-terms a {
  color: #1a73e8;
  text-decoration: underline;
}
.lock-offer-btn {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
}
.lock-offer-btn:hover {
  background: #155dc1;
}




/* ===== Offer Summary Styles ===== */
.offer-summary-container {
   
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 10px;
  margin-top: 20px;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  animation: fadeIn 0.3s ease;
}

.offer-summary-title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.offer-summary-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.offer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9fb;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.2s ease;
}

.offer-item:hover {
  background: #f2f6ff;
}

.offer-item-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 80%;
}

.offer-item-left img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.offer-item-left h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.offer-item-left p {
  font-size: 14px;
  margin: 2px 0;
  color: #555;
}

.offer-item-right {
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  color: #1a73e8;
  min-width: 80px;
}

.offer-summary-footer {
  border-top: 1px solid #e4e4e7;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-total span {
  font-size: 16px;
  color: #333;
}

.offer-total strong {
  font-size: 20px;
  color: #1a73e8;
}

.offer-confirm-btn {
  background: #1a73e8;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.offer-confirm-btn:hover {
  background: #155ec0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
































.device-selector-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  margin-bottom: 15px;
}
.page-title {
  font-size: 20px;
  margin-bottom: 25px;
  color: #000;
}
.page-title span {
  color: #3498db;
}
.device-search {
  width: 100%;
  max-width: 500px;
  padding: 10px 15px;
  margin-bottom: 30px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}
.device-search:focus {
  border-color: #3498db;
  box-shadow: 0 0 5px rgba(52,152,219,0.3);
}
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}
.device-card,
.model-card,
.connectivity-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  /* padding: 5px 5px; */
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 200px;
}
.carrier-card {
  width:90px;
  height:40px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  padding: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.carrier-card img {
  height: 30px;
  max-width: 80px;
  object-fit: contain;
}
.device-card:hover,
.model-card:hover,
.connectivity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.device-card:hover {
  background: #97c5e4;
  color: #FFFFFF;
}
.model-card:hover {
  border-color: #97c5e4;
}
.device-card img,
.model-card img,
.connectivity-card img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.model-card h4,
.connectivity-card h4 {
  font-size: 15px;
  color: #333;
  margin: 0;
}
.model-card p {
  font-size: 14px;
  color: #3498db;
  margin-top: 5px;
}

/* Accordion */
.accordion {
  max-width: 750px;
  margin: 0px auto;
  font-family: "Inter", sans-serif;
  width: 100%;
}
.accordion-item {
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 18px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  background: #f7f7f7;
  cursor: pointer;
  user-select: none;
  border-radius: 5px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.accordion-header::after {
  content: "▾";
  font-size: 14px;
  color: #777;
  transition: transform 0.3s ease;
}
.accordion-header.active {
  background: #f5f9ff;
  box-shadow: 0 0 0 2px #3b82f6 inset;
}
.accordion-header.active::after {
  transform: rotate(-180deg);
}
.accordion-content {
  display: none;
  padding: 5px 20px 20px 20px;
  border:none;
  text-align: center;
}
.accordion-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
#carrierList {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.connectivity-card {
  width: 90px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.connectivity-card:hover {
  border-color: #3b82f6;
  transform: translateY(-3px);
}
.condition-card {
  padding:10px;
  border: 1px solid #e5e7eb;
  border-radius:8px;
  background:#fff;
  transition: all 0.3s ease;
  cursor:pointer;
}
.condition-card.open {
  {% comment %} background:#f9fafb; {% endcomment %}
  border-color:#3b82f6;
}
.condition-card p {
  margin:0;
}
.condition-details ul {
  list-style:none;
  padding-left:0;
}

.capacity-option
{
   padding:3px;
   border: 1px solid #e5e7eb;
   border-radius:5px;
   cursor:pointer;
}
.condition-details li {
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-bottom:8px;
}
.condition-details i {
  color:green;
  font-size:18px;
  margin-top:2px;
}