* {
    margin: 0;
    padding: 0;
    font-family: 'poppins';
    font-size: 14px;
    text-transform: capitalize;
}
body {
    max-width: 480px;
    margin: 0 auto;
    width: 100vw;
    padding-bottom: 60px;
    overflow-x: hidden;
    /* user-select: none; */
}
a {
    text-decoration: none;
    color: #000;
    font-family: "Poppins", sans-serif;
}
.img-wrap {
    overflow: hidden;
    border-radius: 15px;
}
img {
    max-width: 100%;
    object-fit: contain;
}

/*----------------------------------------
------------------- Buttons---------------
------------------------------------------- */
.btns {
    border: none;
    padding: 8px 15px;
}
.btns-lg {
    font-size: 17px;
    border-radius: 20px;
    font-weight: 600;
}
.btns-md {
    font-size: 15px;
    border-radius: 15px;
}
.btns-xmd {
    font-size: 13px;
    border-radius: 15px;
}
.btns-sm {
    font-size: 12px;
    border-radius: 10px;
}
.btns-full {
    width: 100%;
}
.btns-primary-border {
    border: 2px solid #fa9f1e;
    background-color: transparent;
    color: #fa9f1e;
    border-radius: 25px;
}
.btns-primary {
    background-color: #fa9f1e;
    color: #FFF;
}
.btns-dark {
    background-color: #000;
    color: #FFF;
}
.btns-grey {
    background-color: #eee;
    color: #000;
}
.btns-success {
    background-color: rgb(12, 172, 12);
    color: #fff;
}
.btns-danger {
    background-color: red;
    color: #000;
}
.btns-primary:hover,.btns-primary:focus {
    background-color: #fa9f1e;
}
.btns-dark:hover,.btns-dark:focus {
    background-color: #000;
}
.btns-grey:hover,.btns-grey:focus {
    background-color: #eee;
}
.capsule {
    border-radius: 20px;
}
.btns-outline-primary {
    border: 1px solid #fa9f1e;
    color: #fa9f1e;
}
/*-----------------------------------------
------------------- Headings ---------------
------------------------------------------- */

.heading-lg {
    font-size: 18px;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    color: #343434;
}
.heading-md {
    font-size: 16px;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    color: #343434;
}
.heading-md span {
    font-family: 'open sans', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 400;
    color: #000;
}
.heading-sm {
    font-size: 15px;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    color: #343434;
}
/*-----------------------------------------
------------------- Texts ---------------
------------------------------------------- */
.texts-3xl {
    font-size: 22px;
}
.texts-xxl {
    font-size: 20px;
}
.texts-xl {
    font-size: 17px;
}
.texts-lg {
    font-size: 15px;
}
.texts-md {
    font-size: 14px;
}
.texts-sm {
    font-size: 13.5px;
}
.texts-xs {
    font-size: 11.5px;
}
.texts-xxs {
    font-size: 11px;
}
.texts-primary {
    color: #fa9f1e;
}
.texts-grey {
    color: #eee;
}
.texts-grey-dark {
    color: #aaa;
}
.texts-success {
    color: rgb(12, 172, 12);
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-550 {
    font-weight: 550;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-650 {
    font-weight: 650 !important;
}
label {
    white-space: nowrap;
    margin-bottom: 0;
}
/*-----------------------------------------
------------------- Background ---------------
------------------------------------------- */
.bg-primary {
    background-color: #fa9f1e !important;
}
.bg-grey {
    background-color: #aaa;
}
.bg-grey-lite {
    background-color: #eee;
}
.badge {
    font-size: 11.5px;
    padding: 8px 10px;
    border-radius: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
}
.badge-success {
    /* border: 2px solid rgb(83, 214, 54); */
    color: rgb(33, 174, 2);
}
.badge-danger {
    /* border: 2px solid rgb(223, 75, 75); */
    color: rgb(223, 75, 75);
}
.badge-alert {
    /* border: 1px solid rgb(255, 179, 0); */
    color: rgb(222, 160, 14);
}

.border-primary {
    border: 1px solid #fa9f1e !important;
}
input:focus, textarea:focus, select:focus {
    outline: none;
}
.terms-box {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
  background: #fafafa;
}
.terms-box p {
  font-size: 12.8px !important;
    
}

/* offer marquee */
.top-bar-container {
    width: 100%;
    height: 45px;
    /* background: linear-gradient(90deg, #5de372 0%, #4cd137 50%, #7bed9f 100%); */
    background-color: #f8cb46;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.marquee-track {
    display: flex;
    gap: 0;
    width: fit-content;
    animation: marquee-slide 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.offer-item {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.top-bar-container .divider {
    color: #fff;
    opacity: 0.6;
    font-size: 14px;
    margin: 0 5px;
    transform: skew(-10deg);
}

/* The Animation */
@keyframes marquee-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Moves exactly -100% of one content set to create seamless loop */
        transform: translateX(-50%); 
    }
}

/* install btn */
/* install butoon */
.smart-banner {background-color: #fff0d9ff;border-bottom: 1px solid #efe8e0;padding: 10px 15px;display: flex;align-items: center;justify-content: space-between;position: relative;z-index: 99999;font-family: 'Poppins', sans-serif;transition: opacity 0.3s ease, margin 0.3s ease;box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);border-bottom: 1px solid #ffd580;}
.sb-left {display: flex;align-items: center;gap: 10px;}
.sb-icon {width: 40px;height: 40px;background: #000; /* Fallback if no image */border-radius: 10px;overflow: hidden;flex-shrink: 0;box-shadow: 0 2px 5px rgba(0,0,0,0.1);}
.sb-icon img {width: 100%;height: 100%;object-fit: cover;}
.sb-info {display: flex;flex-direction: column;justify-content: center;line-height: 1.2;}
.sb-title {font-size: 13px;font-weight: 600;color: #1a1a1a;margin: 0;}
.sb-sub {font-size: 11px;color: #666;margin: 2px 0 0 0;}
.sb-right {display: flex;align-items: center;gap: 15px;}
.sb-btn {background-color: #111;color: #fff;text-decoration: none;font-size: 11.5px;font-weight: 600;padding: 5px 15px;border-radius: 4px;letter-spacing: 0.5px;white-space: nowrap;border: 0;}
.sb-close {border: none;background: transparent;}
.sb-close i{color: #999;font-size: 16px;}


.tagline {
    text-align: left;
}

.tagline span {
    font-weight: 650;
    font-size: 45px !important;
    text-align: right;
    color: #aaa;
}
@media (max-width: 375px) {
    .tagline span {
        font-size: 40px !important;
    }
    .tagline img {
        width: 50px;;
    }
}