.wrap .wab-logo {
  height: auto;
  object-fit: cover;
  max-width: 150px;
}
.mobixtabs {
  max-width: 1090px;
  margin: 0 auto;
  display: flex;
  background: #fff;
  border: 1px solid #e9e9ec;
  min-height: 400px;
}
.mobixtab-labels {
  display: flex;
  flex-direction: column;
  width: 200px;
  padding: 10px;
  background: #fff;
  border-right: 1px solid #e9e9ec;
  gap: 15px;
}
.mobixtab-labels label {
  padding: 7px 10px;
  cursor: pointer;
  color: #4b5563;
  border: 1px solid #e9e9ec;
  border-radius: .375rem;
  background: #f9fafb;
  transition: background 0.3s;
}
.mobixtab-labels label:hover {
  background: #e9e9ec;
}
input[type="radio"] {
  display: none;
}
.mobix-contents {
  flex: 1;
  padding: 20px;
}
.mobixtab-content {
  display: none;
}
#mobixtab1:checked ~ .mobix-contents #mobixcontent1,
#mobixtab2:checked ~ .mobix-contents #mobixcontent2,
#mobixtab3:checked ~ .mobix-contents #mobixcontent3,
#mobixtab4:checked ~ .mobix-contents #mobixcontent4 {
  display: block;
}
#mobixtab1:checked ~ .mobixtab-labels label[for="mobixtab1"],
#mobixtab2:checked ~ .mobixtab-labels label[for="mobixtab2"],
#mobixtab3:checked ~ .mobixtab-labels label[for="mobixtab3"],
#mobixtab4:checked ~ .mobixtab-labels label[for="mobixtab4"] {
  background: #fff;
  font-weight: bold;
  border-right: 3px solid #688f5d;
}
.mobixtab-content img {
  max-width: 100%;
  margin-top: 15px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .mobixtabs {
    flex-direction: column;
  }
  .mobixtab-labels {
    flex-direction: row;
    width: 100%;
  }
  .mobixtab-labels label {
    flex: 1;
    text-align: center;
  }
  #mobixtab1:checked ~ .mobixtab-labels label[for="mobixtab1"],
  #mobixtab2:checked ~ .mobixtab-labels label[for="mobixtab2"],
  #mobixtab3:checked ~ .mobixtab-labels label[for="mobixtab3"],
  #mobixtab4:checked ~ .mobixtab-labels label[for="mobixtab4"] {
    border-right-color: #e9e9ec;
    border-right-width:1px ;
    border-bottom: 3px solid #688f5d;
  }
}
.required-mobix-wrapper {
  max-width: 900px;
  margin: auto;

}
.required-mobix-wrapper h2 {
  text-align: center;
  color: #333;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}
.required-mobix-wrapper .mobix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.required-mobix-wrapper .mobix-card {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.required-mobix-wrapper .mobix-card h3 {
  margin-top: 0;
  color: #688f5d;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.2;
}
.required-mobix-wrapper .mobix-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.2;
  margin-bottom: 10px;
}
.required-mobix-wrapper .btn-install {
  display: inline-block;
  padding: 6px 20px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  background-color: #688f5d;
  color: #ffffff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.required-mobix-wrapper .btn-install:hover {
  box-shadow:0px 2px 10px rgb(116 116 116 / 50%);
  color: #ffffff;
}
.required-mobix-wrapper .btn-install:active {
  transform: rotate(0) scale(1);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}
.mobix-promo-form {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;

}
.mobix-promo-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}
.mobix-promo-form .promo-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mobix-promo-form h3{
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}
.mobix-promo-form .promo-form input[type="text"] {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  line-height: 1.4;
  transition: border-color 0.3s;
}
.mobix-promo-form .promo-form input[type="text"]:focus {
  border-color: #688f5d;
}
.mobix-promo-form .promo-form input[type="submit"] {
  background: #688f5d;
  color: #fff;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.mobix-promo-form .promo-form input[type="submit"]:hover {
  background: #688f5dbf;
}
@media (max-width: 500px) {
  .mobix-promo-form .promo-form-container {
    padding: 20px;
  }
  .mobix-promo-form .promo-form input[type="text"],
  .mobix-promo-form .promo-form input[type="submit"] {
    font-size: 14px;
    padding: 10px;
  }
}
.mobiapbu-plans{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.mobiapbu-plans .plan {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
  --tw-shadow-colored
  --tw-shadow-colored is not defined
  : 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.mobiapbu-plans .plan:hover {
  transform: translateY(-5px);
}
.mobiapbu-plans .plan h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}
.mobiapbu-plans .price {
  font-size: 24px;
  color: #688f5d;
  margin: 20px 0;
  font-weight: 600;
}
.mobiapbu-plans .features {
  list-style: none;
  margin: 15px 0;
  text-align: left;
}
.mobiapbu-plans .features li {
  margin: 10px 0;
  color: #555;
}
.mobiapbu-plans .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 25px;
  background: #688f5d;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}
.mobiapbu-plans .btn:hover {
  background:#4c6944;
}
@media (max-width: 900px) {
  .mobiapbu-plans {
    flex-direction: column;
    align-items: center;
  }
}
.tab-content{
  padding: 20px;
}
.nav-tab-wrapper, .wrap h2.nav-tab-wrapper{
  background-color: #fafafa;
  padding:.85rem 0.45rem!important;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e7e7;
}
.nav-tab-wrapper .nav-tab{
  color: rgb(63 63 70);
  padding: .4rem 0.9rem;
  border-radius: .375rem;
  background-color: #fff;
  border: none;
  margin-left: 0;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.theme-browser .theme .theme-name{
  height: auto;
}
.nav-tab-wrapper .nav-tab.nav-tab-active{
  background-color: #688f5d;
  color: #fff;
}
.nav-tab-wrapper .nav-tab + .nav-tab{
  margin-left: .8rem;
}
.wp-font-20{
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color:#688f5d;
  font-family: var(--p-font-family-sans);
}
.wp-mb-20{
  margin-bottom: 30px;
}
.list-title{
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
  color: rgb(48 48 48);
}
.list-subtitle{
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  padding-left: 22px;
}
.wp-app-link{
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 5px;
  transition: all 0.3s;
}
.wp-app-link:hover{
  color: #000;
  text-decoration-style:dashed;
}
.Polaris-Tabs__Tab .polaris-count{
  line-height: 1.6;
}
.Polaris-Tabs__ButtonWrapper .Polaris-Tabs__Tab.Polaris-Tabs__Tab--active{
  background-color: rgb(0 0 0 / 5%);
  border-right: 3px solid #688f5d;
}
.mobix-card {
  z-index: 10;
  padding-top: 50px !important;
  position: relative;
}
.mobix-card .mobix-card-number {
  position: absolute;
  z-index: -1;
  line-height: 100px;
  left: 0;
  top: 0;
  bottom: 0px;
  right: 0;
  font-size: 100px;
  opacity: 0.1;
  color: #688f5d;
  font-weight: 600;
}
.Polaris-Grid-requer_12ColumnXl{
  grid-column-end: span 12 !important;
}

@media (max-width: 992px) {
  .Polaris-flex-wrap .Polaris-Box{
    width: 100% !important;
  }

  .Polaris-flex-wrap .Polaris-Tabs__Panel{
    width: 100% !important;
  }
  .wp-main-box .Polaris-Tabs__ButtonWrapper,
  .Polaris-flex-wrap .wp-main-box .Polaris-Tabs,
  .wp-main-box .Polaris-Tabs__TabContainer{
    width: 100%;
  }
}
.mobiapbu-overview {
  font-family: "Segoe UI", sans-serif;
  color: #333;
  padding: 20px;
}
.mobiapbu-overview .mobiapbu-intro {
  text-align: center;
  margin-bottom: 30px;
}

.mobiapbu-overview .mobiapbu-intro h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.mobiapbu-overview .mobiapbu-intro h2 span {
  color: #2f855a;
}
.mobiapbu-overview .mobiapbu-intro p {
  font-size: 16px;
  color: #555;
}
.mobiapbu-overview .mobiapbu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.mobiapbu-overview .mobiapbu-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: 0.2s;
}
.mobiapbu-overview .mobiapbu-card:hover {
  transform: translateY(-3px);
}
.mobiapbu-overview .mobiapbu-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2d3748;
}
.mobiapbu-overview .mobiapbu-card ul {
  list-style: disc;
  padding-left: 18px;
}
.mobiapbu-overview .mobiapbu-card ul li {
  margin-bottom: 6px;
  font-size: 15px;
}
.mobiapbu-overview .mobiapbu-card .note {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  font-style: italic;
}
.mobiapbu-overview .mobiapbu-cta {
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}
.mobiapbu-overview .mobiapbu-cta h3 {
  margin-bottom: 10px;
}
.mobiapbu-overview .mobiapbu-footer {
  text-align: center;
  font-size: 14px;
  color: #444;
}