@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Knewave&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: "Work Sans", sans-serif;
}

a {
  text-decoration: none;
  color: #222;
}

a:hover {
  color: #02575f;
}

a.btn {
  background: #007782;
  color: #fff;
  /* border-radius: 8px; */
  /* box-shadow: 0px 4px 22px rgba(255, 57, 14, 0.35); */
  /* min-width: max-content; */
  /* padding: 16px 36px; */
  /* letter-spacing: -0.02em; */
  /* font-weight: 700; */
  /* font-size: 16px; */
  /* line-height: 22px; */
  display: inline-block;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: all 0.6s ease-in-out;
  z-index: 1;
}

a.btn:hover {
  background: #0a58ca;
  color: #fff;
}

.container {
  max-width: 1420px;
}

section {
  margin: 50px 0px;
}

ul {
  margin: 0px;
  padding: 0px;
}

ul li {
  list-style: none;
}

img {
  width: 100%;
}

.menuImg {
  display: none;
  height: 30px;
  background-color: #fff;
  padding: 2px;
  border-radius: 4px;
}

/* keyframes */
@keyframes slide-in {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

.imgMenu {
  animation: slide-in 0.5s ease-in-out;
  display: block;
  height: 30px;
  background-color: #fff;
  padding: 2px;
  border-radius: 4px;
}

.logo {
  padding: 0px;
}

.logo h1 {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #007782;
  margin-bottom: 0px;
}

.logo img {
  width: 100%;
}

.header-contact ul {
  padding: 30px 0px;
}

.header-contact ul li {
  float: left;
  display: flex;
  justify-content: end;
  width: 100%;
  color: #4c4a4a;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.header-contact ul li svg {
  margin-right: 15px;
}

/********************************************* Menu *********************************************/
header {
  margin-top: 0px;
  background: #F9F9F9;
  box-shadow: 0px 4px 4px #1810100d;
  border-bottom: solid thin #f9efef;
  color: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1025;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left h1 {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #007782;
  margin-bottom: 0px;
}

.header-right {
  display: flex;
}

.header-right a {
  font-size: 16px;
  font-weight: 500;
}

.header-right svg {
  margin-right: 15px;
}

.header-right a:hover {
  text-decoration: underline;
}

.search-container {
  width: 50%;
  background: #f1eded;
  border: 1px solid #dddada;
  float: left;
  border-radius: 5px;
}

.search-container select {
  margin: 0px;
  padding: 10px;
  border: none;
  background: none;
  color: #666;
}

.search-container input {
  width: 60%;
  border: none;
  height: 48px;
  font-size: 16px;
  background: #f1eded;
  border-left: solid thin #d8d5d5;
  padding-left: 20px;
}

.search-container button {
  float: right;
  text-transform: capitalize;
  right: 0;
  top: -1px;
  height: 50px;
  display: block;
  background: #007782;
  border: none;
  color: #fff;
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  letter-spacing: 0.5px;
}



/********************************************* Menu *********************************************/


/******************************************** Search *******************************************/

.hero__search__form {
  width: 69%;
  height: 50px;
  background: #f1eded;
  border: 1px solid #dddada;
  position: relative;
  float: left;
  border-radius: 5px;
}

.hero__search__form form .hero__search__categories {
  width: 20%;
  float: left;
  font-size: 16px;
  color: #666;
  font-weight: 500;
  padding-left: 20px;
  padding-top: 11px;
  position: relative;
  letter-spacing: 0.4px;
}

.hero__search__form form .hero__search__categories span {
  position: absolute;
  right: 14px;
  top: 14px;
}

.hero__search__form form .hero__search__categories:after {
  position: absolute;
  right: 0;
  top: 0px;
  height: 48px;
  width: 1px;
  background: #000000;
  opacity: 0.1;
  content: "";
}

.hero__search__form form input {
  width: 70%;
  border: none;
  height: 48px;
  font-size: 16px;
  background: #f1eded;
  color: #666;
  padding-left: 20px;
}

.hero__search__form form input:focus-visible {
  border: none;
  outline: none
}

.hero__search__form form button {
  position: absolute;
  text-transform: capitalize;
  right: 0;
  top: -1px;
  height: 50px;
  display: block;
  background: #007782;
  border: none;
  color: #fff;
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  letter-spacing: 0.5px;
}

/******************************************** Search *******************************************/




/******************************************** Banner *******************************************/

.banner-wrap {
  position: relative;
  width: 100%;
  margin: 0;
}

.banner-wrap img {
  width: 100%;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 999;
  display: block;
  width: 33%;
  padding-left: 80px;
}

.banner-content h2 {
  font-size: 43px;
  font-weight: 800;
  color: #2D2C2C;
  line-height: 1.2;
}

.banner-content button {
  background: #007782;
  border: none;
  border-radius: 5px;
  padding: 10px 25px;
  width: 100%;
  color: #fff;
  margin: 20px 0px;
  cursor: pointer;
}

.banner-content a {
  font-size: 16px;
  color: #444343;
  text-decoration: underline;
  font-weight: 500;
}


/******************************************** Banner *******************************************/





/******************************************** category-block *******************************************/
.category-block {
  padding: 20px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.catgory-box {
  flex: 1 1 calc(12.5% - 10px);
  /* Each box takes up 12.5% width, with space for margins */
  margin: 5px;
  text-align: center;
}

.catgory-circle {
  font-family: "Inter", sans-serif;
  background: #F7F7F7;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.catgory-circle img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.catgory-circle-content h3 {
  margin: 5px 0;
  color: #444343;
  font-size: 16px;
  font-weight: 500;
}

.catgory-circle-content h3 a {
  font-family: "Inter", sans-serif;
}

.catgory-circle-content span {
  font-size: 14px;
  color: #444343;
}


/******************************************** category-block *******************************************/



#mixedSlider {
  position: relative;
}

#mixedSlider .MS-content {
  white-space: nowrap;
  overflow: hidden;
  margin: 0 5%;
}

#mixedSlider .MS-content .item {
  display: inline-block;
  width: 33.3333%;
  position: relative;
  vertical-align: top;
  overflow: hidden;
  height: 100%;
  white-space: normal;
  padding: 0 10px;
}

#mixedSlider .MS-content .item .newsfeed-block-content {
  border: solid thin #E0E0E0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

#mixedSlider .MS-content .item .newsfeed-block-content h3 {
  margin-top: 0px;
}



@media (max-width: 991px) {
  #mixedSlider .MS-content .item {
    width: 50%;
  }
}

@media (max-width: 767px) {
  #mixedSlider .MS-content .item {
    width: 100%;
  }
}

#mixedSlider .MS-content .item .imgTitle {
  position: relative;
}

#mixedSlider .MS-content .item .imgTitle .blogTitle {
  margin: 0;
  text-align: left;
  letter-spacing: 2px;
  color: #252525;
  font-style: italic;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  bottom: 0;
  font-weight: bold;
  padding: 0 0 2px 10px;
}

#mixedSlider .MS-content .item .imgTitle img {
  height: auto;
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: solid thin #E0E0E0;
}

#mixedSlider .MS-content .item p {
  font-size: 16px;
  margin: 2px 10px 0 5px;
  text-indent: 15px;
}

#mixedSlider .MS-content .item a {
  float: right;
  margin: 0px 0px 10px 0px;
  font-size: 16px;
  color: #494848;
  font-weight: 600;
  transition: linear 0.1s;
}

#mixedSlider .MS-content .item a:hover {
  text-shadow: 0 0 1px grey;
}

#mixedSlider .MS-controls button {
  position: absolute;
  border: none;
  background-color: transparent;
  outline: 0;
  font-size: 50px;
  top: 95px;
  color: rgba(0, 0, 0, 0.4);
  transition: 0.15s linear;
}

#mixedSlider .MS-controls button:hover {
  color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 992px) {
  #mixedSlider .MS-controls button {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  #mixedSlider .MS-controls button {
    font-size: 20px;
  }
}

#mixedSlider .MS-controls .MS-left {
  left: 0px;
}

@media (max-width: 767px) {
  #mixedSlider .MS-controls .MS-left {
    left: -10px;
  }
}

#mixedSlider .MS-controls .MS-right {
  right: 0px;
}

@media (max-width: 767px) {
  #mixedSlider .MS-controls .MS-right {
    right: -10px;
  }
}


/******************************************** Newsfeed *******************************************/


.newsfeed-wrap {
  float: left;
  width: 100%;
  margin: 50px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.newsfeed-section {
  padding: 0px 15px;
}

.newsfeed-wrap h3 {
  font-size: 26px;
  font-weight: bold;
  color: #000;
  padding: 0px;
  margin-bottom: 30px;
}

.newsfeed-block {
  flex: 0 0 calc(20% - 10px);
  margin-bottom: 40px;
  border: solid thin #EBEBEB;
  padding: 0px;
}

.newsfeed-block img {
  width: 100%;
  height: auto;
}

.newsfeed-block-content {
  float: left;
  width: 100%;
  padding: 10px 15px;
}

.newsfeed-block-content h3 {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
}

.newsfeed-block-content h3 a {
  color: #494848;
}

.newsfeed-block-content ul.classification li:nth-child(1) {
  color: #666666;
  font-size: 14px;
  font-weight: 500;
}

.newsfeed-block-content ul.classification li:nth-child(2) {
  color: #007782;
  font-size: 14px;
  font-weight: 500;
}

.newsfeed-block-content ul.classification li:nth-child(3) {
  color: #007782;
  font-size: 14px;
  font-weight: 600;
}

.newsfeed-block-content ul.classification li:nth-child(3) img {
  width: 9px;
  height: 10px;
}

.newsfeed-block-content .meta {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.newsfeed-block-content .profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.newsfeed-block-content .name-star {
  display: flex;
  flex-direction: column;
}

.newsfeed-block-content .name {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}

.newsfeed-block-content .stars {
  display: flex;
  margin-top: 5px;
}

.newsfeed-block-content .star-img {
  width: 54px;
  height: 10px;
}


/******************************************** Newsfeed *******************************************/




/******************************************** Best Seller *******************************************/


.best-seller {}

.seller-info-block {
  float: left;
  width: 100%;
  background: #F4E9E4;
  border-radius: 5px;
}

.seller-info-block p {
  padding: 20px;
  color: #575757;
  font-size: 14px;
}

.seller-btn {
  float: left;
  width: 100%;
  padding: 0px 20px;
}

.seller-btn button {
  float: left;
  width: 100%;
  background: none;
  border: solid 2px #C8C0BD;
  color: #666;
  border-radius: 5px;
  padding: 9px;
  margin-bottom: 25px;
}

.seller-btn button.btn {
  background: #007782;
  border-color: #007782;
  color: #fff;
}

.seller-info {
  float: left;
  width: 100%;
  border-bottom: solid thin #ECDED8;
  padding: 20px;
  margin-bottom: 22px;
}

.seller-info .profile-img {
  float: left;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 25px;
  border: solid 5px #FAF2F2;
  box-shadow: 0px 0px 4px rgb(0 0 0 / 25%);
}

.seller-info .name-star {
  display: flex;
  flex-direction: column;
}

.seller-info span.name {
  font-size: 20px;
  font-weight: 600;
  color: #666666;
  text-transform: capitalize;
}

.seller-info .stars {
  display: flex;
  margin-top: 5px;
}

.seller-info .star-img {
  width: 54px;
  height: 10px;
}

.seller-info .name-star p {
  font-size: 14px;
  color: #666;
  margin: 5px 0px 0px 0px;
}

/******************************************** Best Seller *******************************************/



/******************************************** ads *******************************************/

.three-ads {
  float: left;
  width: 100%;
}

.three-ads img {
  width: 100%;
  height: 347px;
}


/******************************************** ads *******************************************/





/********************************************* Footer *********************************************/
.border-right {
  float: left;
  border-right: solid thin #e3e0e0;
}

footer {
  float: left;
  width: 100%;
  padding: 30px 0px 15px 0px;
  background: #f1eded;
  padding-top: 80px;
}

footer .logo {
  margin-bottom: 20px;
}

footer .logo h1 {
  font-size: 55px;
}

.footer-info {
  float: left;
  width: 100%;
}

.footer-info img {
  width: 100%;
  float: left;
  padding: 5px 30px 30px 0px;
}

.footer-info p {
  float: left;
  color: #fff;
  text-align: left;
  width: 100%;
  margin-bottom: 0px;
  padding-bottom: 10px;
  font-weight: 600;
  border-bottom: solid thin #e3e0e0;
}

.footer-info ul {
  float: left;
  width: 100%;
}

.footer-info ul:last-child {
  padding-top: 10px;
}

.footer-info ul li {
  float: left;
  width: 100%;
  padding-bottom: 10px;
}

.footer-info ul li a {
  color: #666;
  font-size: 16px;
  font-weight: 600;
}

.footer-info h3 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 0px;
  float: left;
}

.footer-list {
  float: left;
  width: 100%;
  padding: 0px 20px;
}

.footer-list h3 {
  font-size: 30px;
  border-bottom: solid thin #e3e0e0;
  color: #666;
  text-align: left;
  padding-bottom: 10px;
  font-weight: 600;
  margin-bottom: 30px;
}

.footer-list ul li {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-list ul li a {
  color: #666;
}

.footer-list ul li a:hover {
  color: #FE0000;
}

.imp-links {
  float: left;
  width: 100%;
}

.imp-links h3 {
  font-size: 30px;
  border-bottom: solid thin #e3e0e0;
  color: #fff;
  text-align: center;
  padding-bottom: 10px;
  font-weight: 700;
  margin-bottom: 30px;
}

.imp-links button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: left;
  border-radius: 6px;
}

.imp-links button a {
  color: #fff;
}

.imp-links button:nth-child(1) {
  background: #1877F2;
}

.imp-links button:nth-child(2) {
  background: #833ab4;
  background: linear-gradient(to right,
      #833ab4, #fd1d1d, #fcb045);
}

.imp-links button:nth-child(3) {
  background: #0A66C2;
}

.footer-bottom {
  float: left;
  width: 100%;
  border-top: solid thin #e3e0e0;
  margin-top: 20px;
  padding-top: 30px;
}

.footer-bottom ul li {
  float: left;
  font-size: 14px;
  font-weight: 400;
  margin-right: 20px;
}

.footer-bottom ul li a {
  color: #666;
}

.app {
  float: right;
}

.app img {
  float: left;
  width: 120px;
  margin-left: 10px;
}

/*************** Footer ***************/


/********************************** category-slider *************************************/

.category-slider #mixedSlider .MS-content {
  display: flex;
  flex: 1 1 calc(12.5% - 10px);
  margin: 5px;
  text-align: center;
  padding: 0px 25px;
}

.category-slider #mixedSlider .MS-content .item {
  margin-right: 20px;
  flex: 0 0 calc(12.5% - 10px);
}

.category-slider .catgory-circle-content {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
}

.category-slider #mixedSlider .MS-controls button {
  top: 25px;
}

.category-slider #mixedSlider .MS-controls button svg {
  font-size: 22px;
}

/********************************** category-slider *************************************/



/********************************** Login *************************************/

.login {}

.login-wrap {
  border: solid thin #EBEBEB;
  border-radius: 5px;
  width: 580px;
}

.login-form {
  padding: 60px;
}

.login-form h2 {
  font-size: 38px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 55px;
}

.login-form h4 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 55px;
}

.social-btn {
  float: left;
  width: 100%;
  text-align: center;
}

.login-form .btn {
  border: solid thin #DEDEDE;
}

.login-form .btn a {
  font-size: 15px;
  color: #323131;
  font-weight: 500;
}

.login-form .btn:hover {
  border-color: #20DC49;
}

.login-form .btn img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.login-form .btn svg {
  margin-right: 10px;
  font-size: 18px;
}

.login-form .btn.facebook svg {
  color: #3B5998;
}

.divider-container {
  text-align: center;
  width: 100%;
  margin: 20px 0;
  /* Add space above and below the divider */
}

.divider {
  display: inline-block;
  position: relative;
  color: #212529;
  font-size: 16px;
  padding: 0;
  background-color: #fff;
  margin-top: 20px;
  font-weight: 500;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  /* Adjust line length */
  border-top: 1px solid #DBDBDB;
}

.divider::before {
  left: -115px;
  /* Adjust distance for left line */
}

.divider::after {
  right: -115px;
  /* Adjust distance for right line */
}

.login-container {
  padding: 20px;
}

.login-container input[type="email"],
.login-container input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

.password-container {
  position: relative;
}

.password-container .toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}

.remember-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
}

.remember-container label {
  font-size: 14px;
  color: #1A1A1A;
  font-weight: 500;
}

.remember-container a {
  font-size: 14px;
  font-weight: 500;
  color: #d9534f;
  text-decoration: none;
}

.remember-container a:hover {
  text-decoration: underline;
}

.login-button {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
  border: solid thin #5A5A5A !important;
  background: none;
  color: #5A5A5A;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #007782;
  border: solid thin #007782 !important;
  color: #fff;
}

.remember-container input[type="checkbox"] {
  accent-color: #333;
  margin-right: 8px;
}

/********************************** Login *************************************/


/********************************** Filter  *************************************/

.filter-top {
  float: left;
  width: 100%;
  padding: 0px 15px;
  font-family: "Poppins", sans-serif;
}

.filter-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #EFEFEF;
  color: #444343;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 20px;
}

.filter-btn:last-child {
  padding-right: 10px;
}

.filter-btn svg {
  margin-right: 15px;
}

.filter-cat {
  float: left;
  width: 100%;
  border-bottom: solid thin #F5F5F5;
  padding: 15px;
}

.filter-cat:last-child {
  border: none;
}

.filter-cat h3 {
  font-size: 18px;
  font-weight: 600;
  color: #444343;
  font-family: "Poppins", sans-serif;
}

/* Container for filter options */
.filter-options {
  display: none;
  padding: 15px 0px;
  margin: 0px 15px;
  width: 100%;
  border: solid thin #F5F5F5;
}

/* Style for each filter item */
.filter-item {
  float: left;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-right: 30px;
}

.filter-item label {
  color: #444343;
  font-size: 16px;
  font-weight: 500;
}

/* Checkbox styling */
.filter-item input[type="checkbox"] {
  margin-right: 10px;
}

/********************************** Filter  *************************************/




/********************************** Breadcrumb *************************************/

.breadcrumb {
  margin-top: 0px;
  float: left;
  width: 100%;
  background: #F5F5F5;
  text-align: center;
  padding: 30px 0px;
}

.breadcrumb ul li {
  display: inline-block;
}

.breadcrumb ul li a {
  color: #444343;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb a.current-page {
  color: #007782;
  font-size: 20px;
  font-weight: 600;
}

/********************************** Breadcrumb *************************************/


/********************************** Single *****************************************/
.single-top {
  float: left;
  width: 100%;
  font-family: "Inter", sans-serif;
}



/********************************** Slider *****************************************/
.slider-wrapper {
  max-width: 800px;
  position: relative;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 610px;
}

.slider-main {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the entire container without distortion */
  border-radius: 10px;
  /* Optional: Keep the rounded corners */
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.thumbnail-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.thumbnail {
  margin: 0 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease-in-out;
}

.thumbnail img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  object-position: top;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #007782;
}

/********************************** Slider *****************************************/


/********************************** Single *****************************************/

.single-detail h2 {
  color: #494848;
  font-size: 20px;
  font-weight: 600;
  border-bottom: solid thin #F0F2F1;
  padding-bottom: 15px;
}

.single-detail-box {
  float: left;
  width: 100%;
  border-bottom: solid thin #F0F2F1;
  padding-bottom: 15px;
}

.single-detail-box h3 {
  font-size: 20px;
  color: #007782;
  font-weight: 600;
}

.single-detail-box p {
  font-size: 14px;
  color: #007782;
  font-weight: 500;
}

.single-detail-box p img {
  width: auto;
  height: auto;
  margin-right: 5px;
}

.single-specification {
  float: left;
  width: 100%;
  border-bottom: solid thin #F0F2F1;
  padding: 20px 0px;
}

.single-specification table tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
  float: left;
  padding-bottom: 10px;
}

.single-specification table tr td {
  color: #393F42;
  font-size: 14px;
  font-weight: 400;
}

.single-specification strong {
  color: #393F42;
  font-size: 14px;
  font-weight: 600;
}

.button-container {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  /* Align buttons to the left and right */
  align-items: center;
  /* Vertically center the buttons (optional) */
  gap: 20px;
  /* Space between the buttons (optional, but only visible on narrow screens) */
  width: 100%;
  /* Ensure container spans full width */
}

.button-container button.btn.btn-outline-primary {
  width: 50%;
  border-color: #C8C0BD;
  color: #666;
  font-size: 16px;
  font-weight: 600;
}

.button-container button.btn.btn-outline-primary:hover {
  color: #fff;
  background: #007782;
  border-color: #007782;
}

.btn {
  /* padding: 10px 20px; */
  padding: 10px;
  /* Adjust padding as needed */
  font-size: 16px;
  /* Adjust font size as needed */
}

button.btn.btn-primary.btn-lg.btn-block {
  width: 100%;
  background: #007782;
  border-color: #007782;
  color: #fff;
}

.single-notes {
  float: left;
  width: 100%;
  border-top: solid thin #F0F2F1;
  margin-top: 20px;
  padding-top: 20px;
}

.single-notes h3 {
  color: #494848;
  font-weight: 600;
  font-size: 18px;
}

.single-notes p {
  color: #494848;
  font-size: 15px;
  text-align: justify;
}

.single-notes a {
  color: #007782;
  font-weight: 500;
}

.single-notes a:hover {
  text-decoration: underline;
}

/********************************** Single *****************************************/



/********************************** Single-Right *****************************************/

.single-right {
  float: left;
  width: 100%;
  border: solid thin #F0F2F1;
  border-radius: 8px;
}

.single-right .seller-info-block {
  background: none;
  border-radius: 0px;
}

.single-right .seller-info {
  border: none;
  margin-bottom: 0px;
  padding: 15px;
}

.single-right .seller-info .profile-img {
  width: 70px;
  height: 70px;
  border: solid 2px #FAF2F2;
  margin-right: 15px;
}

.single-right .seller-info .name-star p {
  padding: 0px;
  font-size: 13px;
}



/********************************** Single-Right *****************************************/