:root{
  --bg:#FFFFFF;
  --muted:#6b7280;
  --accent:#FFFFFF;
  --accent-2:#F0EFFF;
  --card:#FFFFFF;
  --shadow: 0 6px 18px rgba(17,24,39,0.06);
  --container-max:1100px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box;user-select:none;-webkit-user-drag: none;}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:#000000;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  user-select:none;
  -webkit-user-drag: none;
  user-drag:none;
}

/* container */
.container{
  width:92%;
  max-width:var(--container-max);
  margin:0 auto;
}

/* header */
.site-header{
  background:#000000;
  border-bottom:0px solid #eef2f7;
  position:sticky;
  top:0;

  z-index:40;
  box-shadow: 0 4px 10px rgba(114, 114, 114, 0.3); /* X Y blur color */
  justify-content: space-between;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:12px;
  padding:14px 0;
}
.logo{
  color:var(--accent-2);
  font-weight:700;
  font-size:20px;
  text-decoration:none;
  user-select:none;
}
.main-nav{
  margin-left:auto;
  display:flex;
  gap:18px;
}
.main-nav a{
  color:#FFFFFF;
  text-decoration:none;
  font-weight:500;
}
.icon-btn{
  background:transparent;
  border:0;
  margin-left:10px;
  
  color:var(--accent);
}

/* hero */
.hero{
  background:var(--accent-2);
  padding:34px 0 20px;
  text-align:center;
}
.hero-inner h1{
  margin:8px 0 16px;
  font-size:26px;
  font-weight:700;
}
.search-row{
  display:inline-flex;
  align-items:center;
  
  width:100%;
  max-width:580px;
  margin:0 auto;
}
.search-row input{
  flex:1;
  padding:12px 14px;
  border-radius:8px 0 0 8px;
  border:1px solid #e6ecff;
  outline:none;
  font-size:15px;
  border-top-right-radius: 0;
  border-bottom-right-radius:0;
  border-right:none;
}
.search-row button{
  background:var(--accent);
  color:#000000;
  border:0;
  padding:11.5px 14px;
  font-size:18.5px;
  border-bottom:1px solid #e6ecff;
  border-radius:0 8px 8px 0;
  border-top:1px solid #e6ecff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-weight:600;
  border-right:1px solid #e6ecff;
}
.muted{color:var(--muted); font-size:14px}

/* promo */
.promo{
  padding:20px 0;
}
.promo-inner{
  display:flex;
  gap:20px;
  align-items:center;
  background:linear-gradient(90deg,#f6e36a 0%, #f8d966 100%);
  border-radius:6px;
  padding:18px;
}
.promo-left h2{
  font-size:64px;
  margin:0;
  line-height:0.9;
  color:#2b2b2b;
}
.phone-ill{
  font-size:48px;
}

/* sections */
.section{padding:28px 0;}
.section h3{font-size:20px;margin:0 0 16px;text-align:left}

/* brands */
.brands-grid{
  display:flex;
  gap:14px;
  width:100%;
  
  flex-wrap:wrap;
  justify-content:space-evenly;
}
.brand{
  border-radius:10px;
  padding:12px 18px;
  border:1px solid #eee;
  background:#fff;
  min-width:86px;
  justify-content:space-evenly;
  box-shadow:var(--shadow);
}

/* products */
.product-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:760px;
  margin:0 auto;
}
.product-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px;
  border-radius:8px;
  border:1px solid #eef2f7;
  background:#fff;
  box-shadow:var(--shadow);
}
.product-card img{width:90px;height:60px;object-fit:cover;border-radius:6px}
.product-body{flex:1}
.check{
  background:var(--accent);
  color:#fff;
  border:0;padding:8px 12px;border-radius:8px;font-weight:600;
}

/* steps */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:12px;
}
.step-card{
  text-align:center;
  padding:18px;
  border-radius:8px;
  border:1px solid #eef2f7;
  background:#fff;
  box-shadow:var(--shadow);
}
.step-ico{font-size:26px;margin-bottom:8px}

/* options */
.options-grid{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  margin-top:12px;
}
.opt{
  background:var(--accent-2);
  color:#fff;
  padding:18px;
  border-radius:8px;
  text-align:center;
}
.sm-btn{
  margin-top:12px;
  background:#fff;color:var(--accent-2);
  border:0;padding:8px 10px;border-radius:6px;font-weight:600;
}

/* testimonials */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:12px;
}
.testi{
  padding:16px;background:#fff;border-radius:8px;border:1px solid #eef2f7;box-shadow:var(--shadow);
}
.testi p{margin:0 0 8px}
.testi cite{color:var(--muted);font-size:13px}

/* footer */
.site-footer{
  background:#fff;padding:20px 0;border-top:1px solid #eef2f7;margin-top:18px;
}
.footer-inner{display:flex;align-items:center;justify-content:space-between;}
.footer-inner a {
  text-decoration: none;
  font-size:36px;
  padding:10px 1px;
  cursor:none;
  color:#6B77FF;
  justify-content: center;
}

/* mobile bottom nav */
.mobile-nav{
  position:fixed;left:0;right:0;bottom:0;background:#fff;border-top:1px solid #eef2f7;
  display:flex;justify-content:space-around;padding:8px 6px;z-index:50;
}
.mobile-item{display:flex;flex-direction:column;align-items:center;text-decoration:none;color:#475569;font-size:12px;padding:6px}
.mobile-item.active{color:#000EAD}
.mobile-item svg{display:block;margin-bottom:4px}

/* small screens */
@media (max-width:880px){
  .main-nav{display:none}
  .promo-left h2{font-size:4px}
  .steps-grid{grid-template-columns:1fr}
  .testi-grid{grid-template-columns:1fr}
  .product-list{max-width:100%}
  .hero-inner h1{font-size:20px}
  .mobile-nav{display:flex}
}



/* Fade-in helper */
.fade-up{opacity:0;transform:translateY(18px);transition:all 520ms cubic-bezier(.2,.9,.3,1)}
.fade-up.is-visible{opacity:1;transform:none}

.slider {
  justify-content: center;
  
}

.slider img {
  width:100%;
  height:220px;
  max-width:100%;
  object-fit:cover;
}
.offer {
  width:100%;
  padding:5px 10px;
  background: #000000;
  color:#DDDDDD;
  font-size: 14px;
  
}
.dtx {
  width:100%;
}
.dt {
  display:flex;
  padding:10px 20px;
  justify-content:space-evenly;
}
.d {
  width:33.33%;
}
.d img{
  width:50px;
}
.d .txtx {
  font-size:10px;
  text-transform:uppercase;
}




.card{background:white;border-radius:10px;box-shadow:var(--shadow);overflow:hidden;flex-direction:column;border:1px solid rgba(15,23,42,0.04);
  width:48%;
}
.pricing {
  display:flex;
  justify-content: space-evenly;
  align-items: baseline;
}
.price {
  font-size:16px;
  font-weight: 600;
}
.original {
  font-size:12px;
  text-decoration:line-through;
}
.discount {
  color:#00C436;
  font-weight: 600;
}
.card .button {
  background: #141B2C;
  color:#FFFFFF;
  border-radius: 8px;
  width:100%;
  padding:5px 10px;
  font-size:16px;
  font-weight:400;
  margin-bottom:8px;
  margin-top:5px;
}
.tagz {
  border-bottom:none;
  display:flex;
  justify-content:space-evenly;
}
.tagz .tag {
  font-size:12px;
  color:#0D1933;
}
.card .tags {
  display:flex;
  justify-content:space-evenly;
  border-bottom:1px solid #E0E0E0;
}
.rating {
  color:#FFA400;
}

.buys {
  color:#626262;
  font-size: 14px;
}
.name {
  font-size: 16px;
  font-weight: 600;
  margin-top:5px;
  margin-bottom:5px;
  text-align: center;
}
article .button {
  background: #141B2C;
  color:#FFFFFF;
  border-radius: 8px;
  width:70%;
  padding:5px 10px;
  font-size:16px;
  font-weight:400;
  margin-bottom:8px;
  margin-top:5px;
}
.buyz {
  font-size: 12px;
  vertical-align: center;
}
.data {
  padding:5px 15px;
}
.card .image img {
  width:100%;
  height:150px;
}



.cards {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content: space-evenly;
}
.loader {
  width:100%;
  
  justify-content:center;
  margin-top:20px;
  height:300px;
  display:grid;
  display:none;
  place-content:center;
  margin-bottom:30px;
}
.loading {
  width:30px;
  height:30px;
  border-radius:90%;
  border:4px solid #EEE5FF;
  animation:0.5s spin linear infinite;
  border-top: 4px solid #848CFF;
}
.austabot {
  width:100%;
  height:100%;
  display:grid;
  position: fixed;
  justify-content: center;
  text-align: center;
  align-items: center;
  z-index: 99999;
  font-weight: 600;
  font-size:20px;
  color:white;
  background: #000000;
  overflow: hidden; /* needed so rotated bg doesn't spill out */
}

/* Rotate the background via pseudo-element */
.austabot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('files/aust.gif') no-repeat center;
  
  transform: rotate(90deg);
  transform-origin: center;
  z-index: -1; /* push behind content */
}

.austabot .loadzy img {
  width:100px;
  animation: 3.2s dih linear;
    
}
@keyframes dih {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity:1;
  }
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate:360deg;
  }
}
/* larger screens */
@media (min-width:768px){
  .reviews {
  display: flex;
  justify-content:center;
}

  .hero{padding:56px 0}
  .promo-inner{padding:40px}
  .promo-left h2{font-size:84px}
  .steps-grid{grid-template-columns:repeat(3,1fr)}
  .testi-grid{grid-template-columns:repeat(3,1fr)}
  .testi-grid{grid-template-columns:1fr}
  .brands-grid{justify-content:space-evenly}
  .slider img {
  width:100%;
  height:400px;
  max-width:100%;
}

.card{background:white;border-radius:10px;box-shadow:var(--shadow);overflow:hidden;flex-direction:column;border:1px solid rgba(15,23,42,0.04);
  width:200px;
}

.offer {
  width:100%;
  padding:5px 10px;
  background: #000000;
  color:#DDDDDD;
  font-size: 14px;
  
}
.dtx {
  width:100%;
}
.dt {
  
  padding:10px 20px;
  
}
.d {
  width:33.33%;
}
.d img{
  width:60px;
}
.d .txtx {
  font-size:15px;
  text-transform:uppercase;
}
  .mobile-nav { display: none}
}
.logo img {
  width:auto;
  height:40px;
}





  /* Tooltip */
  .tooltip {
    
    
    
    background: #F7F9FF;
    border-radius: 10px;
    padding: 10px 14px;
    margin-top:2px;
    opacity: 0;
    width: 100%;
    border:1px solid #E3D1FF;
    transform: translateY(-5px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 50;
    max-width:580px;
  }

  .tooltip.show {
    opacity: 1;
    transform: translateY(0);
    
  }

  .tooltip .axx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #261740;
    font-weight: 600;
  }

  

  .tooltip .not-found {
    color: #000000;
    font-weight: 500;
  }

  .arrow {
    font-size: 14px;
    color: #BC95FF;
  }
  
  
.mini-underline {
  position: relative;
  display: inline-block;
}

.mini-underline::after {
  content: "";
  position: absolute;
  bottom: 0;              /* align near text bottom */
  left: 25%;              /* start a bit inside */
  width: 50%;        
  margin-top:5px;/* makes it “mini” (half the word) */
  height: 3px;            /* thickness */
  background: red;        /* color */
  border-radius: 2px;
}


/* --- Social Section --- */
.social-section {
  
  text-align: center;
  color: #222;
}

.social-section h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 22px;
  margin-bottom: 25px;
}

.social-icons a {
  color: #111;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #e63946; /* red hover accent */
}

.footer-policies {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #333;
  margin-bottom: 20px;
}

.footer-policies a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  
}

.footer-policies a:hover {
  color: #e63946;
}

.copyright {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.address {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

.mainx {
  max-width: 1024px;
  text-align: center;
  justify-content: center;
}
.txtxx {
  display:flex;
  width:100%;
  justify-content: center;
}


.review-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 8px;

  margin-left:8px;
  margin-right:8px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a3d8ff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0a2540;
  border: 1px solid rgba(0, 0, 0, 0.08);
  
}

.review-body {
  flex: 1;
}

.review-name {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: #111;
}

.review-role {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.review-text {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 8px;
}

.rating {
  font-size: 15px;
  justify-content: space-around;
  display:flex;
  color: #380087;
}

.rxxx {
  display: flex;
  justify-content: space-around;
}



.cert {
  
  margin-bottom: 8px;
  padding: 10px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cert .data .title {
  font-weight: 600;
  font-size:18px;
}
.cert .image img {
  width:auto;
  height:200px;
}
.cert .image {
  margin-bottom:8px;
  border-bottom:2px solid #DADDFF;
}
.cert .desc {
  font-size:15px;
}
.cert .button {
background: #17003A;
  color:#F5F3FF;
  border-radius: 8px;
  width:100%;
  padding:10px 10px;
  font-size:16px;
  font-weight:500;
  margin-bottom:2px;
  margin-top:10px;
}
.partners {
  display:flex;
  justify-content:space-evenly;
}
.partner {
  border-radius:90%;
}
.oo {
  
margin-bottom: 8px;
  padding: 10px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.oo .data .title {
  font-weight: 600;
  font-size:18px;
}
.oo .image img {
  width:100px;
  height:100;
}
.oo  .image {
  margin-bottom:8px;
  border-bottom:2px solid #DADDFF;
}
.oo .desc {
  font-size:15px;
}
.certix {
  width:100%;
  display: flex;
  justify-content: space-evenly;
}
.cert .c img {
  max-width:100px;
}
 .oo {
  width:200px;
}
.cards .disabled {
  background-color: #EBEDFF;
  pointer-events: none;
  opacity: 0.5;
  color:black;
  
}
.txi {
  opacity:1;
  position: relative;
}
.txxi {
  position: absolute;
  top:0;
  background: #DCC6FF;
  color:black;
  padding:5px 10px;
  opacity: 1;
  left:0;
}
.ikop {
  position: relative;
}
.ikop img {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
}
