*, *::before, *::after {
  box-sizing: border-box;
}
body,
p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}
body {
  overflow-x: hidden; /* Hides horizontal scrollbar and prevents horizontal scrolling */
    background: #f7f7f7;
}
a{
    text-decoration: none;
}
a.logolink{
    padding: 12px 0;
    display: block;
}
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}
img{
    max-width: 100%;
}
header{
 background: #13113c;
    height: 60px;
}
.logo{
 width: 200px;   
}
.contentpage {
    position: relative;
    height: auto;
    width: 100%;
    display: block;
    padding: 1.5em 0;
}

/* === Hamburger button === */
.menu-toggle {
  width: 30px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  margin: 6px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* === Slide menu === */
.menu {
  position: fixed;
  top: 0;
  right: -250px; /* hidden by default */
  width: 250px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
  z-index: 1000;
}

.menu a {
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

.menu a:hover {
  background: #f1f1f1;
}

/* === Active state === */
.menu.active {
  right: 0;
}

/* === When menu is active, animate toggle === */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
    background: #333;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
    background: #333;
}

/* Optional: overlay background when menu open */
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.overlay.active {
  display: block;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 7px 14px;
    font-size: 1em;
 border: 2px solid #efefef;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
  color: #333;
    font-weight: 500;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #0d6efd; /* Bootstrap primary color */
  box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
}

/* Optional placeholder color */
::placeholder {
  color: #aaa;
  opacity: 1;
}
.titlesection{
 background: #efefef;
    padding: 1em 0;
    color: #777;
    text-align: center;
    font-weight: 400;
}
.innerwrap{
        padding: 2em;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    border-radius: 13px;
    background: #fff;
}
a.innersubwrap{
            padding: 1.5em;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    border-radius: 13px;
    background: #fff;
    display: block;
    text-decoration: none;
    color: #814827;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
}
.ui-widget-content{
  width: 360px;  
}
 .ui-widget input.chooseretailer{
    font-size: 1.2em;
    padding: .7em 1em;   
}
.ui-widgetsearch input.chooseretailer{
    font-size: 1.2em;
    padding: .7em 1em;   
}

.standbtn{
    background: #58bad3;
    padding: 0.8em 1.9em;
    color: #fff;
    font-size: 1.1em;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
        display: inline-block;
}
.standbtn:active{
    background:#47a4ba;
}
.standbtn.btnicon{
 display: inline-flex;
  align-items: center;
  gap: 8px; /* space between text and icon */
 
  padding: 9px 2em;
  text-decoration: none;
  transition: all 0.3s ease;   
}
.standbtn.btnicon i {
    background: rgba(255, 255, 255, 0.9);
    color: #58bad3;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 25px;
    transition: all 0.3s ease;
}

/* optional: smooth hover effect on icon */
.standbtn:hover i {
  background: #f8f9fa;
  color: #0056b3;
}
.darkbtn{
     background: #2f435a;
}
.simplelink{
 color:   #2f435a; 
}
.darkbtn:active{
     background: #406589;
}
.widebtn{
    width: 100%;
    display: block;
}
.darkbtn.btnicon i{
    background: rgba(255, 255, 255, 0.9);
    color: #2f435a;
}
.magbox{
 display: block;
    margin: 15px 0;
}
input[type="text"].forminput,input[type="select"].forminput{
     padding: 12px 14px;
    font-size: 1.2em;
    border: 2px solid #efefef;
    border-radius: 13px;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
    font-weight: 500;   
}


.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 100%;
  height: 60px;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
   padding: 12px 14px;
    font-size: 1.2em;
    border: 2px solid #efefef;
    border-radius: 13px;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
    font-weight: 500; 
  transition: all 0.2s ease-in;
color: #333;
    line-height: 1.8;
}

.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-color: #777 transparent transparent transparent;
  position: absolute;
  top: 23px;
    right: 13px;
    transition: all 0.2s ease-in;
}

.select-styled:hover {
  background-color: #eee;
}

.select-styled:active,
.select-styled.active {
  background-color: #eee;
}

.select-styled:active:after,
.select-styled.active:after {
  top: 13px;
  border-color: transparent transparent #777 transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  color: #333;
}

.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid #eee;
  transition: all 0.15s ease-in;
    font-size: 1.1em;
    font-weight: 500;
    color: #888;
}

.select-options li:hover,
.select-options li.is-selected {
  color: #888;
  background: #fff;
}

.select-options li[rel="hide"] {
  display: none;
}
.nearbyretail{
        background: #fff;
        padding: 1em 1.5em;
        color: #444;
        display: flex;
        margin: 5px 0;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
        min-height: 80px;
        align-items: center;
        font-weight: 500;
    }
        .nearbyrrow {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nearbyretail {
  opacity: 0.9;
  transition: all 0.3s;
}

.nearbyretail:hover {
  opacity: 1;
  transform: translateX(5px);
}
#confirmBox{
    z-index: 99;
}
#yesBtn{
   background: #58bad3;
    padding: 3px 20px;
    color: #fff;
    font-size: 1.1em;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
     display: inline-block;
    border:1px solid #4497b7;
}
#noBtn{
   background: #ccc;
    padding: 3px 20px;
    color: #fff;
    font-size: 1.1em;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
     display: inline-block;
    border:1px solid #bbbbbc;
}
.retp{
 margin-bottom: 2px;

}
#retailershopname{
        font-weight: 600;
}
.retare{
    
}
.showindoor{
gap:10px;   
}
.text-green-500 {
    color:#22c55e;
    width: 4rem;
    height: 4rem;

}
#toggleDetails{
        background: #58bad3;
    border-color: #58bad3;
}
  .selectpromo{
            padding: 1.5em;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    border-radius: 13px;
    background: #fff;
    display: block;
    text-decoration: none;
    color: #814827;
    font-weight: 600;
    text-align: left;
    line-height: 1.1;
            font-size: 1.4em;
            margin-bottom: 15px;
        }
        .selectpromo span{
           font-size:16px!important; 
             font-weight: 400!important;
        }
.mb3{
 margin-bottom: 15px;   
}
@media (min-width: 1400px) {
.container {
    max-width: 900px;
    }
}
@media (max-width: 480px) {
   html, body {
               height: 100%;
}
}