:root {
  --bg: #ffffff;
  --text-color: #0f172a;
  --muted-text: #64748b;
  --accent-color: #1f6feb;
  --border-color: #e6e9ee;
  --footer-bg: #777777;
  --footer-text: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #000000;
  --container-max: 1200px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
html,
body {
  height: 100%;
}
body {
  background: #fafafa;
  color: var(--text-color);
  line-height: 1.6;
}
.main-conatner {
  padding: 0 var(--space-4);
  margin: 0 auto;
  width: 100%;
  max-width: var(--container-max);
}
.xl-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.xl-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.xl-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.xl-logo {
  width: 120px;
  height: auto;
}
.xl-nav {
  display: none;
  gap: 0.75rem;
  flex: 1;
}
.xl-nav__item {
  text-decoration: none;
  color: black;
  font-size: 0.95rem;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  white-space: nowrap;
}
.xl-nav__item:hover {
  color: var(--accent-color);
  background: rgba(31, 111, 235, 0.06);
}
.xl-search {
  display: flex;
  align-items: center;
}
.xl-search__btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.xl-search__btn:focus {
  outline: 3px solid rgba(31, 111, 235, 0.16);
}
.xl-search__btn:hover {
  background: rgba(31, 111, 235, 0.06);
}
.xl-search__icon {
  fill: var(--muted-text);
  width: 20px;
  height: 20px;
}
.xl-search__btn:hover .xl-search__icon {
  fill: var(--accent-color);
}
.xl-lang {
  position: relative;
  display: flex;
  align-items: center;
}
.xl-lang__select {
  appearance: none;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 30px 8px 10px;
  font-size: 0.95rem;
  color: var(--text-color);
  cursor: pointer;
}
.xl-lang__icon {
  position: absolute;
  right: 8px;
  pointer-events: none;
  fill: var(--muted-text);
}
.xl-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.dashboad-img {
  padding: var(--space-4);
  background-color: white;
}
.xl-banner {
  width: 100%;
  border-radius: 10px;
}
.xl-product-details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: var(--space-4);
}
.xl-descriptions {
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.8;
  text-align: center;
  color: var(--muted-text);
  max-width: 80ch;
}
.xl-topbar {
  display: flex;
  gap: 10px;
  padding: 16px 0;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.xl-btn {
  padding: 10px 18px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  background: var(--light-gray);
  color: var(--text-color);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.06);
}
.xl-btn-black {
  background: var(--dark-gray);
  color: var(--footer-text);
  border-color: var(--dark-gray);
}
.xl-btn:hover {
  background: var(--border-color);
  color: var(--dark-gray);
}
.xl-btn-black:hover {
  background: #333;
  border-color: #333;
  color: white;
}
.content-section {
  display: none;
  padding: 16px;
  margin-top: 16px;
  background-color: #fff;
  border-radius: 8px;
  margin: 10px 0;
}
.content-section.active {
  display: block;
}
.vcard-info {
  background-color: rgb(255 255 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.xl-mt-container {
  width: 100%;
  max-width: 700px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.xl-mt-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.mt-input-group-x1 {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mt-input-x1 {
  width: 100%;
  max-width: 520px;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  font-size: 14px;
  outline: none;
  text-align: center;
}
.mt-input-x2 {
  width: 100%;
  max-width: 300px;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  font-size: 14px;
  outline: none;
  text-align: center;
}
.xl-mt-save {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.xl-mt-save button {
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xl-mt-save button img {
  width: 60px;
}
.mt-sx-container {
  width: 100%;
  max-width: 700px;
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.mt-sx-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.mt-sx-subtitle {
  color: #777;
  margin-bottom: 20px;
}
.mt-sx-searchbox {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f2f2f2;
  border-radius: 50px;
  padding: 10px 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.mt-sx-label {
  font-weight: bold;
}
.mt-sx-input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1 1 180px;
  padding: 6px;
  font-size: 14px;
  min-width: 120px;
}
.mt-sx-select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
}
.mt-sx-btn-group {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px;
}
.mt-sx-btn {
  padding: 10px 22px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  background: #f6f6f6;
  transition: all 0.3s ease; 
  box-shadow: 5px 0 2px rgba(0, 0, 0, 0.4);
}
.mt-sx-btn:hover{
  background-color: #000000;
  color: white;
}
.mt-sx-message {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mt-sx-price {
  display: inline-block;
  background: #f2f2f2;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}
.mt-sx-paybtn {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  margin-top: 6px;
}
/* Normal state */
.mt-sx-paybtn {
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
}
.mt-sx-paybtn {
  width: 80px;  
  height: 80px;            /* adjust as needed */
  padding: 10px;
  border: none;
  cursor: pointer;
  background: transparent;   /* normal state background */
  color: black;              /* normal text color */
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;        /* optional rounded corners */
  transition: all 0.3s ease; /* smooth hover effect */
 box-shadow: 8px 0 5px rgba(0, 0, 0, 0.4);

}

.mt-sx-paybtn:hover {
  background: black;   /* background turns black */
  color: white;        /* text turns white */
}
#saveOtherInfo {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

/* Show only the default image initially */
#saveOtherInfo .hover-img {
  display: none;
}

/* On hover → hide default, show hover image */
#saveOtherInfo:hover .default-img {
  display: none;
}

#saveOtherInfo:hover .hover-img {
  display: inline;
}



.xl-footer {
  background-color: #808080;
  color: var(--footer-text);
  padding: 24px;
  border-radius: 16px;
  font-family: "Poppins", Arial, sans-serif;
  margin: 16px 0 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}
.xl-footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.xl-footer-col {
  min-width: 0;
}
.xl-footer-about p {
  margin: 6px 0;
  line-height: 1.6;
  font-size: 16px;
}
.xl-footer-about hr {
  border: 0;
  border-top: 1px solid #aaa;
  margin: 10px 0;
}
.xl-footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--footer-text);
  display: inline-block;
  padding-bottom: 4px;
  font-size: 20px;
}
.xl-footer-col ul {
  list-style: none;
  padding: 0;
}
.xl-footer-col li {
  margin: 6px 0;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.2s ease;
}
.xl-footer-col li:hover {
  color: #c0c0c0;
  text-decoration: underline;
}
.xl-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  filter: brightness(0) invert(1);
}
.xl-footer-social img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.3s;
}
.xl-footer-social img:hover {
  transform: scale(1.05);
}

.copywrite {
  text-align: center;
  font-size: 14px;
  margin: 10px 0 20px;
  color: var(--muted-text);
  display: flex;
  justify-content: center;
}
.copywrite-img {
  margin: 0 5px;
  vertical-align: middle;
}
.mt-sx-searchbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.mt-sx-input {
  flex: 1 1 220px;
  min-width: 0;
}
.mt-sx-select {
  flex: 0 0 auto;
}

@media (min-width: 600px) {
  .xl-nav {
    display: flex;
  }
  .xl-footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .xl-footer-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl-logo {
    width: 140px;
  }
}
@media (max-width: 425px) {
  .mt-sx-searchbox {
    padding: 8px 12px;
    border-radius: 16px;
  }
  .mt-sx-btn {
      font-size: 12px;
  }
  .mt-sx-label {
    flex: 0 0 auto;
  }
  .mt-sx-input {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .mt-sx-select {
    width: 100%;
    flex: 1 1 100%;
  }
  .xl-topbar{
        gap: 30px;
  }
}
@media (max-width: 360px) {
  .mt-sx-searchbox {
    gap: 8px;
    display: flex;
    justify-content: center;
  }
  .xl-topbar{
        gap: 30px;
  }

  .mt-sx-input,
  .mt-sx-select {
    font-size: 14px;
  }
}
