/* MCN Price Calculator v2.0 — Dropdown Style */
.mcn-calculator {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-antml:serif;
  color: #1c1c1a;
  width: 100%;
  margin: 0;
}

.mcn-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.mcn-row label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #737370;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mcn-row label .mcn-affects {
  background: #f0ede8;
  color: #3a3835;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: none;
}

.mcn-select {
  width: 100%;
  padding: 9px 32px 9px 12px;
  border: 1px solid #d5d5d3;
  border-radius: 8px;
  font-size: 14px;
  color: #1c1c1a;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737370' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .15s;
  font-family: inherit;
}
.mcn-select:focus {
  outline: none;
  border-color: #1c1c1a;
}

.mcn-divider {
  height: 1px;
  background: #e5e5e3;
  margin: 16px 0;
}

/* Quantity grid */
.mcn-qty-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #737370;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mcn-qty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.mcn-qty-btn {
  padding: 8px 4px;
  border: 1px solid #d5d5d3;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #3a3835;
  background: #fafaf9;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.3;
}
.mcn-qty-btn:hover {
  border-color: #1c1c1a;
  background: #fff;
}
.mcn-qty-btn.active {
  background: #1c1c1a;
  border-color: #1c1c1a;
  color: #fff;
}
.mcn-qty-save {
  font-size: 10px;
  font-weight: 400;
  opacity: .65;
}
.mcn-qty-btn.active .mcn-qty-save {
  opacity: .7;
  color: #9ef;
}

/* Price box */
.mcn-price-box {
  background: #1c1c1a;
  border-radius: 10px;
  padding: 16px 18px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mcn-price-left {}
.mcn-price-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .45;
  margin-bottom: 4px;
}
.mcn-price-main {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.mcn-price-currency {
  font-size: 18px;
  font-weight: 300;
  opacity: .6;
}
.mcn-price-amount {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}
.mcn-price-right {
  text-align: right;
}
.mcn-per-unit {
  font-size: 12px;
  opacity: .45;
  margin-bottom: 4px;
}
.mcn-savings-inline {
  font-size: 12px;
  color: #6ee7b7;
  font-weight: 500;
}

/* Buttons */
.mcn-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  background: #166534;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .15s, transform .1s;
  margin-bottom: 8px;
  font-family: inherit;
}
.mcn-call-btn:hover {
  background: #14532d;
  transform: translateY(-1px);
  color: #fff !important;
}

.mcn-sms-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  color: #3a3835 !important;
  border: 1px solid #d5d5d3;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none !important;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
  margin-bottom: 10px;
}
.mcn-sms-btn:hover {
  background: #f5f5f4;
  border-color: #737370;
  color: #1c1c1a !important;
}

.mcn-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #737370;
  padding-top: 4px;
}
.mcn-meta-shipping {
  color: #166534;
  font-weight: 500;
}

/* Animate price */
@keyframes mcnPop {
  0% { transform: scale(.93); opacity: .5; }
  100% { transform: scale(1); opacity: 1; }
}
.mcn-price-amount.pop {
  animation: mcnPop .18s ease forwards;
}
