h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
figure,
ul,
ol,
li,
div,
span,
img,
button,
input {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: system-ui, "Segoe UI", "Noto Sans", sans-serif !important;
}

.customhover {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  border: 0;
  color: #272343;
  background: #fff;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.customhover:hover {
  background: #272343;
  color: #fff;
}

@media screen and (max-width:767px) {
  .customhover {
    padding: 6px 10px;
    font-size: 12px;
    line-height: 18px;
  }
}

/* ================================================================== */
/* .shop_header {
  background: #0074a3;
  padding: 12px 0;
  color: #ffffff;
}

.shop_header .elements {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop_header .Logo_parent {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.shop_header .Logo_parent .brand-icon {
  width: 130px;
  height: 50px;
  overflow: hidden;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.shop_header .Logo_parent img {
  width: 100%;
  height: auto;
  object-fit: contain
}

.shop_header .nav_elements {
  gap: 20px;
}

.shop_header .navbar .nav-item a {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  position: relative;

}

.shop_header .navbar .nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease-in-out;
}

.shop_header .navbar .nav-item a.active::after,
.shop_header .navbar .nav-item a:hover::after {
  width: 100%;
}

.shop_header .open-aside {
  width: 40px;
  height: 40px;
  background: #f38521;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  color: #ffffff;
  display: none;
  z-index: 2;
  transition: all 0.3s ease-in;
}

.shop_header .close_aside {
  background: transparent;
  border: 0;
  padding: 0;
}

.shop_header aside .fa-xmark {
  width: 40px;
  height: 40px;
  background: #f38521;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease-in;
}

.shop_header aside a {
  color: #000000;
  font-weight: 600;
}

.shop_header aside a.active,
.shop_header aside a:hover {
  color: #673de6 !important;
}

.shop_header.show-overlay::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.shop_header .right-sidbar {
  position: fixed;
  top: 0;
  left: -355px;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  transition: left 0.4s ease;
  padding: 15px;
}

.shop_header .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 959px;
  }
}

@media (max-width: 767px) {
  .shop_header hr {
    background-color: #000;
    color: #000;
  }

  .shop_header {
    padding: 0px 0;
  }

  .shop_header .brand-icon {
    width: 150px;
  }

  .shop_header .brand-icon img {
    width: 100%;
    height: auto;
  }

  .shop_header .nav_elements {
    display: none !important;
  }

  .shop_header .open-aside {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .shop_header .side_elements {
    display: inline-block;
    padding: 6px 0px;
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
}

@media screen and (max-width:480px) {
  .shop_header .Logo_parent .brand-icon {
    width: 100px;
    height: 35px;
  }

  .shop_header aside .fa-xmark,
  .shop_header .open-aside {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
  }

  .shop_header .brand-icon {
    width: 100px;
  }

} */


/* ================================================================== */
.shop_hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.store_hero {
  width: 100%;
  height: 350px;
  position: relative;
}

.store_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}

.shop_hero {
  position: relative;
  background: var(--hero-bg) center / cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.shop_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6));
  z-index: 0;
}

.shop_hero .content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  gap: 14px;
  width: 40%;
}

.shop_hero h1 {
  color: #fff;
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
}

.shop_hero h2 {
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  font-weight: 600;
}

.shop_hero .edit_bann {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -50%;
  right: 0%;
  font-size: 16px;
  border-radius: 50%;
  background: #ffffff;
  color: #272343;
  border: 1.32px solid #00000026;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.shop_hero .edit_bann:hover {
  background: #0074a3;
  color: #fff;
}

@media screen and (max-width:1280px) {
  .shop_hero .content {
    width: 38%;
  }
}

@media screen and (max-width:1199px) {
  .shop_hero {
    height: 400px;
  }

  .shop_hero .content {
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .shop_hero .coverphoto {
    position: relative;
  }
}

@media screen and (max-width:991px) {
  .shop_hero {
    height: 300px;
  }

  .shop_hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .shop_hero h2 {
    font-size: 26px;
    line-height: 32px;
  }
}

@media screen and (max-width:767px) {
  .shop_hero .content {
    gap: 8px;
    padding: 0px 10px;
  }

  .shop_hero h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .shop_hero h2 {
    font-size: 20px;
    line-height: 26px;
  }
}

/* ================================================================== */
.platform {
  padding: 50px 0px;
}

.platform h2 {
  width: 70%;
  color: #272343;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
}

.platform p {
  font-size: 16px;
  line-height: 20px;
  color: #666666;
}

.platform figure {
  aspect-ratio: 391 / 420;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.platform figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

@media screen and (max-width:1400px) {
  .platform h2 {
    width: 90%;
  }
}

@media screen and (max-width:991px) {

  .platform h2 {
    width: 100%;
    font-size: 26px;
    line-height: 32px;
  }

  .platform p {
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (max-width:767px) {
  .platform .row {
    row-gap: 15px;
  }

  .platform h2 {
    width: 100%;
    font-size: 20px;
    line-height: 26px;
  }

  .platform p {
    font-size: 12px;
    line-height: 18px;
  }
}

/* ================================================================== */

.features h2 {
  color: #272343;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
}

.features h3 {
  color: #272343;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.features p {
  font-size: 16px;
  line-height: 20px;
  color: #666666;
}

.features .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
}

.features .feature-card {
  width: 240px;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  box-shadow:
    0px 8px 48px 0px #EEEEEE,
    0px 4px 8px 0px #42474C0F,
    0px 0px 1px 0px #42474C7A;
}

.features .feature-card p {
  font-size: 12px;
  line-height: 18px;
  color: #6b7280;
}

.features .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width:1400px) {
  .features .feature-card {
    width: 206px;
  }
}

@media screen and (max-width:1199px) {
  .features .feature-card {
    width: 170px;
  }
}

@media screen and (max-width:991px) {
  .features h3 {
    font-size: 14px;
    line-height: 20px;
  }

  .features .feature-card p {
    font-size: 10px;
    line-height: 16px;
  }

  .features .feature-card {
    padding: 10px;
  }

  .features .content {
    justify-content: start;
  }

  .features h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .features .feature-card {
    width: 130px;
  }
}

@media screen and (max-width: 767px) {
  .features h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .features .content {
    justify-content: center;
  }

  .features .feature-card {
    width: 40%;
  }
}

@media screen and (max-width: 360px) {
  .features .feature-card {
    width: 100%;
  }
}

/* ================================================================== */
.products {
  padding: 50px 0px;
}

.products .content {
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.products figure {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 546 / 535;
  background: #f4f4f4;
  overflow: hidden;
}

.products figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.products h2 {
  color: #272343;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
}

.products h3 {
  color: #272343;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.products p {
  font-size: 16px;
  line-height: 20px;
  color: #666666;
}

@media screen and (max-width: 1199px) {
  .products .content {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .products {
    padding: 60px 0px;
  }

  .products h2 {
    font-size: 26px;
    line-height: 32px;
  }
}

@media screen and (max-width: 767px) {
  .products .row {
    row-gap: 20px;
  }

  .products {
    padding: 20px 0px;
  }

  .products figure {
    display: none;
  }

  .products h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .products p {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ================================================================== */
.cta .content {
  background-color: #0074a3;
  padding: 50px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.cta h2 {
  color: #fff;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
}

.cta p {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (max-width:767px) {
  .cta h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .cta p {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ========================================================== */
.shop_footer {
  padding: 50px 0px 20px;
}

.shop_footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop_footer .footer-links li {
  margin-bottom: 8px;
}

.shop_footer .footer-links a {
  text-decoration: none;
  color: #6b7280;
}

.shop_footer .footer-links a:hover {
  color: #05a7d9;
}

.shop_footer .icons {
  color: #272343;
}

.shop_footer .social-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.shop_footer .social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #f97316;
  align-items: center;
  justify-content: center;
  color: #272343;
}

.shop_footer .social-icons a:hover {
  background: #f97316;
  color: #fff;
}

.shop_footer .content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shop_footer .sub_btn {
  padding: 6px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 18px;
  background: #272343;
  color: #fff;
}

.shop_footer .sub_btn:hover {
  background: #0074a3;
}

.shop_footer .topline {
  margin: 0px 0px 35px;
}

.shop_footer .bottomline {
  margin: 20px 0px;
}

.shop_footer hr {
  opacity: .4;
  width: 100%;
  height: 1px;
  color: #666;
  background: #666;
}

@media screen and (max-width:991px) {
  .shop_footer .row {
    row-gap: 20px;
  }
}

@media screen and (max-width:767px) {
  .shop_footer p {
    font-size: 12px;
    line-height: 18px;
  }

  .shop_footer .footer-links a {
    font-size: 12px;
    line-height: 18px;
  }

  .shop_footer .footer-links li {
    margin-bottom: 3px;
  }

  .shop_footer .social-icons {
    justify-content: center;
  }
}

#backToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #0074a3;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  transform: translateY(-4px);
  background: #05a7d9;
  cursor: pointer;
}