 /* Subscription Form Wrapper */
.subscription-form-wrapper {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 11px 11px 50px rgba(186, 100, 100, 0.15),
  10px 10px 0 rgba(0, 0, 0, .03);
  font-family: "Segoe UI", Roboto, sans-serif;
}

.subscription-form-wrapper input::placeholder {
font-style: normal;
font-size: .9rem;
}

/* General inputs + selects */
.subscription-form-wrapper input,
.subscription-form-wrapper select {
  width: 100%;
  padding: 8px 12px;
  font-style: normal;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
  margin-bottom: 20px; /* consistent spacing */
}

.subscription-form-wrapper input:focus,
.subscription-form-wrapper select:focus {
  border-color: #ffb400;
  outline: none;
}

/* Phone + Verify button */
.phone-verify {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px; /* spacing after row */
  padding:7px 12px;
}

.phone-verify input {
  border: none;
}

@media only screen and (max-width:580px){
.phone-verify input {
  border:solid 1px #ccc;
}}

.phone-verify input,.phone-verify select {
  margin:0;
}

.phone-verify button {
    flex: 0 0 auto;
    padding: 7px 12px;
    background: #ededed;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }

.phone-verify button:hover {
  background: #e6e6e6;
}

#submitOtp{
 background: #ffb400;
    padding: 8px 12px;
    margin-bottom: 1.3rem;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;

}

/* Discount Section */
.discount-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px; /* spacing after row */
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
      border-radius: 6px;
}

.discount-section input {
  flex: 1;
  margin-bottom: 0; /* prevent double margin */
  border: none;
}

.discount-section button {
  padding: 10px 16px;
  background: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}


/* Price Summary */
.price-summary {
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  margin: 20px 0; /* consistent gap */
  font-size: 14px;
}

.price-summary p {
  margin: 5px 0;
  font-size:11px;
  display: flex;
  justify-content: space-between;
}

.price-summary strong {
  font-size: 16px;
}

input:-internal-autofill-selected{
background: none !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
}


@media only screen and (min-width:580px){
.form-notice{
  display:none;
}
}

/* #subscribeBtn default styles are defined below; stray override removed */
/* Subscribe Button */
#subscribeBtn {
  width: 100%;
  padding: 14px 18px;
  background: #ffc107; /* yellow */
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;               /* flexbox for inner content */
  justify-content: space-between; /* text left, arrow right */
  align-items: center;         /* vertical centering */
}

#subscribeBtn:hover {
  background: #ffb400;
}

.subscribe-arrow {
  display: flex;
  width: 100%;                  /* span full width */
  justify-content: space-between; /* spread text + arrow */
  align-items: center;
}

.subs-text {
  flex: 1;
  text-align: left;
  font-size: 12px;
}

.form-notice{
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
}

.subs-icon {
   font-size: 12px;
  font-weight: lighter;
}


.total{
    font-weight: 800;
}

#country_code {
  width: auto;
  min-width: 70px;
  padding: 8px 28px 8px 8px; /* extra right padding for arrow space */
  border: none;
  font-size: 14px;
  background-color: #fff;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* custom arrow using SVG */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10'><path d='M0 0 L5 5 L10 0' stroke='black' fill='none'/></svg>");
  background-repeat: no-repeat;

  /* ⬇️ move arrow inward (25% from left edge) */
  background-position:60% center; 
  background-size: 10px;
}

@media (max-width: 480px) {
  .phone-verify { display: block; }
  .phone-verify input, .phone-verify select, .phone-verify button {
    width: 100%;
    margin-bottom: 10px;
  }
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ffc906;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#verifyMobile {
  transition: all 0.3s ease;
}



/* Greyed-out Subscribe button when locked */
#subscribeBtn.locked {
  opacity: 0.5;
  pointer-events: none;
}

/* After OTP verified — green check style */
#verifyMobile.verified {
  background: #28a745;
  color: #fff;
}
#verifyMobile.verified::after {
  content: "";
  margin-left: 5px;
  font-weight: bold;
}


/* discount section
 */

/* Clean success state */
/* Base layout cleanup */
.discount-section {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 8px 12px;
  max-width: 430px;
  position: relative;
  transition: all 0.3s ease;
}

/* Input look */
.discount-section input {
  flex: 1;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 14px;
  outline: none;
  border: none;
  transition: border 0.3s ease;
}
.discount-section input:focus {
  border-color: #ffb400;
}

/* Apply button */
.discount-section button {
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.discount-section button:disabled {
  opacity: 1;
  cursor: not-allowed;
}

/* Success message styling */
#discount-message {
  font-size: 13.5px;
  margin-top: 6px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(4px);
}
#discount-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* When coupon is applied — clean green tone */
.discount-section.applied {
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.discount-section.applied input {
  background: #ffffff;
  color: #e6a200;
  font-weight: 600;
  display: none;
}



