h1,h2,h3,h4,h5,h6{
    margin-top: 0px;
}
/* PADDING */
/* Padding Utilities */
.p-1  { padding: 0.25rem !important; }
.p-2  { padding: 0.5rem !important; }
.p-3  { padding: 1rem !important; }
.p-4  { padding: 1.5rem !important; }
.p-5  { padding: 3rem !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.pt-0 {padding-top: 0px !important;}
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.pl-1 { padding-left: 0.25rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-3 { padding-left: 1rem !important; }
.pl-4 { padding-left: 1.5rem !important; }
.pl-5 { padding-left: 3rem !important; }

.pr-1 { padding-right: 0.25rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-3 { padding-right: 1rem !important; }
.pr-4 { padding-right: 1.5rem !important; }
.pr-5 { padding-right: 3rem !important; }
/* END PADDING */

.m-0{margin: 0 !important;}
.m-1  { margin: 0.25rem !important; }
.m-2  { margin: 0.5rem !important; }
.m-3  { margin: 1rem !important; }
.m-4  { margin: 1.5rem !important; }
.m-5  { margin: 3rem !important; }


.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }

.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }
.w-100{width: 100% !important;}
.w-50{width: 50% !important;}
.w-25{width: 25% !important;}

.btn {
  display: inline-block;
  font-weight: 500;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.btn:hover,
.btn:focus {
  background-color: #0056b3;
  color: #fff;
  text-decoration: none;
}

.btn:active {
  background-color: #004080;
}

.btn-primary {
  background-color: #002e5d;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #002e5d;
}

.btn-success {
  background-color: #55A347;
}
.btn-success:hover,
.btn-success:focus {
  background-color: #398a2c;
}

.btn-danger {
  background-color: #d32f2f;
}
.btn-danger:hover,
.btn-danger:focus {
  background-color: #a31515;
}

.btn-secondary {
  background-color: #6c757d;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #565e64;
}

.btn-outline {
  background: transparent;
  color: #007bff;
  border: 1px solid #007bff;
}
.btn-outline:hover,
.btn-outline:focus {
  background: #007bff;
  color: #fff;
}

.btn-block {
  display: block;
  width: 100%;
}
.container{
    padding-inline: 0px;
    max-width: 1300px;
    margin: 0 auto;
    box-sizing: border-box;
}

.row{
    margin-inline: 0px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;

}


/* 12-col widths */
.col-1  { flex: 0 0 auto; width: 8.333333%;  }
.col-2  { flex: 0 0 auto; width: 16.666667%; }
.col-3  { flex: 0 0 auto; width: 25%;        }
.col-4  { flex: 0 0 auto; width: 33.333333%; }
.col-5  { flex: 0 0 auto; width: 41.666667%; }
.col-6  { flex: 0 0 auto; width: 50%;        }
.col-7  { flex: 0 0 auto; width: 58.333333%; }
.col-8  { flex: 0 0 auto; width: 66.666667%; }
.col-9  { flex: 0 0 auto; width: 75%;        }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-12 { flex: 0 0 auto; width: 100%;       }

@media (max-width: 575.98px) {  /* xs - phones */
  .col-xs-0 {flex: 0 0 auto; width: 0%;}
  .col-xs        { flex: 1 0 0; }
  .col-xs-1  { flex: 0 0 auto; width: 8.333333%;  padding-left:0px; padding-right: 10px;}
  .col-xs-2  { flex: 0 0 auto; width: 16.666667%; padding-left:0px; padding-right: 10px;}
  .col-xs-3  { flex: 0 0 auto; width: 25%;        padding-left:0px; padding-right: 10px;}
  .col-xs-4  { flex: 0 0 auto; width: 33.333333%; padding-left:0px; padding-right: 10px;}
  .col-xs-5  { flex: 0 0 auto; width: 41.666667%; padding-left:0px; padding-right: 10px;}
  .col-xs-6  { flex: 0 0 auto; width: 50%;        padding-left:0px; padding-right: 10px;}
  .col-xs-7  { flex: 0 0 auto; width: 58.333333%; padding-left:0px; padding-right: 10px;}
  .col-xs-8  { flex: 0 0 auto; width: 66.666667%; padding-left:0px; padding-right: 10px;}
  .col-xs-9  { flex: 0 0 auto; width: 75%;        padding-left:0px; padding-right: 10px;}
  .col-xs-10 { flex: 0 0 auto; width: 83.333333%; padding-left:0px; padding-right: 10px;}
  .col-xs-11 { flex: 0 0 auto; width: 91.666667%; padding-left:0px; padding-right: 10px;}
  .col-xs-12 { flex: 0 0 auto; width: 100%;       padding-left:0px; padding-right: 10px;}
  
  .face-img{
    display: none;
  }
  .icon-box img{
    width: inherit;
    margin-top: -4px;
    margin-left: 5px;
  }
  body{
    overflow-x: hidden;
    
  }
  .container{
    padding-inline: 0px;
    /* padding-left: 12px; */
    /* padding-right: 30px; */
  }
  #mainWrap {
    padding-left: 10px;
  }
  .rightbar{
    padding-right: 40px !important;
  }
  .icon-box {
    background-color: white;
    position: inherit;
    height: 100px;
    min-width: auto;
    top: 87px;
  }
  .tagline{
    font-size:16px;
  }
  .rightbar img{
    width: 200px;
  }
  .logo{
    max-width: 100%;
    margin-top: 36px;
  }
  
  .contact-header{
    float: left;
  }
  .row{
    margin-inline: 0px;
  }
  .product-list{
    padding-right: 10px;
  }
  .header-drug{
    padding-right: 20px;
    font-size: 18px;
  }
  .m-hide{
    display: none;
  }
  #products.table{
    font-size: 12px;
  }
  .menu-data{
    font-size: 14px;
  }
  .m-show,.w-hide{
    display: block;
  }
  .box-wrapper{
    padding: 0px !important;
  }
  .header-cart{
    /* margin-left: -20px; */
  }
  .cart-wrapper{
    z-index: 9999;
    position: relative;
  }
  .product-item-custom .product-buy{
    flex: inherit;
  }
  .table.pm-options td.pm-second-td{
    padding-left: 0px !important;
  }
}





/* Breakpoints (Bootstrap-ish) */
@media (min-width: 576px) {   /* sm */
  .col-sm        { flex: 1 0 0; }
  .col-sm-1  { flex: 0 0 auto; width: 8.333333%;  }
  .col-sm-2  { flex: 0 0 auto; width: 16.666667%; }
  .col-sm-3  { flex: 0 0 auto; width: 25%;        }
  .col-sm-4  { flex: 0 0 auto; width: 33.333333%; }
  .col-sm-5  { flex: 0 0 auto; width: 41.666667%; }
  .col-sm-6  { flex: 0 0 auto; width: 50%;        }
  .col-sm-7  { flex: 0 0 auto; width: 58.333333%; }
  .col-sm-8  { flex: 0 0 auto; width: 66.666667%; }
  .col-sm-9  { flex: 0 0 auto; width: 75%;        }
  .col-sm-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-sm-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-sm-12 { flex: 0 0 auto; width: 100%;       }
}

@media (min-width: 768px) {   /* md */
  .col-md        { flex: 1 0 0; }
  .col-md-1  { flex: 0 0 auto; width: 8.333333%;  }
  .col-md-2  { flex: 0 0 auto; width: 16.666667%; }
  .col-md-3  { flex: 0 0 auto; width: 25%;        }
  .col-md-4  { flex: 0 0 auto; width: 33.333333%; }
  .col-md-5  { flex: 0 0 auto; width: 41.666667%; }
  .col-md-6  { flex: 0 0 auto; width: 50%;        }
  .col-md-7  { flex: 0 0 auto; width: 58.333333%; }
  .col-md-8  { flex: 0 0 auto; width: 66.666667%; }
  .col-md-9  { flex: 0 0 auto; width: 75%;        }
  .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-md-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-md-12 { flex: 0 0 auto; width: 100%;       }
}

@media (min-width: 992px) {   /* lg */
  .col-lg        { flex: 1 0 0; }
  .col-lg-1  { flex: 0 0 auto; width: 8.333333%;  }
  .col-lg-2  { flex: 0 0 auto; width: 16.666667%; }
  .col-lg-3  { flex: 0 0 auto; width: 25%;        }
  .col-lg-4  { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5  { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6  { flex: 0 0 auto; width: 50%;        }
  .col-lg-7  { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8  { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-9  { flex: 0 0 auto; width: 75%;        }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%;       }
}

@media (min-width: 1200px) {  /* xl */
  .col-xl        { flex: 1 0 0; }
  .col-xl-1  { flex: 0 0 auto; width: 8.333333%;  }
  .col-xl-2  { flex: 0 0 auto; width: 16.666667%; }
  .col-xl-3  { flex: 0 0 auto; width: 25%;        }
  .col-xl-4  { flex: 0 0 auto; width: 33.333333%; }
  .col-xl-5  { flex: 0 0 auto; width: 41.666667%; }
  .col-xl-6  { flex: 0 0 auto; width: 50%;        }
  .col-xl-7  { flex: 0 0 auto; width: 58.333333%; }
  .col-xl-8  { flex: 0 0 auto; width: 66.666667%; }
  .col-xl-9  { flex: 0 0 auto; width: 75%;        }
  .col-xl-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-xl-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-xl-12 { flex: 0 0 auto; width: 100%;       }
}

/* Utilities */
.justify-start   { justify-content: flex-start; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.align-start     { align-items: flex-start; }
.align-center    { align-items: center; }
.align-end       { align-items: flex-end; }

/* Optional: spacing helpers */
.mt-2{margin-top:8px}.mb-2{margin-bottom:8px}
.mt-3{margin-top:16px}.mb-3{margin-bottom:16px}
.p-2{padding:8px}.p-3{padding:16px}

html,body{
    margin: 0px;
    font-family: Arial,Helvetica,sans-serif;
}
/* STYLE */
.header-wrapper{
    background-color: rgb(0, 46, 93);
    min-height: 60px;
    margin-top: 10px;
}
.menu-title{
    text-decoration: underline;
    font-weight: bold;
    font-size: 31px;
    color: white;
    line-height: 0.5;
    font-family: HelveticaNeue, Helvetica Neue, helvetica, Sans-Serif;
    text-align: center;
}
.text-white{
    color: white;
}   
.d-flex{
    display: flex;
}
.cart{
    margin-top: 20px;
}
.menu-wrapper{
    background-color: #a2c4ff;
    padding: 10px 0px;
}
.menu-wrapper a{
    font-weight: bold;
    color: #2e2e2e;
    text-decoration: none;

}
.banner .image-wrapper img{
  width: 80%;
  height: auto;
}
.banner .image-wrapper{
  text-align: center;
  margin: 0 auto;
  height: 50%;

}
.btn-shop-now-wrapper{
  position: relative;
  left: 0%;
  top: -45%;
  min-width: 120px;
  
}
.btn-shop-now{
  background-color: rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
  color: #fff;
  font-size: 25px;
  
}
.btn-shop-now:hover{
  background-color: rgb(0, 46, 93);
  color: #fff;
  text-decoration: none;
}
.product img{
  width: 100%;
  object-fit: cover;
  height: 200px;
}
ul.top-products-list{
  list-style-type: none;
  padding: 0;
}
ul.top-products-list li{
  margin-bottom: 10px;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  padding: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  &:hover {
    background-color: #f0f0f0;
  }
}
ul.top-products-list a{
  text-decoration: none;
  color: #007bff;
}
.img-fluid{
  max-width: 100%;
  height: auto;
}

.footer-custom {
  background: #f7f7f7;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #333;
}
.footer-links {
  min-width: 350px;
}
.footer-links h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  gap: 15px;
}
.footer-links ul li {
  display: inline;
}
.footer-links ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #007bff;
}
.footer-copyright {
  font-size: 13px;
  color: #888;
}
.footer-payments {
  min-width: 350px;
}
.footer-payments h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
.footer-note {
  font-size: 13px;
  color: #888;
}
.payment-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.payment-icons img {
  height: 32px;
  width: auto;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 2px 6px;
}
.text-center {
  text-align: center;
}
.h-100 {
  height: 100%;
}
.w-100 {
  width: 100%;
}
.w-80 {
  width: 80%;
}
.product .btn{
  border-radius: 0px;
}
.table{
    width: 100%;
    border-collapse: collapse;
}
.productTable{
    width: 100%;
}
.table th, .table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}
.avia-table{
    width: 100%;
    border-collapse: collapse;
}
.tab-content.active {
    display: block;
}
.tab-button {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 12px 20px;
    cursor: pointer;
    margin-right: 5px;
    margin-bottom: -2px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    display: inline-block;
}

.tab-button:hover {
    background: #e9ecef;
    color: #007bff;
}
.product_image_border{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px ;
    margin: 0 auto;
    display: block;
}
.tab-button.active {
    background: white;
    border-bottom: 2px solid white;
    color: #007bff;
    font-weight: bold;
    z-index: 1;
    position: relative;
}
.text-primary{
    color: #002e5d !important;
}
.text-success{
    color: #28a745 !important;
}
.text-danger{
    color: #dc3545 !important;
}
.text-muted{
    color: #6c757d !important;
}
.text-main{
    color: rgb(0, 46, 93) !important;
}
.form-control {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
}

.form-control[disabled],
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
  cursor: not-allowed;
}
.line{
  margin-top: 15px;
}
.table.pm-options td.pm-second-td{
  padding-left: 0px !important;
}
.footer-copyright{
  font-size: 14px;
  padding: 15px 0;
  color: white;
  background-color: #002e5d;
}
@media (min-width: 769px) {
  .hamburger-menu { display: none !important; }
  #mobileMenuDrawer { display: none !important; }
  .mobile-menu-wrapper { display: none !important; }
}
@media (max-width: 768px){
  .web-menu{display: none !important;}
  .banner .image-wrapper img{
    width: 100%;
    height: auto;
  }
  .btn-shop-now-wrapper{
    position: relative;
    left: 0%;
    top: -63%;
    min-width: 120px;
    font-size: 18px;
  }
  .btn-shop-now{
    font-size: 18px;
    padding: 8px 12px;
  }
  .cart{
    display: none;
  }
  .mobile-menu-wrapper{
    background-color: #a2c4ff;
    display: flex;
  }
  .mobile-cart{
    text-align: right;
    /* padding-right: 10px; */
    padding-top: 10px;
  }
  .menu-title{
    font-size: 24px;
    line-height: 1;
  }
  .logo{
    margin-top: 10px;
  }
  #mainWrap{
    padding-left: 0px;
  }
  .img-fluid{
    max-width: 50%;
  }
  .mobile-hide{
    display: none !important;
  }
  .pack{
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .info-wrapper{
    padding: 10px;
  }
  .desktop-show{
    display: none !important;
  }
  .mobile-show{
    display: block !important;
  }
}
.desktop-show{
  display: block;
}
.mobile-show{
  display: none;
}
.circle{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: -8px;
    margin-bottom: 10px;
    margin-left: 35%;
}
.circle.bg-white.d-flex.justify-content-center.align-items-center {
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
#products-list{
  margin-top: -8% !important;
}
.bg-info{
  background-color: #a2c4ff !important;
  color: white !important;
}
.text-dark{
  color: #343a40 !important;
}

/* Invoice Table Styling */
.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.invoice-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e0e0e0;
}

.invoice-table .label {
    font-weight: bold;
    color: #333;
    width: 40%;
    vertical-align: top;
}

.invoice-table .value {
    color: #555;
    width: 60%;
}

.invoice-table .total-row {
    background-color: #f8f9fa;
    font-weight: bold;
    border-top: 2px solid #002e5d;
}

.invoice-table .total-row .label,
.invoice-table .total-row .value {
    color: #002e5d;
}

#bankdetail-header {
    font-size: 18px;
    font-weight: bold;
    color: #002e5d;
    margin-bottom: 10px;
    border-bottom: 2px solid #002e5d;
    padding-bottom: 5px;
}
.headerWrap{
  margin-top: -1.5%;
}