html {}

body {
  background: #fff;
  color: #323230;
  font-size: 17px;
}

:root {
  --one: #05618b;
  --two: #0d5f7a;
  --bl: #49b6ed;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--one);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
  margin: 15px 0 10px 0;
  padding: 5px 0;
  position: relative;
  text-align: left;
  clear: both;

}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem
}

h4 {
  font-size: 1.2rem
}

h5 {
  font-size: 1.2rem
}



a:link,
a:visited,
a:active,
a:focus {
  color: var(--one);
  position: relative;
}

a:hover {
  color: var(--bl);
  text-decoration: none;
}

a.logo {
  color: #0b4f6c;
  text-decoration: none;
}

a.logo span {
  font-size: 1.8rem;
  line-height: 60px;
  margin-left: 15px;
}

a.logo img {
  height: 60px;
}

.bg_header {
  background: #ffffff;
  padding: 20px 0;
  min-height: auto;
}

.bg_top_header {
  min-height: auto;
  margin-bottom: 0;
}

.top_header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.main_menu {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  list-style: none;
}

ul.main_menu li {
  line-height: 60px;
}

ul.main_menu li a {
  color: #0b4f6c;
  padding: 0 15px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 100;
}



.search_form {
  position: relative;
  max-width: 700px;
}

.search_form input[type=text] {
  width: 100%;
  height: 60px;
  padding: 0 60px 0 25px;
  font-size: 18px;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #d6dde2;
  border-radius: 8px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search_form input[type=text]:focus {
  outline: none;
  border: 1px solid #0b4f6c;
  box-shadow: 0 0 0 3px rgba(11, 79, 108, 0.15);
}

.search_form input[type=text]::placeholder {
  color: #7a8a94;
}

.search_form button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.search_form svg {
  width: 24px;
  height: auto;
  fill: #0b4f6c;
  transition: fill 0.2s ease;
}

.search_form button:hover svg {
  fill: #083e55;
}

a.dropmenu_product {
  background: #0b4f6c;
  height: 60px;
  line-height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s ease;
}

a.dropmenu_product:hover {
  background: #083e55;
}

a.dropmenu_product img {
  width: 24px;
  opacity: 0.9;	
}

nav.navbar {
  padding: 0;
}

.menu_product ul {
  border-radius: 8px;
  margin: 0;
  right: 0;
  left: auto !important;
  border: 1px solid #e3e8ec;
  padding: 10px;
  background: #f7f9fa;
  width: max-content;
  min-width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.menu_product ul li {
  margin-bottom: 6px;
}

.menu_product ul li:last-child {
  margin-bottom: 0;
}

.menu_product ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  text-decoration: none;
  color: #0b4f6c;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #edf1f3;
  transition: background 0.2s ease, border 0.2s ease;
}

.menu_product ul li a:hover {
  background: #eef3f6;
  border: 1px solid #d9e2e8;
}

.menu_product ul li img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.menu_product ul li a span {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  font-size: 0.9rem;
  color: #5f6f78;
}

.menu_product ul li a span span {
  margin-left: 10px;
}

.advant {
  display: flex;
  flex-flow: column wrap;
  width: fit-content;
}

.advant .items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.advant img {
  width: 70px;
  height: auto;
}

.advant span {
  color: #fff;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin: 5px 0 0 0;
  font-weight: 100;
  color: var(--bl);
}


.dropdown-menu.show {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  right: 0;
  border-radius: 8px;
  border: 1px solid #e3e8ec;
  width: max-content;
  min-width: 100%;
  padding: 10px;
  background: #f7f9fa;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

ul.dropdown-menu li {
  position: relative;
  display: block;
  margin-bottom: 6px;
  line-height: normal;
  font-weight: 500;
}

ul.dropdown-menu li:last-child {
  margin-bottom: 0;
}

ul.dropdown-menu li:after {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(images/arrow.svg) no-repeat center;
  opacity: 0.4;
}

ul.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  text-decoration: none;
  color: #0b4f6c;
  font-size: 1rem;
  padding: 8px 14px 8px 36px;
  border-radius: 6px;
  border: 1px solid #edf1f3;
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

ul.dropdown-menu li a:hover {
  background: #eef3f6;
  border: 1px solid #d9e2e8;
  color: #083e55;
}

ul.dropdown-menu li a img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: transparent;
}

li.linkprod ul.dropdown-menu li a {
  padding: 8px 14px 8px 36px;
  color: #0b4f6c;
  width: max-content;
}

ul.dropdown-menu li ul.sub-menu {
  display: none;
}

ul.dropdown-menu li:hover ul.sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: -5px;
  right: 100%;
  width: max-content;
  min-width: 100%;
  padding: 10px;
  background: #f7f9fa;
  border: 1px solid #e3e8ec;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

ul.sub-menu li {
  font-weight: normal;
}

ul.sub-menu li a {
  padding: 0 15px !important;
  background: #fff;
}

ul.sub-menu li:after {
  content: "";
  background: none;
}

ul.sub-menu span>span {
  padding-left: 5px;
}

ul.active {
  display: block;
}



.content-area ul {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}

.content-area ul li {
  padding: 0 0 0 20px;
  position: relative;
}

.content-area ul li:before {
  position: absolute;
  content: "\2713";
  left: 0;
  color: var(--two);
  top: 3px;
  font-size: 12px;
  transition: 0.3s;
}


.shopping_cart {
  color: #fff;
  font-size: 18px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.shopping_cart img {
  width: 26px;
  height: auto;
  margin-right: 10px;
}

li.shopping_cart a {
  color: var(--two) !important;
}



.footer .paysis {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin: 5px 0;
}

.footer .paysis img {
  margin: 5px !important;
  width: 65px;
  height: auto;
  border: 1px #fff solid;
}

.footer .paysis img:hover {
  filter: grayscale(0);
  transition: 0.3s;
}

.footer {
  padding: 15px 0;
  margin-top: 15px;
  background: #0f3f54;
  color: #fff;
}

.footer span.wt {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 15px;
  padding-bottom: 6px;
  border-bottom: 2px solid #2b6f8a;
  letter-spacing: 0.3px;
}

.footer ul {
  list-style: none;
  margin: 0 0 15px 15px;
  padding: 0;
}

.footer li {
  position: relative;
  padding-left: 15px;
}

.footer li a {
  text-decoration: none;
  position: relative;
  color: #cfe8f2;
}

.footer li a:hover {
  color: #ffffff;
}

.footer li a:after {
  position: absolute;
  content: "\00BB";
  left: -15px;
  color: var(--two);
}

.footer li a img {
  display: none !important;
}

.footer span.copy {
  font-size: 12px;
  display: block;
  text-align: center;
}

.footer span.copy img {
  margin: 20px auto;
  display: block;
}

.footer img {
  width: 55px;
  height: auto;
  fill: #fff;
  margin: 20px auto;
  display: block;
  transition: 0.5s;
}

.footer a {
  text-decoration: none;
}

.footer a.tel {
  font-size: 25px;
  font-weight: 500;
  display: block;
  color: #fff;
  margin-bottom: 15px;
}

.entry-content {
  text-align: justify;
}

[type=button],
[type=reset],
[type=submit],
button {}

.comment-respond {
  margin-bottom: 20px;
}

.comment-respond p {
  font-size: 14px;
  font-weight: noramal;
}

.comment-respond input[type="text"],
input[type="email"],
input[type="url"] {
  height: 30px;
  line-height: 30px;
  border: 1px #ccc solid;
  padding: 0 10px;
  width: 50%;
}

.comment-respond textarea {
  border: 1px #ccc solid;
  padding: 0 10px;
  width: 100%;
  height: 100px;
}

.comment-respond label {
  display: block;
}

.comments-area ol {
  list-style: none;
  padding: 0;
}

.comments-area ol li {
  font-size: 13px;
  padding: 10px;
  margin-bottom: 10px;
  line-height: 20px;
  border: 1px #eee solid;
  background: #fff;
}

.comment-respond input[type=submit] {
  background: var(--one);
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-size: 15px;
  text-transform: uppercase;
  margin: 15px 0;
}

.comment-respond input[type=submit]:hover {
  background: var(--one);
}

.td a:before {
  height: 0px;
}


@media(max-width: 576px) {
  .td div:nth-child(1) {
    text-align: center !important;
    justify-content: center !important;
  }

  .check div {
    min-height: auto !important;
  }

  .xsp {
    padding: 0 0 10px 0 !important;
  }

  .qty {
    margin-bottom: 10px;
  }
}











.tabscontent .nav-tabs {
  border-bottom: none;
}

.tabscontent ul.nav-tabs {
  margin: 0;
}

.tabscontent ul.nav-tabs>li {
  margin: 0;
  padding: 0;
}

.tabscontent ul.nav-tabs>li>a {
  border-radius: 0;
  background: var(--one);
  margin: 0 15px 15px 0;
  padding: 5px 15px;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}


.tabscontent ul.nav-tabs>li:before {
  content: "";
  position: absolute;
}

.tabscontent .nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
  color: #fff;
  cursor: default;
}

.tabscontent .nav-tabs>li>a:hover,
.nav-tabs>li>a:focus {
  color: #fff;
  cursor: pointer;
  background-color: var(--two);
  text-decoration: none;
}

.tabscontent .tabstabs .nav-tabs>li>a {
  border-radius: 0;
  background: var(--one);
  margin: 0 15px 15px 0;
  padding: 8px 12px;
  font-size: 16px;
  width: 165px;
  color: #fff;
  text-transform: inherit;
  border: none;
  text-align: center;
}

.tabscontent .tabstabs .nav-tabs>li>a:hover,
.nav-tabs>li>a:focus {
  color: #fff;
  cursor: pointer;
  background-color: var(--two);
}

.tabscontent span.tabsh {
  padding: 5px 0;
  font-size: 20px;
  color: #5d5d5d;
  margin: 15px 0 10px 0px;
  display: block;
}

.tabscontent .tabsprice div.line_b {
  font-size: 17px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.tabscontent .tabsprice div.line_b span {
  font-size: 25px;
  font-weight: bold;
  color: var(--one);
  padding: 0 10px;
}

.tabscontent .tabsprice button {
  border: none;
  color: #ffffff;
  font-weight: normal;
  background: var(--one);
  padding: 0 15px;
  margin: 0 25px;
  line-height: 45px;
  font-size: 17px;
  text-transform: uppercase;
}

.tabscontent .tabsprice button:hover,
button:link,
button:visited,
button:active,
button:focus {
  background: var(--two);
  transition: 0.3s;
}

.tabscontent .tabsprice button svg {
  margin: -5px 7px 0 0;
  font-size: 25px;
}

.tabscontent span.freebon {
  color: var(--two);
  display: block;
  font-size: 13px;
  position: relative;
  padding: 0 0 0 20px;
}

.tabscontent span.freebon:before {
  content: "\21D2";
  position: absolute;
  left: 0;
}

span.freebonh {
  display: block;
  color: #63a962;
  font-size: 12px;
  text-transform: uppercase;
}

.tabsprice {
  margin: 20px 0 30px 0;
}




.pricebody .row {
  margin: 0;
}

.checkbody .row {
  margin: 0;
}

.prtb {
  width: 100%;
  margin-bottom: 30px;
}

.th {
  min-height: 30px;
  line-height: 30px;
  font-weight: normal;
  background: var(--one);
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.th div:nth-child(1) {
  text-align: left;
}

.td {
  min-height: 40px;
  line-height: 44px;
  text-align: center;
  border: 1px var(--two) solid;
  margin: 7px 0 !important;

}

.popular {
  background: #e3fbff;
  font-weight: 500;
}

.td div:nth-child(1) {
  text-align: left;
  justify-content: left;
}

.td button {
  background: none;
  border: none;
  color: var(--one);
  padding: 0 5px;
  font-weight: normal;
  text-transform: unset;
  font-size: 20px;
  transition: 0.3s;
}

.td button:hover,
button:link,
button:visited,
button:active,
button:focus {
  color: var(--two);
}

.td a {
  border: none;
}

.bonuses {
  margin-bottom: 10px !important;
}

.bonuses {
  font-size: 13px;
  text-align: center;
  background: #fff;
}

.bonuses div span.left {
  float: left;
  padding: 5px 0;
  color: var(--two)
}

.bonuses div span.right {
  float: right;
  padding: 5px 0;
  color: var(--two)
}

.bonuses div span.center {
  padding: 5px 0;
  color: var(--two);
  text-align: center;
  display: block;
}

.td img {
  max-width: 80px;
  height: auto;
  margin: 10px;
}

.check {
  margin-bottom: 15px;
}

.check div form {
  display: inline;
}

.check div {
  padding: 0 5px;
  line-height: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check div .glyphicon-minus-sign {
  font-size: 21px;
  color: #d5517a;
  margin: 0 5px;
}

.check div .glyphicon-plus-sign {
  font-size: 21px;
  color: #5088b6;
  margin: 0 5px
}

.check div button .glyphicon {
  font-size: 15px;
  color: #b50202;
}

.bon div {
  color: #008005;
}

.total {
  font-size: 15px;
  text-align: center;
}

.qty {
  font-size: 20px;
}

.qty svg {
  padding: 0 5px;
  font-size: 30px;
}

.total div {
  padding: 15px;
  border-bottom: 1px #ffffff solid;
  margin: 0px;
  background: #fff;
}

input.checkout {
  background: var(--one);
  color: #fff;
  padding: 10px 15px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  min-width: 200px;
  margin: 20px 0 0 0;
}

input.checkout:hover,
input.continue:hover {
  background: var(--bl);
}

input.continue {
  background: var(--one);
  color: #fff;
  padding: 10px 15px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  min-width: 200px;
  margin: 20px 0 0 0;
}

ul.all-bonuses {
  margin: 20px 0;
}

ul.all-bonuses li {
  color: #a5a3a3;
}

ul.all-bonuses li.active {
  color: var(--one)
}

span.tabh {
  background: var(--one);
  color: #fff;
  padding: 7px 20px;
  margin: 30px 0 5px 0;
  font-size: 20px;
  display: block;
}

.panel {
  box-shadow: none;
  border: none;
  background: none;
}

.panel-heading {
  background: #35bed4;
  color: #fff;
  padding: 0px 20px;
  margin: 5px 0;
  text-align: center;
  font-size: 25px;
  font-weight: normal;
  border-radius: 0;
}

a.right {
  position: absolute;
  right: 15px;
  top: 42px;
  color: #fff;
  z-index: 1111111;
}

a.left {
  position: absolute;
  left: 15px;
  top: 42px;
  color: #fff;
  z-index: 1111111;
}

.content-area {
  position: relative;
  text-align: justify;
  margin-top: 40px;
}

.tabs_colum {
  position: relative;
}

.rating {
  position: absolute;
  width: 220px;
  height: 17px;
  background: url(images/rating.png) no-repeat;
  left: auto;
  right: 50px;
  top: 40px;
}

.rating>span:hover {
  position: absolute;
  height: 17px;
  left: 0;
  cursor: pointer;
  background: url(images/rating_h.png) no-repeat left;
}

.rating>span.hov1 {
  width: 19px;
  display: inline-block;
  position: absolute;
  height: 17px;
  left: 0;
  z-index: 5;
}

.rating>span.hov2 {
  width: 38px;
  display: inline-block;
  position: absolute;
  height: 17px;
  left: 0;
  z-index: 4;
}

.rating>span.hov3 {
  width: 57px;
  display: inline-block;
  position: absolute;
  height: 17px;
  left: 0;
  z-index: 3;
}

.rating span.hov4 {
  width: 76px;
  display: inline-block;
  position: absolute;
  height: 17px;
  left: 0;
  z-index: 2;

}

.rating span.hov5 {
  width: 94px;
  display: inline-block;
  position: absolute;
  height: 17px;
  left: 0;
  z-index: 1;
}

.rating p {
  position: absolute;
  right: -30px;
  top: -4px;
  font-size: 17px;
}

.sidebar>.navbar {
  flex-direction: column;
  align-items: baseline;
}


.alignleft {
  margin: 10px 20px 5px 0;
  float: left;

}

.alignright {
  margin: 10px 20px 5px 0;
  float: right;
}

.aligncenter {
  margin: 20px auto;
  display: block;
}

img.aligncenter,
img.alignright,
img.alignleft {
  clear: both;
  height: auto;
  max-width: 300px;
  outline: 1px var(--one) solid;
}

.tabs_colum .crp_related {
  display: none;
}

.crp_related ul li:before {
  content: '';
}

.crp_related ul li {
  padding: 0
}



.product_items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin: 30px 0;
}

.product_item {
  width: 280px;
  border: 1px #eee solid;
  margin: 0 10px 20px 10px;
  padding: 15px;
  background: #fff;
  text-align: center;
  transition: 0.3s;
}

.product_item .prod_title {
  font-size: 20px;
  display: block;
  color: var(--two);
}

.product_item img {
  width: 200px;
  height: auto;
}

.product_item .pi_bot {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  color: #000;
}

.product_item .pi_bot svg {
  font-size: 30px;
  color: var(--one);
}

.product_item:hover {
  box-shadow: 0 0 3px 3px #f4f4f4;
  margin-top: -3px;
  transition: 0.3s;
}

.product_item:hover .pi_bot svg {
  color: var(--two);
}



.bcrumb {
  font-size: 14px;
  padding: 3px 0px;
  margin: 3px 0;
}

.bcrumb a {
  color: var(--one);
}

.bcrumb span {
  margin-right: 10px;
  overflow: visible;
}

.bcrumb span i {
  font-style: normal;
}

.icon-angle-double-right:before {
  content: '\203A';
}


.navbar-toggler {
  background: none;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler .menu-icon {
  width: 26px;
  height: 26px;
}

.navbar-toggler .menu-icon,
.navbar-toggler .menu-icon path {
  fill: currentColor !important;
}

.navbar-toggler {
  color: #ffffff;
}

.navbar-toggler:hover {
  opacity: 0.8;
}

.bg_header .navbar-toggler .menu-icon {
  fill: currentColor;
}

@media(max-width: 992px) {
  .bg_top_header {
    background: none;
    min-height: auto;
    margin-bottom: auto;
  }

  .bg_header {
    background: #ffffff;
  }

  .search_form {
    margin: 10px 0;
  }

  a.dropmenu_product {
    margin: 15px 0;
  }

  .menu_product ul {
    width: 100%;
  }

  .navbar-toggler {
    color: #1b1f28;
  }	

  ul.main_menu {
    flex-direction: column;
    margin: 15px 0;
  }
  
}





.menu-products-container {
  margin: 40px 0;
}

ul.catmenu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.catmenu li {
  margin: 0;
  padding: 0;
}

ul.catmenu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e8ee;
  border-radius: 10px;
  padding: 20px 15px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border 0.2s ease;
}

ul.catmenu li a:hover {
  border: 1px solid #cfd8df;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

ul.catmenu li img {
  width: 140px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

ul.catmenu li span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0b4f6c;
}

@media(max-width: 992px) {
  ul.dropdown-menu li:hover ul.sub-menu {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    padding: 2px 0 10px 0;
    width: 100%;
  }

  ul.sub-menu li a {
    margin-left: 0px;
  }

  /* ul.dropdown-menu li::after {
    content: '';
    width: 0;
    height: 0;
  } */
  a:hover::before {
    width: 0;
  }
  ul.sub-menu {
    background: none !important;
    padding: 3px 0 !important;
  }
  ul.sub-menu li {
    margin: 0;
    margin-bottom: 3px !important;
  }

  .bg_body::before {
    height: 110px;
  }

  ul.dropdown-menu {
    display: block;
    position: relative;
    min-width: auto;
    width: 100%;
    margin: 0;
    background: no-repeat;
    padding: 0 0;
    border: 0;
  }
  ul.dropdown-menu li {
    margin-bottom: 10px;
}
.shopping_cart {
  justify-content: left;
}
ul.main_menu li {
  line-height: 40px;
}
}

.home-categories {
  margin: 3rem 0;
  padding: 0;
}

.home-categories h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.home-categories-intro {
  max-width: 760px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
}

/* Category list */

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.category-list li {
  background: #f7f8f9;
  border: 1px solid #e3e6e8;
  border-radius: 6px;
}

.category-list a {
  display: block;
  padding: 1rem 1.2rem;
  text-decoration: none;
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.4;
}

.category-list a:hover,
.category-list a:focus {
  background: #eef2f4;
  text-decoration: underline;
}

/* ===== Tablet ===== */

@media (max-width: 900px) {
  .category-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Mobile ===== */

@media (max-width: 520px) {
  .category-list {
    grid-template-columns: 1fr;
  }

  .home-categories h2 {
    font-size: 1.4rem;
  }

  .category-list a {
    padding: 0.9rem 1rem;
  }
}

/* ===== Medical Disclaimer ===== */

.medical-disclaimer {
  margin: 3rem 0 2.5rem;
  padding: 1.5rem 1.75rem;
  background-color: #f5f7f8;
  border-left: 4px solid #c4c9cc;
}

.medical-disclaimer h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.medical-disclaimer p {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.medical-disclaimer p:last-child {
  margin-bottom: 0;
}

/* ===== Tablet ===== */

@media (max-width: 900px) {
  .medical-disclaimer {
    padding: 1.3rem 1.5rem;
  }

  .medical-disclaimer h2 {
    font-size: 1.2rem;
  }
}

/* ===== Mobile ===== */

@media (max-width: 520px) {
  .medical-disclaimer {
    padding: 1.1rem 1.2rem;
    margin: 2.5rem 0 2rem;
  }

  .medical-disclaimer h2 {
    font-size: 1.15rem;
  }

  .medical-disclaimer p {
    font-size: 0.9rem;
  }
}

/* ===== Page Table of Contents ===== */

.page-toc {
  margin: 1.5rem 0 2.5rem;
  padding: 1rem 1.25rem;
  background-color: #f7f9fa;
  border-left: 4px solid #d2d8dc;
  font-size: 0.95rem;
}

.page-toc strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.page-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-toc li {
  margin: 0.35rem 0;
}

.page-toc a {
  color: #2b5f8e;
  text-decoration: none;
  line-height: 1.4;
}

.page-toc a:hover,
.page-toc a:focus {
  text-decoration: underline;
}

/* ===== Tablet ===== */

@media (max-width: 900px) {
  .page-toc {
    padding: 0.9rem 1.1rem;
  }
}

/* ===== Mobile ===== */

@media (max-width: 520px) {
  .page-toc {
    padding: 0.8rem 1rem;
    margin: 1.2rem 0 2rem;
  }

  .page-toc strong {
    font-size: 0.9rem;
  }

  .page-toc a {
    font-size: 0.9rem;
  }
}

.external-info-note {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  margin: 1.5rem 0 0.75rem;
  padding-left: 0.75rem;
  border-left: 3px solid #e0e0e0;
  background: transparent;
}
.delivery-info {
  display: inline-block;
  width: auto;
  max-width: 420px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
  border: 1px solid #e6e9ed;
  border-radius: 6px;
  background: #fafafa;
}

.delivery-info li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #e6e9ed;
  font-size: 14px;
  line-height: 1.4;
}

.delivery-info li:last-child {
  border-bottom: none;
}

.delivery-info .label {
  font-weight: 600;
  white-space: nowrap;
  color: #2b2f33;
}

.delivery-info .value {
  text-align: right;
  color: #555;
}

.delivery-info .in-stock {
  color: #2e7d32;
  font-weight: 600;
}

.delivery-info li {
  font-size: 14px;
}

@media (max-width: 768px) {
  .delivery-info li {
    font-size: 15px;
  }
}

.footer img.footer-logo-fixed {
  width: auto !important;
  max-width: none !important;
  height: auto;
  margin: 20px auto;
  display: block;
}

.pharmacist-review {
  margin-top: 40px;
  padding: 22px 26px;
  background: #f5f7f8;
  border-left: 4px solid #0b4f6c;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pharmacist-review h3 {
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0b4f6c;
}

.pharmacist-review p {
  margin-bottom: 10px;
}

.pharmacist-review p:last-child {
  margin-bottom: 0;
}

.faq-section {
  margin-top: 40px;
}

.faq-section h2 {
  margin-bottom: 20px;
}

.faq-section h3 {
  font-size: 1.05rem;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.faq-section p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333;
}
.jump-link {
    margin: 20px 0 30px;
    text-align: left;
}

.jump-link a {
    display: inline-block;
    padding: 10px 18px;
    background-color: #f2f5f7;
    border: 1px solid #d9e1e6;
    border-radius: 6px;
    color: #1a3c5e;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.jump-link a:hover {
    background-color: #e6eef3;
}

/* "Price:"  */
.tabsprice div.line_b span.pc-price-label {
    font-size: 17px;
    color: #5d5d5d;
    margin-right: 8px;
}

.tabsprice .pc-perpill {
    font-size: 13px;
    color: #8c8c8c;
    margin: 4px 0 10px 0;
}

.tabscontent .nav-tabs > li.active > a {
    background: var(--two);
}

.tabscontent ul.nav-tabs,
.tabscontent .tabstabs ul.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tabscontent .tabsprice div.line_b {
    justify-content: flex-start;
}

.tabsprice div.line_b span.pc-price-label {
    font-size: 17px;
    color: #5d5d5d;
    margin-right: 8px;
}

.tabsprice .pc-perpill {
    font-size: 13px;
    color: #8c8c8c;
    margin: 4px 0 10px 0;
}

.tabscontent .tabstabs .nav-tabs > li.active > a {
    background: var(--two);
}

.pc-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}
.pc-layout__image {
    flex: 0 0 300px;
    max-width: 300px;
}
.pc-layout__image img {
    width: 100%;
    height: auto;
    display: block;
}
.pc-layout__prices {
    flex: 1 1 320px;
    min-width: 280px;
}
@media (max-width: 768px) {
    .pc-layout {
        flex-direction: column;
    }
    .pc-layout__image {
        max-width: 100%;
        flex: 0 0 auto;
    }
}

.tabscontent .nav-tabs > li > a,
.tabscontent .tabstabs .nav-tabs > li > a {
    display: inline-block;
}

.tabscontent ul.nav-tabs > li > a,
.tabscontent .tabstabs ul.nav-tabs > li > a {
    background: #fff;
    color: #000;
    border: 1px solid #d9d9d9;
}

.tabscontent ul.nav-tabs > li.active > a,
.tabscontent .tabstabs ul.nav-tabs > li.active > a {
    background: var(--one);
    color: #fff;
    border-color: var(--one);
}

.pc-price-buy-row {
    display: grid;
    grid-template-columns: 200px auto;
    align-items: center;
    gap: 20px;
}
.pc-price-col {
    min-width: 0;
}

/*  Finish "Price:"  */

.btn-up {
  position: fixed;
  background-color: #0b4f6c;
  right: 20px;
  bottom: 20px;
  border-radius: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  transition: background-color .2s ease-in-out;
}

.btn-up::before {
  content: "";
  text-align: center;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 12px;
  top: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17V4M3 10l7-7 7 7'/%3E%3C/g%3E%3C/svg%3E");
}

.btn-up_hide {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn-up:hover {
    background-color: #0b4f6c;
  }
}

.medicine-quick-facts {
    margin: 18px 0 16px;
    border: 1px solid #d7e3ec;
    border-radius: 4px;
    background: #f7fbfe;
    overflow: hidden;
}

.medicine-quick-facts__title {
    margin: 0;
    padding: 10px 14px;
    background: #e8f3fa;
    border-bottom: 1px solid #d7e3ec;
    color: #174f73;
    font-size: 15px;
    line-height: 1.35;
}

.medicine-quick-facts__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 0;
}

.medicine-quick-facts__table th,
.medicine-quick-facts__table td {
    padding: 9px 14px;
    border-bottom: 1px solid #e3e9ee;
    vertical-align: top;
    text-align: left;
    font-size: 13px;
    line-height: 1.45;
}

.medicine-quick-facts__table th {
    width: 34%;
    font-weight: 600;
    color: #214f6d;
    background: #fbfdff;
}

.medicine-quick-facts__table td {
    color: #333;
    background: #fff;
}

.medicine-quick-facts__table tr:last-child th,
.medicine-quick-facts__table tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 640px) {
    .medicine-quick-facts {
        margin: 15px 0;
    }

    .medicine-quick-facts__title {
        padding: 10px 12px;
        font-size: 14px;
    }

    .medicine-quick-facts__table,
    .medicine-quick-facts__table tbody,
    .medicine-quick-facts__table tr,
    .medicine-quick-facts__table th,
    .medicine-quick-facts__table td {
        display: block;
        width: 100%;
    }

    .medicine-quick-facts__table tr {
        border-bottom: 1px solid #e3e9ee;
    }

    .medicine-quick-facts__table tr:last-child {
        border-bottom: 0;
    }

    .medicine-quick-facts__table th {
        padding: 8px 12px 3px;
        border-bottom: 0;
        background: #fff;
        font-size: 12px;
    }

    .medicine-quick-facts__table td {
        padding: 2px 12px 9px;
        border-bottom: 0;
        font-size: 13px;
    }
}