* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #ffffff;
  margin-top: 110px;
}
@media screen and (max-width: 700px) {
  body {
    margin-top: 56px;
  }
}

a {
  color: #006da4;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul {
  margin-bottom: 16px;
  padding-left: 40px;
}

body {
  font-size: 16px;
  line-height: 1.2;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.0125em;
  margin-top: 0;
  margin-bottom: 0.375em;
  overflow-wrap: break-word;
}

h1,
h2 {
  line-height: 1.3;
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 1.625rem;
}

h3 {
  font-size: 1.3125rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

@media screen and (max-width: 700px) {
  h1 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 700px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 700px) {
  h3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 700px) {
  h4 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 700px) {
  h5 {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 700px) {
  h6 {
    font-size: 1rem;
  }
}
p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: #262e3d;
  margin-top: 0;
  margin-bottom: 10px;
}

p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

small,
.small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.5;
}

.text-base {
  font-size: 1rem !important;
  line-height: 1.6;
}

.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.55;
}

header {
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
}
header #navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header #navbar .logo {
  display: flex;
  align-items: center;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  header #navbar .logo {
    max-width: 160px;
  }
}
header #navbar .logo img {
  width: 100%;
}
header #navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
header #navbar .nav-links a {
  position: relative;
  color: #1e293b;
  letter-spacing: -0.4px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  padding: 6px 2px;
  transition: color 0.1s ease;
}
header #navbar .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #3BAEE7;
  transition: width 0.2s ease;
}
header #navbar .nav-links a:hover {
  color: #3BAEE7;
}
header #navbar .nav-links a:hover::after {
  width: 100%;
}
header #navbar .nav-links a.active {
  color: #3BAEE7;
}
header #navbar .nav-links a.active::after {
  width: 100%;
}
@media screen and (max-width: 700px) {
  header #navbar .nav-links {
    display: none;
  }
}
header #navbar .nav-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 700px) {
  header #navbar .nav-icons {
    gap: 8px;
  }
}
header #navbar .nav-icons .toggle-mobile-menu {
  display: none;
}
@media screen and (max-width: 700px) {
  header #navbar .nav-icons .toggle-mobile-menu {
    display: flex;
  }
}
header #navbar .nav-icons a,
header #navbar .nav-icons span {
  position: relative;
  color: #1e293b;
  background-color: #f4f4f4;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 50%;
  letter-spacing: -0.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease;
}
header #navbar .nav-icons a:hover,
header #navbar .nav-icons span:hover {
  background-color: rgba(59, 174, 231, 0.12);
  border-color: rgba(59, 174, 231, 0.35);
  color: #3BAEE7;
}
@media screen and (max-width: 700px) {
  header #navbar .nav-icons a,
  header #navbar .nav-icons span {
    font-size: 16px;
    width: 35px;
    height: 35px;
  }
}
header #navbar .nav-icons .cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #f30e8e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}
header #navbar .nav-icons .navbar-auth-btn {
  width: auto;
  height: auto;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(30, 41, 59, 0.4);
  color: #1e293b;
  padding: 8px 20px;
  font-size: 14px;
  letter-spacing: -0.3px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  line-height: 1.6;
  text-decoration: none;
  transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease;
}
header #navbar .nav-icons .navbar-auth-btn:hover {
  background: rgba(59, 174, 231, 0.06);
  border-color: #3BAEE7;
  color: #3BAEE7;
}
@media screen and (max-width: 700px) {
  header #navbar .nav-icons .navbar-auth-btn {
    font-size: 13px;
    padding: 6px 14px;
  }
}
header #navbar-bottom {
  background-color: #f4f4f4;
  border-bottom: 1px solid #dfe3e8;
}
@media screen and (max-width: 700px) {
  header #navbar-bottom {
    display: none;
  }
}
header #navbar-bottom .nav-menu-bottom {
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
  height: 100%;
}
header #navbar-bottom .nav-menu-bottom > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 0;
  margin-bottom: 0;
}
header #navbar-bottom .nav-menu-bottom > ul > li {
  position: relative;
}
header #navbar-bottom .nav-menu-bottom > ul > li.dropdown:hover .dropdown-menu {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
header #navbar-bottom .nav-menu-bottom > ul > li .nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #1e293b;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.4px;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: background-color 0.1s ease, color 0.1s ease;
}
header #navbar-bottom .nav-menu-bottom > ul > li .nav-link i.fa-chevron-down {
  font-size: 11px;
  transition: transform 0.2s ease;
}
header #navbar-bottom .nav-menu-bottom > ul > li .nav-link:hover {
  background-color: rgba(59, 174, 231, 0.1);
  color: #3BAEE7;
}
header #navbar-bottom .nav-menu-bottom > ul > li .nav-link:hover i.fa-chevron-down {
  transform: rotate(180deg);
}
header #navbar-bottom .nav-menu-bottom > ul > li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(33, 33, 33, 0.08);
  padding: 8px;
  display: none;
  opacity: 0;
  transform: translateY(6px);
  z-index: 100;
  list-style: none;
  margin: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
header #navbar-bottom .nav-menu-bottom > ul > li .dropdown-menu li {
  border-bottom: none;
}
header #navbar-bottom .nav-menu-bottom > ul > li .dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #1e293b;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.1s ease, color 0.1s ease;
}
header #navbar-bottom .nav-menu-bottom > ul > li .dropdown-menu li a:hover {
  background-color: rgba(59, 174, 231, 0.1);
  color: #3BAEE7;
}
header #mobileMenu {
  z-index: 1000;
  display: none;
  position: fixed;
  height: calc(100vh - 55px);
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  top: 55px;
  left: 0;
  right: 0;
  background-color: #f4f4f4;
  bottom: 0;
}
header #mobileMenu .mobile-menu-container {
  padding: 20px 16px 30px;
}
header #mobileMenu .mobile-menu-container .menu-title {
  position: relative;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 24px 0 12px;
  color: #7e7e7e;
  padding-left: 12px;
}
header #mobileMenu .mobile-menu-container .menu-title:first-child {
  margin-top: 4px;
}
header #mobileMenu .mobile-menu-container .menu-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #3BAEE7, #f30e8e);
}
header #mobileMenu .mobile-menu-container .mobile-nav-menu {
  list-style: none;
  margin-bottom: 8px;
  padding-left: 0;
}
header #mobileMenu .mobile-menu-container .mobile-nav-menu li {
  margin-bottom: 6px;
}
header #mobileMenu .mobile-menu-container .mobile-nav-menu li a {
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  gap: 10px;
  border-radius: 12px;
  font-size: 15px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e8ebf0;
  letter-spacing: -0.3px;
  transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease;
}
header #mobileMenu .mobile-menu-container .mobile-nav-menu li a .menu-chevron {
  font-size: 12px;
  color: #7e7e7e;
  transition: transform 0.1s ease, color 0.1s ease;
}
header #mobileMenu .mobile-menu-container .mobile-nav-menu li a:hover {
  background-color: rgba(59, 174, 231, 0.06);
  border-color: rgba(59, 174, 231, 0.3);
  color: #3BAEE7;
}
header #mobileMenu .mobile-menu-container .mobile-nav-menu li a:hover .menu-chevron {
  transform: translateX(3px);
  color: #3BAEE7;
}
header #mobileMenu .mobile-menu-container .mobile-menu-share {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
header #mobileMenu .mobile-menu-container .mobile-menu-share a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #f4f4f4;
  color: #1e293b;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #e8ebf0;
  transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, transform 0.1s ease;
}
header #mobileMenu .mobile-menu-container .mobile-menu-share a:hover {
  background-color: #1e293b;
  color: #ffffff;
  border-color: #1e293b;
  transform: translateY(-2px);
}

#main-content {
  min-height: calc(100vh - 200px);
  padding-top: 20px;
}
#main-content .section-title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e293b;
  margin-bottom: 20px;
}
#main-content .home-banner {
  transition: background-color 0.3s ease;
}
#main-content .home-banner .home-banner-slide-lg {
  width: 100%;
}
@media screen and (max-width: 700px) {
  #main-content .home-banner .home-banner-slide-lg {
    display: none;
  }
}
#main-content .home-banner .home-banner-slide-lg img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
#main-content .home-banner .home-banner-slide-sm {
  width: 100%;
  height: auto;
  display: none;
}
@media screen and (max-width: 700px) {
  #main-content .home-banner .home-banner-slide-sm {
    display: block;
  }
}
#main-content .home-banner .home-banner-slide-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#main-content .home-banner .swiper-pagination-bullet {
  background: #999;
  opacity: 0.6;
}
#main-content .home-banner .swiper-pagination-bullet-active {
  background: white !important;
  opacity: 1;
}
#main-content .home-banner .swiper-button-disabled {
  pointer-events: auto;
  opacity: 0.35;
  cursor: default;
}
#main-content .home-banner .swiper-button-next,
#main-content .home-banner .swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#main-content .home-banner .swiper-button-next::after,
#main-content .home-banner .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}
#main-content .home-banner .swiper-button-next:hover,
#main-content .home-banner .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
}
#main-content .trust-strip {
  padding: 36px 0 10px;
}
#main-content .trust-strip .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media screen and (max-width: 900px) {
  #main-content .trust-strip .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  #main-content .trust-strip .trust-grid {
    grid-template-columns: 1fr;
  }
}
#main-content .trust-strip .trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#main-content .trust-strip .trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}
#main-content .trust-strip .trust-item .icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(59, 174, 231, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-content .trust-strip .trust-item .icon i {
  font-size: 20px;
  color: #006da4;
}
#main-content .trust-strip .trust-item p {
  margin: 0;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
  line-height: 1.35;
}
#main-content .home-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 64px 0 72px;
}
#main-content .home-hero::before {
  width: 380px;
  height: 380px;
  background: rgba(59, 174, 231, 0.12);
  top: -120px;
  right: -60px;
}
#main-content .home-hero::after {
  width: 320px;
  height: 320px;
  background: rgba(243, 14, 142, 0.08);
  bottom: -120px;
  left: -80px;
}
#main-content .home-hero .container {
  position: relative;
  z-index: 1;
  max-width: 940px;
  text-align: center;
}
#main-content .home-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e3e8ee;
  color: #006da4;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}
#main-content .home-hero h1 {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  #main-content .home-hero h1 {
    font-size: 1.8rem;
  }
}
#main-content .home-hero .hero-lead {
  max-width: 780px;
  margin: 0 auto;
}
#main-content .home-hero .hero-lead p {
  color: #556070;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
#main-content .home-hero .hero-lead p:last-child {
  margin-bottom: 0;
}
#main-content .home-hero .hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid #e3eaf2;
}
#main-content .home-hero .hero-stats .hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
#main-content .home-hero .hero-stats .hero-stat i {
  color: #3BAEE7;
  font-size: 18px;
}
#main-content .home-hero .hero-stats .hero-stat strong {
  color: #1e293b;
  font-size: 1.05rem;
  font-weight: 600;
}
#main-content .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}
#main-content .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
#main-content .hero-btn i {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}
#main-content .hero-btn:hover {
  transform: translateY(-2px);
}
#main-content .home-hero .hero-btn.btn-primary {
  background-color: #1e293b;
  color: #fff !important;
}
#main-content .home-hero .hero-btn.btn-primary:hover {
  background-color: #006da4;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}
#main-content .home-hero .hero-btn.btn-primary:hover i {
  transform: translateX(3px);
}
#main-content .home-hero .hero-btn.btn-outline {
  background: #fff;
  border: 1px solid #dfe5ee;
  color: #1e293b !important;
}
#main-content .home-hero .hero-btn.btn-outline:hover {
  border-color: #3BAEE7;
  color: #006da4 !important;
  background: #fff;
}
#main-content .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
#main-content .section-head .section-eyebrow {
  display: inline-block;
  color: #3BAEE7;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#main-content .section-head .section-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1e293b;
  margin-bottom: 14px;
}
@media screen and (max-width: 700px) {
  #main-content .section-head .section-title {
    font-size: 1.55rem;
  }
}
#main-content .section-head .section-lead {
  color: #556070;
  font-size: 1.05rem;
}
#main-content .popular-products {
  padding: 70px 0 80px;
}
#main-content .popular-products .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  #main-content .popular-products .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  #main-content .popular-products .product-grid {
    grid-template-columns: 1fr;
  }
}
#main-content .popular-products .product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#main-content .popular-products .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 3px 10px 20px rgba(15, 23, 42, 0.077);
}
#main-content .popular-products .product-card:hover .product-card-media img {
  transform: scale(1.06);
}
#main-content .popular-products .product-card:hover .card-link i {
  transform: translateX(4px);
}
#main-content .popular-products .product-card .product-card-media {
  overflow: hidden;
  background: #f4f4f4;
}
#main-content .popular-products .product-card .product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
#main-content .popular-products .product-card .product-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#main-content .popular-products .product-card .product-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
#main-content .popular-products .product-card .product-card-body p {
  font-size: 0.92rem;
  color: #556070;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
#main-content .popular-products .product-card .product-card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #006da4;
  font-size: 0.95rem;
}
#main-content .popular-products .product-card .product-card-body .card-link i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}
#main-content .why-choose-section {
  background-color: #f6f8fb;
  padding: 70px 0;
}
#main-content .reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media screen and (max-width: 900px) {
  #main-content .reasons-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 620px) {
  #main-content .reasons-grid {
    grid-template-columns: 1fr;
  }
}
#main-content .reason-card {
  background: #fff;
  border: 1px solid #e6e7e9;
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#main-content .reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 4px 10px 30px rgba(15, 23, 42, 0.12);
}
#main-content .reason-card .reason-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 174, 231, 0.16), rgba(59, 174, 231, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
#main-content .reason-card .reason-icon i {
  font-size: 24px;
  color: #006da4;
}
#main-content .reason-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
#main-content .reason-card p {
  font-size: 0.95rem;
  color: #556070;
  line-height: 1.65;
  margin-bottom: 0;
}
#main-content .print-intro-section {
  padding: 70px 0 80px;
}
#main-content .print-intro-section .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
#main-content .print-intro-section .intro-grid + .intro-grid {
  margin-top: 56px;
}
@media screen and (max-width: 820px) {
  #main-content .print-intro-section .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #main-content .print-intro-section .intro-grid + .intro-grid {
    margin-top: 44px;
  }
}
#main-content .print-intro-section .intro-copy h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1e293b;
  margin-bottom: 16px;
}
@media screen and (max-width: 700px) {
  #main-content .print-intro-section .intro-copy h2 {
    font-size: 1.4rem;
  }
}
#main-content .print-intro-section .intro-copy p {
  color: #556070;
  margin-bottom: 14px;
}
#main-content .print-intro-section .intro-card {
  background: linear-gradient(160deg, #f0f7fd, #fff);
  border: 1px solid #e6eef6;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
#main-content .print-intro-section .intro-card > i {
  font-size: 30px;
  color: #006da4;
  margin-bottom: 16px;
}
#main-content .print-intro-section .intro-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
#main-content .print-intro-section .intro-card p {
  color: #556070;
  margin-bottom: 0;
}
#main-content .ordering-process {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 70px 0;
}
#main-content .ordering-process .section-head .section-title {
  color: #fff;
}
#main-content .ordering-process .section-head .section-lead {
  color: rgba(255, 255, 255, 0.75);
}
#main-content .ordering-process .steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  #main-content .ordering-process .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 700px) {
  #main-content .ordering-process .steps {
    grid-template-columns: 1fr;
  }
}
#main-content .ordering-process .step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
#main-content .ordering-process .step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
}
#main-content .ordering-process .step .step-number {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #006da4;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-content .ordering-process .step h3 {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
}
#main-content .ordering-process .step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0;
}
#main-content .artwork-checklist {
  padding: 70px 0 80px;
}
#main-content .artwork-checklist .checklist-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
@media screen and (max-width: 820px) {
  #main-content .artwork-checklist .checklist-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
#main-content .artwork-checklist .checklist-copy h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1e293b;
  margin-bottom: 14px;
}
@media screen and (max-width: 700px) {
  #main-content .artwork-checklist .checklist-copy h2 {
    font-size: 1.4rem;
  }
}
#main-content .artwork-checklist .checklist-copy > p {
  color: #556070;
  margin-bottom: 18px;
}
#main-content .artwork-checklist .checklist {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
#main-content .artwork-checklist .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-weight: 500;
  color: #262e3d;
  line-height: 1.6;
}
#main-content .artwork-checklist .checklist li .check-ico {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(154, 197, 151, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-content .artwork-checklist .checklist li .check-ico i {
  color: #2f9e44;
  font-size: 0.72rem;
}
#main-content .artwork-checklist .artwork-help-card {
  background: linear-gradient(160deg, #f0f7fd, #fff);
  border: 1px solid #e6eef6;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
#main-content .artwork-checklist .artwork-help-card .help-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(59, 174, 231, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#main-content .artwork-checklist .artwork-help-card .help-icon i {
  font-size: 22px;
  color: #006da4;
}
#main-content .artwork-checklist .artwork-help-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
#main-content .artwork-checklist .artwork-help-card p {
  color: #556070;
  margin-bottom: 18px;
}
#main-content .artwork-checklist .artwork-help-card .btn {
  background-color: #1e293b;
  color: #fff !important;
  border-radius: 999px;
  padding: 11px 26px;
  font-weight: 600;
}
#main-content .artwork-checklist .artwork-help-card .btn:hover {
  background-color: #006da4;
}
#main-content .home-faq {
  background-color: #f6f8fb;
  padding: 70px 0;
}
#main-content .home-faq .faq-section {
  max-width: 840px;
  margin: 0 auto;
}
#main-content .home-faq .faq-section .faq-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1e293b;
  margin-bottom: 32px;
}
@media screen and (max-width: 700px) {
  #main-content .home-faq .faq-section .faq-heading {
    font-size: 1.55rem;
  }
}
#main-content .final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3BAEE7 0%, #006da4 100%);
  padding: 72px 0;
}
#main-content .final-cta::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -120px;
  right: -80px;
}
#main-content .final-cta .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}
#main-content .final-cta h2 {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
@media screen and (max-width: 700px) {
  #main-content .final-cta h2 {
    font-size: 1.6rem;
  }
}
#main-content .final-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}
#main-content .final-cta .hero-btn.btn-primary {
  background-color: #fff;
  color: #006da4 !important;
}
#main-content .final-cta .hero-btn.btn-primary:hover {
  background-color: #FFDD00;
  color: #0f172a !important;
}
#main-content .final-cta .hero-btn.btn-primary:hover i {
  transform: translateX(3px);
}
#main-content .final-cta .hero-btn.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff !important;
}
#main-content .final-cta .hero-btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
}
#main-content .about-page .about-banner {
  margin-bottom: 20px;
}
#main-content .about-page .about-banner img {
  width: 100%;
}
@media screen and (max-width: 700px) {
  #main-content .about-page .about-banner-lg {
    display: none;
  }
}
#main-content .about-page .about-banner-sm {
  display: none;
}
@media screen and (max-width: 700px) {
  #main-content .about-page .about-banner-sm {
    display: block;
  }
}
#main-content .about-page .trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 700px) {
  #main-content .about-page .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
#main-content .about-page .trust-strip .trust-item {
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
}
#main-content .about-page .trust-strip .trust-item strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
#main-content .about-page .trust-strip .trust-item span {
  display: block;
  font-size: 0.875rem;
  color: #7e7e7e;
  line-height: 1.4;
}
#main-content .about-page .about-section {
  margin-bottom: 34px;
}
#main-content .about-page .about-section h2 {
  margin-bottom: 12px;
}
#main-content .about-page .about-section ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
#main-content .about-page .about-section ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}
#main-content .about-page .about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}
#main-content .contact-page .contact-header {
  margin-bottom: 40px;
}
#main-content .contact-page .contact-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
#main-content .contact-page .contact-header p {
  color: #64748b;
  font-size: 1rem;
}
#main-content .contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #main-content .contact-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#main-content .contact-page .contact-form form .form-row {
  margin-bottom: 16px;
}
#main-content .contact-page .contact-form form .input-wrapper label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 6px;
}
#main-content .contact-page .contact-form form .input-group {
  display: flex;
  gap: 16px;
}
#main-content .contact-page .contact-form form .input-group .input-wrapper {
  flex: 1;
}
@media (max-width: 500px) {
  #main-content .contact-page .contact-form form .input-group {
    flex-direction: column;
    gap: 16px;
  }
}
#main-content .contact-page .contact-form .contact-submit-btn {
  width: 100%;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
}
#main-content .contact-page .contact-info-card {
  background-color: #f4f4f4;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
}
#main-content .contact-page .contact-info-card .info-section {
  display: flex;
  gap: 16px;
  padding: 16px 0;
}
#main-content .contact-page .contact-info-card .info-section:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
}
#main-content .contact-page .contact-info-card .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
#main-content .contact-page .contact-info-card .info-content h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1e293b;
}
#main-content .contact-page .contact-info-card .info-content p,
#main-content .contact-page .contact-info-card .info-content address {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  font-style: normal;
  margin: 0;
}
#main-content .contact-page .contact-info-card .info-content a {
  color: #1e293b;
  text-decoration: none;
}
#main-content .contact-page .contact-info-card .info-content a:hover {
  text-decoration: underline;
}
#main-content .contact-page .contact-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
#main-content .contact-page .contact-map iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.cookie-banner {
  position: fixed;
  inset: auto 10px 10px auto;
  max-width: 400px;
  width: calc(100% - 20px);
  background-color: rgba(255, 255, 255, 0.6078431373);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: start;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #808080;
  z-index: 1000;
  box-shadow: 10px 10px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 700px) {
  .cookie-banner {
    padding: 10px;
  }
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: #232323;
  flex: 1;
}
@media screen and (max-width: 700px) {
  .cookie-banner p {
    font-size: 0.85rem;
  }
}
.cookie-banner button {
  background-color: #1c1c1c;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 700px) {
  .cookie-banner button {
    margin-top: 8px;
    font-size: 0.85rem;
  }
}
.cookie-banner button:hover {
  background-color: #f30e8e;
}

.login-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 70vh;
  width: 100%;
}
.login-form h1 {
  font-weight: 800;
}
.login-form .form-inner {
  max-width: 400px;
  padding: 30px;
  background-color: #f4f4f4;
  width: 100%;
  border-radius: 20px;
}
.login-form .form-inner form {
  width: 100%;
}
.login-form .password-field-wrap {
  position: relative;
}
.login-form .password-input {
  padding-right: 40px;
}
.login-form .password-eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #5b6472;
}
.login-form .password-eye i {
  font-size: 16px;
}

.cart-page {
  padding-bottom: 40px;
}
.cart-page h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e293b;
  margin-bottom: 4px;
}
.cart-page .cart-page-subtitle {
  color: #7e7e7e;
  font-size: 15px;
  margin-bottom: 22px;
}
.cart-page .cart-page-subtitle b {
  color: #1e293b;
}
.cart-page .cart-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 700px) {
  .cart-page .cart-row {
    flex-direction: column;
  }
}
.cart-page .cart-row > .left {
  flex: 1;
  min-width: 0;
}
.cart-page .cart-row > .left .cart-list {
  margin-bottom: 20px;
}
.cart-page .cart-row > .left .cart-list .cart-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 14px;
  background: #ffffff;
  border: 1px solid #e8ebf0;
  box-shadow: 0 1px 3px rgba(30, 41, 59, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.cart-page .cart-row > .left .cart-list .cart-item:hover {
  border-color: rgba(59, 174, 231, 0.3);
  box-shadow: 0 6px 16px rgba(30, 41, 59, 0.07);
}
@media screen and (max-width: 700px) {
  .cart-page .cart-row > .left .cart-list .cart-item {
    flex-direction: column;
    padding: 14px;
  }
}
.cart-page .cart-row > .left .cart-list .cart-item > .left {
  width: 220px;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .cart-page .cart-row > .left .cart-list .cart-item > .left {
    width: 100%;
  }
}
.cart-page .cart-row > .left .cart-list .cart-item > .left .product-image {
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ededed;
  background: #f4f4f4;
}
@media screen and (max-width: 700px) {
  .cart-page .cart-row > .left .cart-list .cart-item > .left .product-image {
    height: 180px;
  }
}
.cart-page .cart-row > .left .cart-list .cart-item > .left .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-page .cart-row > .left .cart-list .cart-item > .right {
  flex: 1;
  min-width: 0;
}
.cart-page .cart-row > .left .cart-list .cart-item > .right h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #1e293b;
  margin-bottom: 6px;
}
.cart-page .cart-row > .left .cart-list .cart-item > .right .item-price {
  font-size: 18px;
  font-weight: 700;
  color: #3BAEE7;
  margin-bottom: 14px;
}
.cart-page .cart-row > .left .cart-list .cart-item > .right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: start;
  font-size: 14px;
}
.cart-page .cart-row > .left .cart-list .cart-item > .right ul li {
  background: #f4f4f4;
  border-radius: 8px;
  padding: 5px 12px;
  color: #3f3f46;
}
.cart-page .cart-row > .left .cart-list .cart-item > .right ul li b {
  color: #1e293b;
  font-weight: 600;
}
.cart-page .cart-row > .left .cart-list .cart-item > .right .item-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cart-page .cart-row > .left .cart-list .cart-item > .right .item-actions .btn {
  border-radius: 8px;
}
.cart-page .cart-row > .left .cart-empty {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
}
.cart-page .cart-row > .left .cart-empty i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 16px;
}
.cart-page .cart-row > .left .cart-empty h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
.cart-page .cart-row > .left .cart-empty p {
  color: #7e7e7e;
  margin-bottom: 20px;
}
.cart-page .cart-row > .left .choose-delivery-option {
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e8ebf0;
}
.cart-page .cart-row > .left .choose-delivery-option .delivery-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.cart-page .cart-row > .left .choose-delivery-option label {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 10px;
  padding: 13px 16px;
  border: 1px solid #e8ebf0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #1e293b;
  transition: border-color 0.1s ease, background-color 0.1s ease;
}
.cart-page .cart-row > .left .choose-delivery-option label:last-child {
  margin-bottom: 0;
}
.cart-page .cart-row > .left .choose-delivery-option label:has(input:checked) {
  border-color: #3BAEE7;
  background: rgba(59, 174, 231, 0.06);
}
.cart-page .cart-row > .left .choose-delivery-option label .delivery-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(59, 174, 231, 0.1);
  color: #3BAEE7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background-color 0.1s ease, color 0.1s ease;
}
.cart-page .cart-row > .left .choose-delivery-option label:has(input:checked) .delivery-icon {
  background: #3BAEE7;
  color: #ffffff;
}
.cart-page .cart-row > .left .choose-delivery-option label .delivery-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cart-page .cart-row > .left .choose-delivery-option label .delivery-text .delivery-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 15px;
}
.cart-page .cart-row > .left .choose-delivery-option label .delivery-text .delivery-desc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #7e7e7e;
  font-weight: 400;
}
.cart-page .cart-row > .left .choose-delivery-option label .delivery-text .delivery-desc .delivery-price {
  font-weight: 600;
  color: #1e293b;
}
.cart-page .cart-row > .left .choose-delivery-option label input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.1s ease, background-color 0.1s ease;
}
.cart-page .cart-row > .left .choose-delivery-option label input:checked {
  border-color: #3BAEE7;
  background-color: #3BAEE7;
}
.cart-page .cart-row > .left .choose-delivery-option label input:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}
.cart-page .cart-row > .left .choose-delivery-option label input:hover:not(:checked) {
  border-color: #3BAEE7;
}
.cart-page .cart-row > .left .choose-delivery-option .delivery-disclaimer {
  margin-top: 12px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}
.cart-page .cart-row > .left .choose-delivery-option .delivery-disclaimer i {
  margin-right: 4px;
  color: #3BAEE7;
}
.cart-page .cart-row > .right {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
}
@media screen and (max-width: 700px) {
  .cart-page .cart-row > .right {
    width: 100%;
    position: static;
  }
}
.cart-page .cart-row > .right .total-box {
  background: #ffffff;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(30, 41, 59, 0.04);
}
.cart-page .cart-row > .right .total-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.cart-page .cart-row > .right .total-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cart-page .cart-row > .right .total-box ul li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #e8ebf0;
  font-size: 14.5px;
  color: #52525b;
}
.cart-page .cart-row > .right .total-box ul li b {
  color: #1e293b;
  font-weight: 500;
}
.cart-page .cart-row > .right .total-box ul li:last-child {
  border-bottom: none;
}
.cart-page .cart-row > .right .total-box .total-price {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #f4f4f4;
  font-size: 22px;
  color: #1e293b;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-page .cart-row > .right .total-box .checkout-btn {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  background: #1e293b;
  border: none;
  color: #ffffff;
  transition: opacity 0.1s ease;
}
.cart-page .cart-row > .right .total-box .checkout-btn:hover {
  opacity: 0.9;
}
.cart-page .cart-row > .right .security-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e8ebf0;
  text-align: center;
}
.cart-page .cart-row > .right .security-box p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #1e293b;
  margin-bottom: 12px;
}
.cart-page .cart-row > .right .security-box .cards {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.cart-page .cart-row > .right .security-box .cards i {
  font-size: 28px;
  color: #a1a1aa;
  transition: color 0.1s ease;
}
.cart-page .cart-row > .right .security-box .cards i:hover {
  color: #3BAEE7;
}

.checkout-page {
  padding-bottom: 40px;
}
.checkout-page > .cart-empty {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
}
.checkout-page > .cart-empty i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 16px;
}
.checkout-page > .cart-empty h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
.checkout-page > .cart-empty p {
  color: #7e7e7e;
  margin-bottom: 20px;
}
.checkout-page h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e293b;
  margin-bottom: 4px;
}
.checkout-page > p {
  color: #7e7e7e;
  font-size: 15px;
  margin-bottom: 22px;
}
.checkout-page > p b {
  color: #1e293b;
}
.checkout-page .checkout-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 700px) {
  .checkout-page .checkout-row {
    flex-direction: column;
  }
}
.checkout-page .checkout-row > .left {
  flex: 1;
  min-width: 0;
}
.checkout-page .checkout-row > .left h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #1e293b;
  margin: 28px 0 14px;
}
.checkout-page .checkout-row > .left h3:first-child {
  margin-top: 0;
}
.checkout-page .checkout-row > .left h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #1e293b;
  margin: 0 0 20px;
}
.checkout-page .checkout-row > .left .checkout-form-layout {
  background: #ffffff;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(30, 41, 59, 0.04);
}
@media screen and (max-width: 700px) {
  .checkout-page .checkout-row > .left .checkout-form-layout {
    padding: 18px;
  }
}
.checkout-page .checkout-row > .left .checkout-form-layout > h3 {
  margin: 0 0 16px;
}
.checkout-page .checkout-row > .left .checkout-form-layout .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 700px) {
  .checkout-page .checkout-row > .left .checkout-form-layout .row {
    grid-template-columns: 1fr;
  }
}
.checkout-page .checkout-row > .left .checkout-form-layout .row .form-group .form-label,
.checkout-page .checkout-row > .left .checkout-form-layout .row .from-group .form-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}
.checkout-page .checkout-row > .left .checkout-form-layout .row .form-group .input,
.checkout-page .checkout-row > .left .checkout-form-layout .row .from-group .input {
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.1s ease, box-shadow 0.1s ease;
}
.checkout-page .checkout-row > .left .checkout-form-layout .row .form-group .input:focus,
.checkout-page .checkout-row > .left .checkout-form-layout .row .from-group .input:focus {
  border-color: #3BAEE7;
  box-shadow: 0 0 0 3px rgba(59, 174, 231, 0.12);
}
.checkout-page .checkout-row > .left .cart-list {
  margin-bottom: 20px;
}
.checkout-page .checkout-row > .left .cart-list .cart-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 14px;
  background: #ffffff;
  border: 1px solid #e8ebf0;
  box-shadow: 0 1px 3px rgba(30, 41, 59, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.checkout-page .checkout-row > .left .cart-list .cart-item:hover {
  border-color: rgba(59, 174, 231, 0.3);
  box-shadow: 0 6px 16px rgba(30, 41, 59, 0.07);
}
@media screen and (max-width: 700px) {
  .checkout-page .checkout-row > .left .cart-list .cart-item {
    flex-direction: column;
    padding: 14px;
  }
}
.checkout-page .checkout-row > .left .cart-list .cart-item > .left {
  width: 170px;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .checkout-page .checkout-row > .left .cart-list .cart-item > .left {
    width: 100%;
  }
}
.checkout-page .checkout-row > .left .cart-list .cart-item > .left .product-image {
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ededed;
  background: #f4f4f4;
}
.checkout-page .checkout-row > .left .cart-list .cart-item > .left .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-page .checkout-row > .left .cart-list .cart-item > .right {
  flex: 1;
  min-width: 0;
}
.checkout-page .checkout-row > .left .cart-list .cart-item > .right h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #1e293b;
  margin-bottom: 6px;
}
.checkout-page .checkout-row > .left .cart-list .cart-item > .right p {
  font-size: 16px;
  font-weight: 700;
  color: #3BAEE7;
  margin-bottom: 12px;
}
.checkout-page .checkout-row > .left .cart-list .cart-item > .right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 14px;
}
.checkout-page .checkout-row > .left .cart-list .cart-item > .right ul li {
  background: #f4f4f4;
  border-radius: 8px;
  padding: 5px 12px;
  color: #3f3f46;
}
.checkout-page .checkout-row > .left .cart-list .cart-item > .right ul li b {
  color: #1e293b;
  font-weight: 600;
}
.checkout-page .checkout-row > .right {
  width: 340px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
}
@media screen and (max-width: 700px) {
  .checkout-page .checkout-row > .right {
    width: 100%;
    position: static;
  }
}
.checkout-page .checkout-row > .right .total-box {
  background: #ffffff;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(30, 41, 59, 0.04);
}
.checkout-page .checkout-row > .right .total-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.checkout-page .checkout-row > .right .total-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checkout-page .checkout-row > .right .total-box ul li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #e8ebf0;
  font-size: 14.5px;
  color: #52525b;
}
.checkout-page .checkout-row > .right .total-box ul li b {
  color: #1e293b;
  font-weight: 500;
}
.checkout-page .checkout-row > .right .total-box ul li:last-child {
  border-bottom: none;
}
.checkout-page .checkout-row > .right .total-box .total-price {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #f4f4f4;
  font-size: 22px;
  color: #1e293b;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout-page .checkout-row > .right .total-box .checkout-btn {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  background: #1e293b;
  border: none;
  color: #ffffff;
  transition: opacity 0.1s ease;
}
.checkout-page .checkout-row > .right .total-box .checkout-btn:hover {
  opacity: 0.9;
}
.checkout-page .checkout-row > .right .total-box .payment-options {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.checkout-page .checkout-row > .right .total-box .payment-options .payment-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.1s ease;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}
.checkout-page .checkout-row > .right .total-box .payment-options .payment-option img {
  height: 23px;
}
.checkout-page .checkout-row > .right .total-box .payment-options .payment-option i {
  font-size: 16px;
}
.checkout-page .checkout-row > .right .total-box .payment-options .payment-option:hover {
  border-color: #3BAEE7;
}
.checkout-page .checkout-row > .right .total-box .payment-options .payment-option.active {
  border-color: #3BAEE7;
  background: rgba(59, 174, 231, 0.05);
}
.checkout-page .checkout-row > .right .total-box .bank-transfer-details {
  margin-top: 16px;
}
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
}
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box ul li {
  padding: 6px 0;
  font-size: 14px;
  color: #52525b;
  border-bottom: 1px dashed #e2e8f0;
}
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box ul li b {
  color: #1e293b;
  font-weight: 600;
}
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box ul li:last-child {
  border-bottom: none;
}
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box .bank-transfer-note,
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box .bank-transfer-production-note {
  margin-top: 12px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box .bank-transfer-note i,
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box .bank-transfer-production-note i {
  margin-right: 4px;
}
.checkout-page .checkout-row > .right .total-box .bank-transfer-details .bank-detail-box .bank-transfer-production-note {
  margin-top: 8px;
  font-weight: 600;
  color: #b45309;
}
.checkout-page .checkout-row > .right .total-box .trade-account-msg {
  margin-top: 12px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}
.checkout-page .checkout-row > .right .total-box .trade-account-msg a {
  color: #3BAEE7;
  font-weight: 600;
  text-decoration: underline;
}
.checkout-page .checkout-row > .right .total-box .trade-account-msg a:hover {
  text-decoration: none;
}

.bank-transfer-success-page {
  max-width: 600px;
  margin: 50px auto;
  padding: 40px;
  background: #ffffff;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  text-align: center;
}
.bank-transfer-success-page .success-icon i {
  font-size: 60px;
  color: #22c55e;
  margin-bottom: 16px;
}
.bank-transfer-success-page h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
.bank-transfer-success-page .success-msg {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 24px;
}
.bank-transfer-success-page .order-info {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}
.bank-transfer-success-page .order-info p {
  margin: 4px 0;
  font-size: 15px;
  color: #1e293b;
}
.bank-transfer-success-page .bank-detail-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  margin-bottom: 20px;
}
.bank-transfer-success-page .bank-detail-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  text-align: center;
}
.bank-transfer-success-page .bank-detail-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bank-transfer-success-page .bank-detail-box ul li {
  padding: 8px 0;
  font-size: 14px;
  color: #52525b;
  border-bottom: 1px dashed #e2e8f0;
}
.bank-transfer-success-page .bank-detail-box ul li b {
  color: #1e293b;
  font-weight: 600;
}
.bank-transfer-success-page .bank-detail-box ul li:last-child {
  border-bottom: none;
}
.bank-transfer-success-page .note-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}
.bank-transfer-success-page .note-box p {
  margin: 6px 0;
  font-size: 13px;
  color: #92400e;
  line-height: 1.5;
}
.bank-transfer-success-page .note-box p i {
  margin-right: 6px;
}
.bank-transfer-success-page .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.bank-transfer-success-page .actions .btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.1s ease;
}
.bank-transfer-success-page .actions .btn:hover {
  opacity: 0.9;
}
.bank-transfer-success-page .actions .btn-dark {
  background: #1e293b;
  color: #ffffff;
}
.bank-transfer-success-page .actions .btn-outline {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #1e293b;
}
.bank-transfer-success-page .actions .btn-outline:hover {
  border-color: #1e293b;
}

.success-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.success-banner .success-banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.success-banner .success-banner-content i {
  font-size: 18px;
  color: #16a34a;
}
.success-banner .success-banner-content span {
  font-size: 14px;
  font-weight: 500;
  color: #166534;
}
.success-banner .success-banner-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #16a34a;
  opacity: 0.7;
  transition: opacity 0.1s ease;
}
.success-banner .success-banner-close:hover {
  opacity: 1;
}
.success-banner .success-banner-close i {
  font-size: 14px;
}

.error-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.error-banner .error-banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.error-banner .error-banner-content i {
  font-size: 18px;
  color: #dc2626;
}
.error-banner .error-banner-content span {
  font-size: 14px;
  font-weight: 500;
  color: #991b1b;
}
.error-banner .error-banner-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #dc2626;
  opacity: 0.7;
  transition: opacity 0.1s ease;
}
.error-banner .error-banner-close:hover {
  opacity: 1;
}
.error-banner .error-banner-close i {
  font-size: 14px;
}

.product-page > .row {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 700px) {
  .product-page > .row {
    flex-direction: column;
  }
}
.product-page > .row > .left {
  width: 40%;
}
@media screen and (max-width: 700px) {
  .product-page > .row > .left {
    width: 100%;
  }
}
.product-page > .row > .left .product-image {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}
.product-page > .row > .left .product-image img {
  border-radius: 10px;
  width: 100%;
}
.product-page > .row > .right {
  width: 60%;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f4f4f4;
  padding: clamp(20px, 3vw, 30px);
}
@media screen and (max-width: 700px) {
  .product-page > .row > .right {
    width: 100%;
  }
}
.product-page > .row > .right .product-name {
  font-size: 1.875rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.0125em;
  margin-top: 0;
  margin-bottom: 0.375em;
  overflow-wrap: break-word;
}
@media screen and (max-width: 700px) {
  .product-page > .row > .right .product-name {
    font-size: 1.625rem;
  }
}
.product-page > .row > .right .layout-selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .product-page > .row > .right .layout-selectors {
    grid-template-columns: 1fr;
  }
}
.product-page > .row > .right label {
  margin-bottom: 5px;
  display: inline-block;
}
.product-page .after-calc {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-page .product-description {
  letter-spacing: -0.5px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 30px;
  max-width: 100%;
  background: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #e3e8ee;
}
@media screen and (max-width: 700px) {
  .product-page .product-description {
    padding: 10px;
  }
}
.product-page .product-description .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 25px;
}
.product-page .product-description .table-responsive table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  height: auto !important;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #ffffff;
}
.product-page .product-description .table-responsive table th,
.product-page .product-description .table-responsive table td {
  border: 1px solid #dedede;
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
  height: auto !important;
}
.product-page .product-description .table-responsive table th img,
.product-page .product-description .table-responsive table td img {
  max-width: 100%;
  height: auto !important;
}
.product-page .product-description .table-responsive table th {
  font-weight: 700;
  background-color: #f4f4f4;
}
.product-page .product-description img {
  max-width: 100%;
  height: auto;
}
.product-page .product-description p {
  line-height: 2;
}
@media screen and (max-width: 700px) {
  .product-page .product-description table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .product-page .product-description table td,
  .product-page .product-description table th {
    font-size: 14px;
  }
}
.product-page .product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 900px) {
  .product-page .product-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 560px) {
  .product-page .product-feature-grid {
    grid-template-columns: 1fr;
  }
}
.product-page .product-feature-grid .feature-card {
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.1s ease, box-shadow 0.1s ease;
}
.product-page .product-feature-grid .feature-card:hover {
  box-shadow: 0 4px 14px rgba(33, 33, 33, 0.06);
}
.product-page .product-feature-grid .feature-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.product-page .product-feature-grid .feature-card .feature-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-page .product-feature-grid .feature-card .feature-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.4px;
  margin: 0;
}
.product-page .product-feature-grid .feature-card .feature-card-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #5b6472;
  margin: 0;
}

#faqRows {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
}
#faqRows::-webkit-scrollbar {
  width: 6px;
}
#faqRows::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
#faqRows::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
#faqRows::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}
#faqRows .product-faq-row {
  transition: box-shadow 0.2s ease;
}
#faqRows .product-faq-row:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-section {
  margin-bottom: 20px;
  max-width: 1100px;
}
.faq-section .faq-heading {
  font-size: 1.625rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.0125em;
  margin-bottom: 20px;
}
.faq-section .faq-list .faq-item {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  padding: 0 20px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-section .faq-list .faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(33, 33, 33, 0.06);
}
.faq-section .faq-list .faq-item.open {
  border-color: #3BAEE7;
}
.faq-section .faq-list .faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: -0.3px;
  user-select: none;
  margin: 0;
  padding: 16px 0;
  cursor: pointer;
}
.faq-section .faq-list .faq-item .faq-question:hover {
  color: #006da4;
}
.faq-section .faq-list .faq-item .faq-question .toggle-icon {
  flex-shrink: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f4f4f4;
  color: #1e293b;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.faq-section .faq-list .faq-item .faq-question .toggle-icon i {
  font-size: 12px;
}
.faq-section .faq-list .faq-item.open .toggle-icon {
  transform: rotate(180deg);
  background: #3BAEE7;
  color: #ffffff;
}
.faq-section .faq-list .faq-item .faq-answer {
  display: none;
  padding: 0 0 16px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}
.faq-section .faq-list .faq-item .faq-answer p {
  margin-bottom: 0;
}

.faq-wrapper {
  margin-bottom: 20px;
  background: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #e3e8ee;
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  .faq-wrapper {
    padding: 10px;
  }
}

.user-dashboard-page #openSidebarContainer {
  display: none;
}
.user-dashboard-page #openSidebarContainer #openSidebar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1999;
  background-color: #3BAEE7;
  color: #ffffff;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  transition: transform 0.2s ease, background-color 0.1s ease;
  border: 3px solid #ffffff;
}
.user-dashboard-page #openSidebarContainer #openSidebar:hover {
  transform: scale(1.08);
}
@media screen and (max-width: 700px) {
  .user-dashboard-page #openSidebarContainer {
    display: block !important;
  }
}
.user-dashboard-page .sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1990;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}
.user-dashboard-page .sidebar-overlay.show {
  opacity: 1;
}
.user-dashboard-page > .row {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 700px) {
  .user-dashboard-page > .row {
    flex-direction: column;
    gap: 20px;
  }
}
.user-dashboard-page > .row > .left {
  width: 30%;
}
.user-dashboard-page > .row > .left .sidebar {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #d9dfe7;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  padding: 20px 14px 12px;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid #eef1f5;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-header .sidebar-avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(59, 174, 231, 0.12);
  color: #3BAEE7;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-header .sidebar-user-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-header .sidebar-user-meta .sidebar-user-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-header .sidebar-user-meta .sidebar-user-email {
  font-size: 12px;
  color: #5b6472;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-dashboard-page > .row > .left .sidebar #closeSidebarContainer {
  display: none;
}
.user-dashboard-page > .row > .left .sidebar #closeSidebarContainer #closeSidebar {
  top: 12px;
  right: 12px;
  background-color: rgb(218, 218, 218);
  border-radius: 50px;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  transition: background-color 0.1s ease;
}
.user-dashboard-page > .row > .left .sidebar #closeSidebarContainer #closeSidebar:hover {
  background-color: #c9c9c9;
}
.user-dashboard-page > .row > .left .sidebar #closeSidebarContainer #closeSidebar i {
  font-size: 20px;
}
@media screen and (max-width: 700px) {
  .user-dashboard-page > .row > .left .sidebar #closeSidebarContainer {
    display: block;
  }
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav li {
  margin-bottom: 4px;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav li.sidebar-logout {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eef1f5;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav a,
.user-dashboard-page > .row > .left .sidebar .sidebar-nav button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  width: 100%;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 10px;
  color: #1e293b;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.4px;
  box-sizing: border-box;
  transition: background-color 0.1s ease, color 0.1s ease;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav a i,
.user-dashboard-page > .row > .left .sidebar .sidebar-nav button i {
  width: 18px;
  text-align: center;
  font-size: 14px;
  color: #5b6472;
  transition: color 0.1s ease;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav a:hover,
.user-dashboard-page > .row > .left .sidebar .sidebar-nav button:hover {
  background-color: rgb(238, 240, 244);
  color: #006da4;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav a:hover i,
.user-dashboard-page > .row > .left .sidebar .sidebar-nav button:hover i {
  color: #006da4;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav a.active,
.user-dashboard-page > .row > .left .sidebar .sidebar-nav button.active {
  background-color: rgba(59, 174, 231, 0.1);
  color: #3BAEE7;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav a.active i,
.user-dashboard-page > .row > .left .sidebar .sidebar-nav button.active i {
  color: #3BAEE7;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav .sidebar-logout a,
.user-dashboard-page > .row > .left .sidebar .sidebar-nav .sidebar-logout button {
  color: #E83F36;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav .sidebar-logout a:hover,
.user-dashboard-page > .row > .left .sidebar .sidebar-nav .sidebar-logout button:hover {
  background-color: rgba(232, 63, 54, 0.08);
  color: #E83F36;
}
.user-dashboard-page > .row > .left .sidebar .sidebar-nav .sidebar-logout a:hover i,
.user-dashboard-page > .row > .left .sidebar .sidebar-nav .sidebar-logout button:hover i {
  color: #E83F36;
}
@media screen and (max-width: 700px) {
  .user-dashboard-page > .row > .left {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    width: 100%;
    max-height: 70vh;
    overflow: auto;
    background-color: #ffffff;
    border-radius: 16px 16px 0 0;
    border-top: 1px solid #d9dfe7;
    transform: translateY(105%);
    transition: transform 0.28s ease;
  }
  .user-dashboard-page > .row > .left.open {
    transform: translateY(0);
  }
  .user-dashboard-page > .row > .left .sidebar {
    border: 0;
    border-radius: 16px 16px 0 0;
    box-shadow: none;
    margin-bottom: 0;
    padding-top: 14px;
  }
}
.user-dashboard-page > .row > .right {
  width: 70%;
}
@media screen and (max-width: 700px) {
  .user-dashboard-page > .row > .right {
    width: 100%;
  }
}
.user-dashboard-page > .row > .right h1 {
  font-size: 20px;
}
.user-dashboard-page > .row > .right .table-responsive {
  margin-bottom: 10px;
  overflow: auto;
  max-width: 100%;
}
.user-dashboard-page > .row > .right .order-table {
  width: 100%;
  border-collapse: collapse;
}
.user-dashboard-page > .row > .right .order-table th {
  text-align: start;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background-color: #1e293b;
  white-space: nowrap;
}
.user-dashboard-page > .row > .right .order-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eceff3;
  font-size: 14px;
  color: #1e293b;
  vertical-align: middle;
  white-space: nowrap;
}
.user-dashboard-page > .row > .right .order-table tbody tr {
  transition: background-color 0.1s ease;
}
.user-dashboard-page > .row > .right .order-table tbody tr:hover {
  background-color: #eef2f6;
}
.user-dashboard-page > .row > .right .order-table tbody tr:last-child td {
  border-bottom: none;
}
.user-dashboard-page > .row > .right .order-table .cell-id {
  font-weight: 600;
  color: #5b6472;
}
.user-dashboard-page > .row > .right .order-table .cell-total {
  font-weight: 700;
  color: #f30e8e;
}
.user-dashboard-page > .row > .right .order-table td .btn {
  margin: 2px 4px 2px 0;
}
.user-dashboard-page > .row > .right .page-header {
  margin-bottom: 22px;
}
.user-dashboard-page > .row > .right .page-header h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e293b;
  margin: 0 0 4px;
}
.user-dashboard-page > .row > .right .page-header p {
  margin: 0;
  font-size: 13.5px;
  color: #5b6472;
}
.user-dashboard-page > .row > .right .stat-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.user-dashboard-page > .row > .right .stat-cards .stat-card {
  flex: 1 1 200px;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.user-dashboard-page > .row > .right .stat-cards .stat-card .stat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
}
.user-dashboard-page > .row > .right .stat-cards .stat-card .stat-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.user-dashboard-page > .row > .right .stat-cards .stat-card .stat-info .stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.user-dashboard-page > .row > .right .stat-cards .stat-card .stat-info .stat-label {
  font-size: 12.5px;
  color: #5b6472;
  margin-top: 2px;
}
.user-dashboard-page > .row > .right .stat-cards .stat-card.stat-blue .stat-icon {
  background-color: #3BAEE7;
}
.user-dashboard-page > .row > .right .stat-cards .stat-card.stat-pink .stat-icon {
  background-color: #f30e8e;
}
.user-dashboard-page > .row > .right .stat-cards .stat-card.stat-dark .stat-icon {
  background-color: #1e293b;
}
@media screen and (max-width: 560px) {
  .user-dashboard-page > .row > .right .stat-cards .stat-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
}
.user-dashboard-page > .row > .right .section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-dashboard-page > .row > .right .section-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background-color: #3BAEE7;
}
.user-dashboard-page > .row > .right .table-card {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.user-dashboard-page > .row > .right .table-card .table-responsive {
  margin: 0;
}
.user-dashboard-page > .row > .right .table-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.user-dashboard-page > .row > .right .table-card .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}
.user-dashboard-page > .row > .right .table-card .status-badge.status-blue {
  background: #3BAEE7;
}
.user-dashboard-page > .row > .right .table-card .status-badge.status-green {
  background: #2eaf6a;
}
.user-dashboard-page > .row > .right .table-card .status-badge.status-grey {
  background: #9aa4b2;
}
.user-dashboard-page > .row > .right .table-card .status-badge.status-orange {
  background: #f59e0b;
}
.user-dashboard-page > .row > .right .table-card .status-badge i {
  font-size: 11px;
}
.user-dashboard-page > .row > .right .empty-state {
  text-align: center;
  padding: 50px 20px;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  margin-bottom: 20px;
}
.user-dashboard-page > .row > .right .empty-state i {
  font-size: 36px;
  color: #8fa0b2;
  margin-bottom: 12px;
}
.user-dashboard-page > .row > .right .empty-state p {
  color: #5b6472;
  margin: 0 0 16px;
  font-size: 14px;
}
.user-dashboard-page > .row > .right .empty-state .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.user-dashboard-page > .row > .right .pagination-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}
.user-dashboard-page > .row > .right .pagination-wrap .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.user-dashboard-page > .row > .right .pagination-wrap .pagination li a,
.user-dashboard-page > .row > .right .pagination-wrap .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #d3d9e1;
  background: #ffffff;
  color: #1e293b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.1s ease, color 0.1s ease, background-color 0.1s ease;
}
.user-dashboard-page > .row > .right .pagination-wrap .pagination li.disabled span {
  opacity: 0.5;
  pointer-events: none;
  background: #eef1f5;
}
.user-dashboard-page > .row > .right .pagination-wrap .pagination li.active span {
  background: #3BAEE7;
  border-color: #3BAEE7;
  color: #ffffff;
}
.user-dashboard-page > .row > .right .pagination-wrap .pagination li a:hover {
  border-color: #3BAEE7;
  color: #3BAEE7;
}
.user-dashboard-page > .row > .right .profile-card {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  overflow: hidden;
}
.user-dashboard-page > .row > .right .profile-card .profile-card-head {
  background: #1e293b;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.user-dashboard-page > .row > .right .profile-card .profile-card-head i {
  color: #3BAEE7;
  font-size: 15px;
}
.user-dashboard-page > .row > .right .profile-card .profile-card-body {
  padding: 22px;
}
.user-dashboard-page > .row > .right .profile-card .profile-card-body .form-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}
.user-dashboard-page > .row > .right .profile-card .profile-card-body .form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}
.user-dashboard-page > .row > .right .profile-card .profile-card-body .profile-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}
.user-dashboard-page > .row > .right .profile-card .profile-card-body .profile-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 24px;
}
.user-dashboard-page > .row > .right .order-detail-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 40px;
}
.user-dashboard-page > .row > .right .order-detail-list li {
  margin-bottom: 10px;
}
.user-dashboard-page > .row > .right .order-detail-list li b {
  font-weight: 600;
}
.user-dashboard-page > .row > .right .col-md-6 {
  width: 48%;
}
@media screen and (max-width: 900px) {
  .user-dashboard-page > .row > .right .col-md-6 {
    width: 100%;
  }
}
.user-dashboard-page > .row > .right .order-detail-card {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-top: 4px solid #3BAEE7;
  border-radius: 10px;
  padding: 18px 22px;
}
.user-dashboard-page > .row > .right .order-detail-card .order-detail-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.user-dashboard-page > .row > .right .order-title-wrap h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-dashboard-page > .row > .right .order-title-wrap h1 .order-new-badge {
  display: inline-block;
  background: #16a34a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.user-dashboard-page > .row > .right .order-date {
  font-size: 13px;
  color: #5b6472;
  margin: 0;
}
.user-dashboard-page > .row > .right .order-status .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}
.user-dashboard-page > .row > .right .order-status .status-badge.status-blue {
  background: #3BAEE7;
}
.user-dashboard-page > .row > .right .order-status .status-badge.status-green {
  background: #2eaf6a;
}
.user-dashboard-page > .row > .right .order-status .status-badge.status-grey {
  background: #9aa4b2;
}
.user-dashboard-page > .row > .right .order-status .status-badge.status-orange {
  background: #f59e0b;
}
.user-dashboard-page > .row > .right .order-info-grid {
  align-items: stretch;
}
.user-dashboard-page > .row > .right .order-info-grid .info-card {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 280px;
  min-width: 260px;
}
.user-dashboard-page > .row > .right .order-info-grid .info-card .info-card-head {
  background: #f4f4f4;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e3e8ee;
}
.user-dashboard-page > .row > .right .order-info-grid .info-card .info-card-head i {
  color: #f30e8e;
}
.user-dashboard-page > .row > .right .order-info-grid .info-card .info-card-body {
  padding: 8px 16px 14px;
}
.user-dashboard-page > .row > .right .order-info-grid .info-card .info-card-body .info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed #eef1f5;
}
.user-dashboard-page > .row > .right .order-info-grid .info-card .info-card-body .info-row:last-child {
  border-bottom: none;
}
.user-dashboard-page > .row > .right .order-info-grid .info-card .info-card-body .info-row .info-label {
  color: #5b6472;
  font-size: 13px;
}
.user-dashboard-page > .row > .right .order-info-grid .info-card .info-card-body .info-row .info-value {
  color: #1e293b;
  font-weight: 600;
  font-size: 13px;
  text-align: right;
}
.user-dashboard-page > .row > .right .order-info-grid .info-card .info-card-body .info-row .info-value.info-total {
  color: #f30e8e;
  font-size: 15px;
  font-weight: 700;
}
.user-dashboard-page > .row > .right .order-items-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 26px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #3BAEE7;
}
.user-dashboard-page > .row > .right .order-item-card {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  padding: 14px 16px;
  transition: box-shadow 0.15s ease;
}
.user-dashboard-page > .row > .right .order-item-card:hover {
  box-shadow: 0 4px 14px rgba(33, 33, 33, 0.08);
}
.user-dashboard-page > .row > .right .order-item-card .order-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.user-dashboard-page > .row > .right .order-item-card .order-item-top .order-item-product {
  display: flex;
  align-items: center;
  gap: 14px;
}
.user-dashboard-page > .row > .right .order-item-card .order-item-top .order-item-product .order-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e3e8ee;
}
.user-dashboard-page > .row > .right .order-item-card .order-item-top .order-item-product .order-item-name {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px;
}
.user-dashboard-page > .row > .right .order-item-card .order-item-top .order-item-product .order-item-qty {
  font-size: 13px;
  color: #5b6472;
}
.user-dashboard-page > .row > .right .order-item-card .order-item-top .order-item-product .order-item-qty b {
  color: #1e293b;
}
.user-dashboard-page > .row > .right .order-item-card .order-item-top .order-item-price {
  font-size: 18px;
  font-weight: 700;
  color: #f30e8e;
  white-space: nowrap;
}
.user-dashboard-page > .row > .right .order-item-card .order-item-details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f2f5;
}
.user-dashboard-page > .row > .right .order-item-card .order-item-details .spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.user-dashboard-page > .row > .right .order-item-card .order-item-details .spec-chips .spec-chip {
  display: inline-block;
  background: #f4f4f4;
  color: #434a54;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}
.user-dashboard-page > .row > .right .order-actions {
  margin-top: 8px;
  align-items: center;
}
.user-dashboard-page > .row > .right .order-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 560px) {
  .user-dashboard-page > .row > .right .order-item-price {
    font-size: 16px;
  }
  .user-dashboard-page > .row > .right .order-detail-card {
    padding: 14px;
  }
}

.after-msg-box {
  text-align: center;
  padding: 50px;
  background-color: #ffffff;
  max-width: 600px;
  margin: 100px auto;
  border-radius: 10px;
  border: 1px solid #a8a8a8;
}
.after-msg-box i {
  font-size: 40px;
  margin-bottom: 20px;
}
.after-msg-box .title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #020202;
  margin-bottom: 20px;
}
.after-msg-box .message {
  font-size: 1.2rem;
  color: #181818;
  margin-bottom: 0;
}

.order-success {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid rgb(191, 191, 191);
  border-radius: 10px;
}
.order-success .logo {
  margin-bottom: 30px;
}
.order-success h3 {
  font-weight: 600;
  color: #2f2f2f;
}
.order-success .btn-order-success {
  border-radius: 2px;
  background-color: #1e293b;
  color: white;
  font-size: 14px;
  padding: 8px 10px;
}
.order-success .upload-file {
  display: none;
}
.order-success .artwork-input {
  padding: 8px 10px;
  border-radius: 2px;
  border: 1px solid rgb(193, 193, 193);
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
}
.order-success .artwork-input:disabled {
  background-color: #EAEBEF;
}

footer {
  width: 100%;
  background-color: #f4f4f4;
}
footer a {
  color: #313131;
}
footer .footer-top {
  padding-top: 40px;
}
footer .grid-handle {
  display: grid;
  grid-template-columns: 350px 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  footer .grid-handle {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 700px) {
  footer .grid-handle {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 500px) {
  footer .grid-handle {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}
footer .logo {
  display: flex;
  align-items: center;
  max-width: 200px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 700px) {
  footer .logo {
    max-width: 160px;
  }
}
footer .logo img {
  width: 100%;
}
footer .contact-info {
  list-style: none;
  padding-left: 0;
}
footer .contact-info li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
footer .contact-info li i {
  color: rgba(0, 0, 0, 0.747);
}
footer .contact-info li .fa-clock {
  margin-top: 3px;
}
footer .contact-info p,
footer .contact-info address,
footer .contact-info a {
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 0;
}
footer .col-footer:last-child {
  padding-right: 0;
}
@media screen and (max-width: 900px) {
  footer .col-footer {
    padding: 10px;
  }
}
@media screen and (max-width: 900px) {
  footer .col-footer {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  footer .col-footer {
    width: 100%;
  }
}
footer .socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-left: 0;
}
footer .socials .social-item .social-link {
  color: #424242;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  outline: 1px solid rgb(167, 167, 167);
}
footer .socials .social-item .social-link i {
  font-size: 20px;
}
footer .footer-title {
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: 20px;
  margin-bottom: 10px;
}
footer .footer-menu {
  list-style: none;
  padding-left: 0;
}
footer .footer-menu li a {
  padding: 10px 0;
  font-weight: 600;
  letter-spacing: -0.5px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e293b;
  text-decoration: none;
}
footer .footer-menu li a i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
footer .footer-menu li a:hover {
  text-decoration: underline;
}
footer .footer-menu li a:hover i {
  transform: translateX(3px);
}
footer .footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}
footer .footer-bottom p {
  margin-bottom: 0;
  text-align: end;
}
@media screen and (max-width: 700px) {
  footer .footer-bottom p {
    text-align: center;
  }
}
footer .footer-bottom .payment-options {
  display: flex;
  gap: 5px;
  align-items: center;
}

.container {
  margin: 0 auto;
  max-width: 1340px;
  width: 100%;
  padding: 0 10px;
}

.input {
  padding: 10px 14px;
  border: 1.5px solid #d8dee7;
  background-color: #ffffff;
  font-size: 15px;
  width: 100%;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.1s ease, box-shadow 0.1s ease;
}
.input:focus {
  border-color: #3BAEE7;
  box-shadow: 0 0 0 3px rgba(59, 174, 231, 0.12);
}

.input-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 700px) {
  .input-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-label {
  display: inline-block;
  margin-bottom: 5px;
}

.check-input[type=checkbox] {
  box-shadow: unset;
  padding: 10px;
  width: 15px;
  height: 15px;
  border-color: rgb(198, 198, 198);
}

.check-input:checked {
  background-color: #3BAEE7;
  border-color: #3BAEE7;
}

.w-fit {
  width: fit-content !important;
}

.text-primary {
  color: #3BAEE7 !important;
}

.text-second {
  color: #f30e8e !important;
}

.text-white {
  color: white !important;
}

.text-dark {
  color: #1e293b !important;
}

.text-green {
  color: rgb(56, 148, 56) n !important;
}

.text-red {
  color: #ba1d1d !important;
}

.text-muted {
  color: #7c7c7c !important;
}

.bg-primary {
  background-color: #3BAEE7 !important;
}

.bg-second {
  background-color: #f30e8e !important;
}

.bg-dark {
  background-color: #1e293b !important;
}

.bg-white {
  background-color: white !important;
}

.bg-light {
  background-color: #f4f4f4 !important;
}

.btn-disabled {
  opacity: 0.65;
  cursor: default;
}

.btn {
  padding: 12px 28px;
  transition: 0.1s ease;
  display: inline-block;
  border: 0px solid transparent;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
  background-color: #EFEFEF;
  border-radius: 10px;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 15px;
  }
}
.btn:hover {
  opacity: 0.9;
}

.btn-sm {
  font-size: 14px;
  padding: 5px 10px;
}

.btn-primary {
  background: #3BAEE7;
  color: white !important;
}

.checkout-btn {
  width: 100%;
  text-align: center;
  border-radius: 4px;
  padding: 10px;
  font-weight: 600;
}

.btn-second {
  background: #f30e8e;
  color: white;
}

.btn-dark {
  background: #1e293b;
  color: white;
}

.btn-red {
  background: rgb(213, 27, 27);
  color: white !important;
}

.btn-outline {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  color: #1e293b !important;
}
.btn-outline:hover {
  border-color: #3BAEE7;
  color: #3BAEE7 !important;
  background: #ffffff;
}

.btn-outline-red {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  color: #1e293b !important;
}
.btn-outline-red:hover {
  border-color: rgb(213, 27, 27);
  color: rgb(213, 27, 27) !important;
  background: #ffffff;
}

#calculate-btn i {
  transition: 0.1s ease;
}

.content-layer-blur {
  width: 100%;
  display: none;
  height: 100vh;
  position: fixed;
  z-index: 957;
  background-color: rgba(28, 28, 28, 0.3333333333);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Flex container utility class */
.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Justify content utility classes */
.justify-content-between {
  justify-content: space-between;
}

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

/* Align items utility classes */
.align-items-center {
  align-items: center;
}

.justify-content-end {
  justify-content: end;
}

/* Margin Classes */
.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;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !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-0 {
  margin-bottom: 0 !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-0 {
  margin-left: 0 !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-0 {
  margin-right: 0 !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;
}

/* Padding Classes */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.px-0 {
  padding-right: 0;
  padding-left: 0;
}

.px-1 {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.px-2 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.px-3 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.px-4 {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.px-5 {
  padding-right: 3rem;
  padding-left: 3rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 1rem;
}

.pl-4 {
  padding-left: 1.5rem;
}

.pl-5 {
  padding-left: 3rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 1rem;
}

.pr-4 {
  padding-right: 1.5rem;
}

.pr-5 {
  padding-right: 3rem;
}

.g-0 {
  gap: 0;
}

.g-1 {
  gap: 0.25rem;
}

.g-2 {
  gap: 0.5rem;
}

.g-3 {
  gap: 1rem;
}

.g-4 {
  gap: 1.5rem;
}

.g-5 {
  gap: 3rem;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

/* Breadcrumb container styles */
nav[aria-label=breadcrumb] {
  margin: 10px 0;
  /* Adjust margin as needed */
}

/* Breadcrumb list styles */
ol.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Breadcrumb item styles */
li.breadcrumb-item {
  display: inline-block;
  margin-right: 5px;
  /* Adjust spacing between breadcrumb items */
}

/* Styling the breadcrumb link */
li.breadcrumb-item a {
  text-decoration: none;
  color: #1e293b;
  /* Set your desired link color */
}

/* Styling for the forward slash */
li.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 5px;
  /* Adjust spacing between forward slash and breadcrumb item */
  color: #555;
  /* Set your desired color for the forward slash */
}

/* Styling for the active/last breadcrumb item */
li.breadcrumb-item.active {
  color: #555;
  /* Set your desired color for the active item */
}

.alert {
  width: fit-content;
  padding: 6px 10px;
  margin-bottom: 5px;
}

.alert-primary {
  border: 1px solid rgb(67.6827094474%, 86.6443850267%, 96.0427807487%);
  border-radius: 4px;
  background-color: rgba(59, 174, 231, 0.05);
}
.alert-primary .alert-title {
  color: #3BAEE7;
}

.alert-second {
  border: 1px solid rgb(97.665659149%, 53.1186545765%, 78.0182903201%);
  border-radius: 4px;
  background-color: rgba(243, 14, 142, 0.05);
}
.alert-second .alert-title {
  color: #f30e8e;
}

.alert-danger {
  border: 1px solid rgb(96.1143207283%, 67.5630252101%, 66.0425420168%);
  border-radius: 4px;
  background-color: rgba(232, 63, 54, 0.05);
}
.alert-danger .alert-title {
  color: #E83F36;
}

.alert-success {
  border: 1px solid rgb(91.5649963689%, 95.1561365287%, 91.3144517066%);
  border-radius: 4px;
  background-color: rgba(154, 197, 151, 0.05);
}
.alert-success .alert-title {
  color: #9ac597;
}

.alert-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.alert-content {
  margin: 0;
  font-size: 14px;
  color: #555555;
}

.pagination {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  margin-bottom: 20px;
  list-style: none;
}
.pagination .page-item .page-link {
  color: rgb(92, 92, 92);
  font-size: 14px;
  border-radius: 1px;
  padding: 6px 12px;
}
.pagination .page-item .page-link:hover {
  color: black;
}
.pagination .page-item .page-link.active {
  text-decoration: underline;
  color: rgb(0, 0, 0);
}

.summary-box {
  background-color: white;
  padding: 16px;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
}
.summary-box ul {
  list-style: none;
  padding: 0;
}
.summary-box ul li {
  margin-bottom: 10px;
}
.summary-box ul p {
  margin: 0;
  line-height: 1;
}

/* Toast Container */
#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Base Toast Style */
.toast {
  padding: 16px;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  min-width: 250px;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #fff;
}

/* Show/Hide Transitions */
.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.hide {
  opacity: 0;
  transform: translateX(100%);
}

/* Success Toast */
.toast-success {
  background-color: #2bae4a;
}

/* Error Toast */
.toast-error {
  background-color: #dc3545;
}

/* Info Toast */
.toast-info {
  background-color: #17a2b8;
}

/* Warning Toast */
.toast-warning {
  background-color: #ffc107;
  color: #212529;
}

.font-bold {
  font-weight: 700 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.paypal-btn {
  background-color: #eeeeee !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 28px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.3s;
}
.paypal-btn:hover {
  opacity: 0.9;
}
.paypal-btn img {
  max-width: 100px;
  height: auto;
}

.text-xl {
  font-size: 1.25rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
